From 31bbdacbf330c28c5ebc900864ccd148ea1b23e0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 7 Nov 2009 18:51:57 -0500 Subject: add a method to Action to check session token --- lib/action.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lib/action.php b/lib/action.php index 1b2f73752..78ca9137a 100644 --- a/lib/action.php +++ b/lib/action.php @@ -1101,4 +1101,22 @@ class Action extends HTMLOutputter // lawsuit { return Design::siteDesign(); } + + /** + * Check the session token. + * + * Checks that the current form has the correct session token, + * and throw an exception if it does not. + * + * @return void + */ + + function checkSessionToken() + { + // CSRF protection + $token = $this->trimmed('token'); + if (empty($token) || $token != common_session_token()) { + $this->clientError(_('There was a problem with your session token.')); + } + } } -- cgit v1.2.3-54-g00ecf From 589185ce872743c146285fca6980db087f96cd4a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 7 Nov 2009 19:16:15 -0500 Subject: uppercase right constants --- lib/right.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/right.php b/lib/right.php index 4e0096d46..4fc981af0 100644 --- a/lib/right.php +++ b/lib/right.php @@ -45,6 +45,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { class Right { - const deleteOthersNotice = 'deleteothersnotice'; + const DELETEOTHERSNOTICE = 'deleteothersnotice'; + const CONFIGURESITE = 'configuresite'; } -- cgit v1.2.3-54-g00ecf From eaec5b03f59b0ac5bcde4a973d72946a52cbd2a6 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 7 Nov 2009 19:16:33 -0500 Subject: add constants for user roles --- classes/User_role.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/classes/User_role.php b/classes/User_role.php index 85ecfb422..fc3806897 100644 --- a/classes/User_role.php +++ b/classes/User_role.php @@ -45,4 +45,7 @@ class User_role extends Memcached_DataObject { return Memcached_DataObject::pkeyGet('User_role', $kv); } + + const MODERATOR = 'moderator'; + const ADMINISTRATOR = 'administrator'; } -- cgit v1.2.3-54-g00ecf From 38833af6f18ae48caed0cc7939803c89e3104ef9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 7 Nov 2009 19:16:54 -0500 Subject: use upper-case constants for roles and rights in hasRight() --- classes/User.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/classes/User.php b/classes/User.php index 96a64ccb2..546406f71 100644 --- a/classes/User.php +++ b/classes/User.php @@ -705,10 +705,12 @@ class User extends Memcached_DataObject if (Event::handle('UserRightsCheck', array($this, $right, &$result))) { switch ($right) { - case Right::deleteOthersNotice: - $result = $this->hasRole('moderator'); + case Right::DELETEOTHERSNOTICE: + $result = $this->hasRole(User_role::MODERATOR); break; - default: + case Right::CONFIGURESITE: + $result = $this->hasRole(User_role::ADMINISTRATOR); + default: $result = false; break; } -- cgit v1.2.3-54-g00ecf From 1de9496c7fed16c2675c3d5136c131c07534c2cc Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 7 Nov 2009 22:26:03 -0500 Subject: fix constant for deleteothersnotice --- actions/deletenotice.php | 2 +- lib/noticelist.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/deletenotice.php b/actions/deletenotice.php index 4a48a9c34..ba8e86d0f 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -67,7 +67,7 @@ class DeletenoticeAction extends Action common_user_error(_('Not logged in.')); exit; } else if ($this->notice->profile_id != $this->user_profile->id && - !$this->user->hasRight(Right::deleteOthersNotice)) { + !$this->user->hasRight(Right::DELETEOTHERSNOTICE)) { common_user_error(_('Can\'t delete this notice.')); exit; } diff --git a/lib/noticelist.php b/lib/noticelist.php index 8b3015cc3..bf12bb73c 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -513,7 +513,7 @@ class NoticeListItem extends Widget $user = common_current_user(); if (!empty($user) && - ($this->notice->profile_id == $user->id || $user->hasRight(Right::deleteOthersNotice))) { + ($this->notice->profile_id == $user->id || $user->hasRight(Right::DELETEOTHERSNOTICE))) { $deleteurl = common_local_url('deletenotice', array('notice' => $this->notice->id)); -- cgit v1.2.3-54-g00ecf From 321ac38884125f1af9e8f07323f096505d0b2644 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 7 Nov 2009 22:35:35 -0500 Subject: script for granting/revoking user roles --- scripts/userrole.php | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 scripts/userrole.php diff --git a/scripts/userrole.php b/scripts/userrole.php new file mode 100644 index 000000000..7b6a9b3fd --- /dev/null +++ b/scripts/userrole.php @@ -0,0 +1,85 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i:n:r:d'; +$longoptions = array('id=', 'nickname=', 'role=', 'delete'); + +$helptext = <<nickname' ($user->id)..."; + try { + $user->revokeRole($role); + print "OK\n"; + } catch (Exception $e) { + print "FAIL\n"; + print $e->getMessage(); + print "\n"; + } +} else { + print "Granting role '$role' to user '$user->nickname' ($user->id)..."; + try { + $user->grantRole($role); + print "OK\n"; + } catch (Exception $e) { + print "FAIL\n"; + print $e->getMessage(); + print "\n"; + } +} -- cgit v1.2.3-54-g00ecf From 9f9ae8c10becc6ba6b2dee9d80db4e73a83c1383 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sun, 8 Nov 2009 20:53:11 +0000 Subject: entity_action responses look more inactive now --- theme/base/css/display.css | 1 - theme/default/css/display.css | 3 +-- theme/identica/css/display.css | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index c3ff4d92c..cdc17d67f 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -647,7 +647,6 @@ text-align:left; width:100%; } .entity_actions a, -.entity_actions p, .entity_remote_subscribe { text-decoration:none; font-weight:bold; diff --git a/theme/default/css/display.css b/theme/default/css/display.css index fee5316c1..8799b0b09 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -81,8 +81,7 @@ a, .form_settings input.form_action-primary, .notice-options input, .entity_actions a, -.entity_actions input, -.entity_actions p { +.entity_actions input { color:#002FA7; } diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index ae9cb2b19..4e3bc5980 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -80,8 +80,7 @@ a, .form_settings input.form_action-primary, .notice-options input, .entity_actions a, -.entity_actions input, -.entity_actions p { +.entity_actions input { color:#002FA7; } -- cgit v1.2.3-54-g00ecf From b7e2e3fd2b7e36f75c810a599334c2ca8abcca55 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 8 Nov 2009 17:04:46 -0500 Subject: Restructure theme.php to define a class Theme For various reasons, it's nicer to have a class for theme-file paths and such. So, I've rewritten the code for determining the locations of theme files to be more OOPy. I changed all the uses of the two functions in the module (theme_file and theme_path) to use Theme::file and Theme::path respectively. I've also removed the code in common.php that require's the module; using a class means we can autoload it instead. --- actions/opensearch.php | 2 +- classes/Avatar.php | 2 +- classes/User_group.php | 2 +- lib/action.php | 16 ++--- lib/common.php | 1 - lib/htmloutputter.php | 4 +- lib/noticesection.php | 2 +- lib/theme.php | 164 +++++++++++++++++++++++++++++++++++++------------ 8 files changed, 138 insertions(+), 55 deletions(-) diff --git a/actions/opensearch.php b/actions/opensearch.php index d5e6698f3..861b53d7d 100644 --- a/actions/opensearch.php +++ b/actions/opensearch.php @@ -75,7 +75,7 @@ class OpensearchAction extends Action $this->element('Url', array('type' => 'text/html', 'method' => 'get', 'template' => str_replace('---', '{searchTerms}', common_local_url($type, array('q' => '---'))))); $this->element('Image', array('height' => 16, 'width' => 16, 'type' => 'image/vnd.microsoft.icon'), common_path('favicon.ico')); - $this->element('Image', array('height' => 50, 'width' => 50, 'type' => 'image/png'), theme_path('logo.png')); + $this->element('Image', array('height' => 50, 'width' => 50, 'type' => 'image/png'), Theme::path('logo.png')); $this->element('AdultContent', null, 'false'); $this->element('Language', null, common_language()); $this->element('OutputEncoding', null, 'UTF-8'); diff --git a/classes/Avatar.php b/classes/Avatar.php index 64f105179..cc7a6b647 100644 --- a/classes/Avatar.php +++ b/classes/Avatar.php @@ -102,6 +102,6 @@ class Avatar extends Memcached_DataObject static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile', AVATAR_STREAM_SIZE => 'stream', AVATAR_MINI_SIZE => 'mini'); - return theme_path('default-avatar-'.$sizenames[$size].'.png'); + return Theme::path('default-avatar-'.$sizenames[$size].'.png'); } } diff --git a/classes/User_group.php b/classes/User_group.php index 310ecff1e..b92638f7a 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -34,7 +34,7 @@ class User_group extends Memcached_DataObject static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile', AVATAR_STREAM_SIZE => 'stream', AVATAR_MINI_SIZE => 'mini'); - return theme_path('default-avatar-'.$sizenames[$size].'.png'); + return Theme::path('default-avatar-'.$sizenames[$size].'.png'); } function homeUrl() diff --git a/lib/action.php b/lib/action.php index 78ca9137a..80f398fbd 100644 --- a/lib/action.php +++ b/lib/action.php @@ -168,7 +168,7 @@ class Action extends HTMLOutputter // lawsuit { if (is_readable(INSTALLDIR . '/theme/' . common_config('site', 'theme') . '/favicon.ico')) { $this->element('link', array('rel' => 'shortcut icon', - 'href' => theme_path('favicon.ico'))); + 'href' => Theme::path('favicon.ico'))); } else { $this->element('link', array('rel' => 'shortcut icon', 'href' => common_path('favicon.ico'))); @@ -177,7 +177,7 @@ class Action extends HTMLOutputter // lawsuit if (common_config('site', 'mobile')) { if (is_readable(INSTALLDIR . '/theme/' . common_config('site', 'theme') . '/apple-touch-icon.png')) { $this->element('link', array('rel' => 'apple-touch-icon', - 'href' => theme_path('apple-touch-icon.png'))); + 'href' => Theme::path('apple-touch-icon.png'))); } else { $this->element('link', array('rel' => 'apple-touch-icon', 'href' => common_path('apple-touch-icon.png'))); @@ -210,16 +210,16 @@ class Action extends HTMLOutputter // lawsuit if (Event::handle('StartShowUAStyles', array($this))) { $this->comment('[if IE]>comment('[if lte IE '.$ver.']>comment('[if IE]>elementStart('a', array('class' => 'url home bookmark', 'href' => common_local_url('public'))); - if (common_config('site', 'logo') || file_exists(theme_file('logo.png'))) { + if (common_config('site', 'logo') || file_exists(Theme::file('logo.png'))) { $this->element('img', array('class' => 'logo photo', - 'src' => (common_config('site', 'logo')) ? common_config('site', 'logo') : theme_path('logo.png'), + 'src' => (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png'), 'alt' => common_config('site', 'name'))); } $this->element('span', array('class' => 'fn org'), common_config('site', 'name')); diff --git a/lib/common.php b/lib/common.php index 68bdbf229..6aac46807 100644 --- a/lib/common.php +++ b/lib/common.php @@ -227,7 +227,6 @@ require_once 'markdown.php'; require_once INSTALLDIR.'/lib/util.php'; require_once INSTALLDIR.'/lib/action.php'; -require_once INSTALLDIR.'/lib/theme.php'; require_once INSTALLDIR.'/lib/mail.php'; require_once INSTALLDIR.'/lib/subs.php'; require_once INSTALLDIR.'/lib/Shorturl_api.php'; diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index ce83295fb..c2ec83c28 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -375,8 +375,8 @@ class HTMLOutputter extends XMLOutputter $url = parse_url($src); if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment)) { - if(file_exists(theme_file($src,$theme))){ - $src = theme_path($src, $theme) . '?version=' . STATUSNET_VERSION; + if(file_exists(Theme::file($src,$theme))){ + $src = Theme::path($src, $theme) . '?version=' . STATUSNET_VERSION; }else{ $src = common_path($src); } diff --git a/lib/noticesection.php b/lib/noticesection.php index b223932ef..24465f8ba 100644 --- a/lib/noticesection.php +++ b/lib/noticesection.php @@ -114,7 +114,7 @@ class NoticeSection extends Section $att_class = 'attachments'; } - $clip = theme_path('images/icons/clip.png', 'base'); + $clip = Theme::path('images/icons/clip.png', 'base'); $this->out->elementStart('a', array('class' => $att_class, 'style' => "font-style: italic;", 'href' => $href, 'title' => "# of attachments: $count")); $this->out->raw(" ($count "); $this->out->element('img', array('style' => 'display: inline', 'align' => 'top', 'width' => 20, 'height' => 20, 'src' => $clip, 'alt' => 'alt')); diff --git a/lib/theme.php b/lib/theme.php index 08e3e8538..c658058ff 100644 --- a/lib/theme.php +++ b/lib/theme.php @@ -23,7 +23,7 @@ * @package StatusNet * @author Evan Prodromou * @author Sarven Capadisli - * @copyright 2008 StatusNet, Inc. + * @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/ */ @@ -33,62 +33,146 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { } /** - * Gets the full path of a file in a theme dir based on its relative name + * Class for querying and manipulating a theme * - * @param string $relative relative path within the theme directory - * @param string $theme name of the theme; defaults to current theme + * 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. * - * @return string File path to the theme file + * This used to be a couple of functions, but for various reasons it's nice + * to have a class instead. + * + * @category Output + * @package StatusNet + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ */ -function theme_file($relative, $theme=null) +class Theme { - if (empty($theme)) { - $theme = common_config('site', 'theme'); - } - $dir = common_config('theme', 'dir'); - if (empty($dir)) { - $dir = INSTALLDIR.'/theme'; - } - return $dir.'/'.$theme.'/'.$relative; -} + var $dir = null; + var $path = null; -/** - * Gets the full URL of a file in a theme dir based on its relative name - * - * @param string $relative relative path within the theme directory - * @param string $theme name of the theme; defaults to current theme - * - * @return string URL of the file - */ + /** + * Constructor + * + * Determines the proper directory and path for this theme. + * + * @param string $name Name of the theme; defaults to config value + */ -function theme_path($relative, $theme=null) -{ - if (empty($theme)) { - $theme = common_config('site', 'theme'); - } + function __construct($name=null) + { + if (empty($name)) { + $name = common_config('site', 'theme'); + } + + // Check to see if it's in the local dir + + $localroot = INSTALLDIR.'/local/theme'; + + $fulldir = $localroot.'/'.$name; + + if (file_exists($fulldir) && is_dir($fulldir)) { + $this->dir = $fulldir; + $this->path = common_path('local/theme/'.$name.'/'); + return; + } + + // Check to see if it's in the distribution dir - $path = common_config('theme', 'path'); + $instroot = common_config('theme', 'dir'); - if (empty($path)) { - $path = common_config('site', 'path') . '/theme/'; + if (empty($instroot)) { + $instroot = INSTALLDIR.'/theme'; + } + + $fulldir = $instroot.'/'.$name; + + if (file_exists($fulldir) && is_dir($fulldir)) { + + $this->dir = $fulldir; + + $path = common_config('theme', 'path'); + + if (empty($path)) { + $path = common_config('site', 'path') . '/theme/'; + } + + if ($path[strlen($path)-1] != '/') { + $path .= '/'; + } + + if ($path[0] != '/') { + $path = '/'.$path; + } + + $server = common_config('theme', 'server'); + + if (empty($server)) { + $server = common_config('site', 'server'); + } + + // XXX: protocol + + $this->path = 'http://'.$server.$path.$name; + } } - if ($path[strlen($path)-1] != '/') { - $path .= '/'; + /** + * Gets the full local filename of a file in this theme. + * + * @param string $relative relative name, like 'logo.png' + * + * @return string full pathname, like /var/www/mublog/theme/default/logo.png + */ + + function getFile($relative) + { + return $this->dir.'/'.$relative; } - if ($path[0] != '/') { - $path = '/'.$path; + /** + * Gets the full HTTP url of a file in this theme + * + * @param string $relative relative name, like 'logo.png' + * + * @return string full URL, like 'http://example.com/theme/default/logo.png' + */ + + function getPath($relative) + { + return $this->path.'/'.$relative; } - $server = common_config('theme', 'server'); + /** + * Gets the full path of a file in a theme dir based on its relative name + * + * @param string $relative relative path within the theme directory + * @param string $name name of the theme; defaults to current theme + * + * @return string File path to the theme file + */ - if (empty($server)) { - $server = common_config('site', 'server'); + static function file($relative, $name=null) + { + $theme = new Theme($name); + return $theme->getFile($relative); } - // XXX: protocol + /** + * Gets the full URL of a file in a theme dir based on its relative name + * + * @param string $relative relative path within the theme directory + * @param string $name name of the theme; defaults to current theme + * + * @return string URL of the file + */ - return 'http://'.$server.$path.$theme.'/'.$relative; + static function path($relative, $name=null) + { + $theme = new Theme($name); + return $theme->getPath($relative); + } } -- cgit v1.2.3-54-g00ecf From 221b779e88e51b70a2c3509798154c461203e636 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 8 Nov 2009 23:10:44 +0100 Subject: Harmonise UI message "No such user." --- actions/apiaccountupdateprofileimage.php | 2 +- actions/apiblockcreate.php | 2 +- actions/apiblockdestroy.php | 2 +- actions/apidirectmessage.php | 2 +- actions/apidirectmessagenew.php | 2 +- actions/apigroupcreate.php | 2 +- actions/apigroupismember.php | 2 +- actions/apigroupjoin.php | 2 +- actions/apigroupleave.php | 2 +- actions/apigrouplist.php | 2 +- actions/apistatusesupdate.php | 2 +- actions/apisubscriptions.php | 2 +- actions/apitimelinefavorites.php | 2 +- actions/apitimelinefriends.php | 2 +- actions/apitimelinementions.php | 2 +- actions/apitimelineuser.php | 2 +- actions/microsummary.php | 2 +- actions/newmessage.php | 2 +- actions/remotesubscribe.php | 2 +- lib/oauthstore.php | 4 ++-- 20 files changed, 21 insertions(+), 21 deletions(-) diff --git a/actions/apiaccountupdateprofileimage.php b/actions/apiaccountupdateprofileimage.php index 72fb361bf..2f8e9628c 100644 --- a/actions/apiaccountupdateprofileimage.php +++ b/actions/apiaccountupdateprofileimage.php @@ -102,7 +102,7 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction } if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apiblockcreate.php b/actions/apiblockcreate.php index 1cab2df5d..4f941f6c3 100644 --- a/actions/apiblockcreate.php +++ b/actions/apiblockcreate.php @@ -94,7 +94,7 @@ class ApiBlockCreateAction extends ApiAuthAction } if (empty($this->user) || empty($this->other)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apiblockdestroy.php b/actions/apiblockdestroy.php index 16dbf94ca..328f18ab0 100644 --- a/actions/apiblockdestroy.php +++ b/actions/apiblockdestroy.php @@ -93,7 +93,7 @@ class ApiBlockDestroyAction extends ApiAuthAction } if (empty($this->user) || empty($this->other)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apidirectmessage.php b/actions/apidirectmessage.php index a21fe86d2..5b3f412ad 100644 --- a/actions/apidirectmessage.php +++ b/actions/apidirectmessage.php @@ -74,7 +74,7 @@ class ApiDirectMessageAction extends ApiAuthAction $this->user = $this->auth_user; if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php index ca1ee70dd..fed6acc30 100644 --- a/actions/apidirectmessagenew.php +++ b/actions/apidirectmessagenew.php @@ -72,7 +72,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction $this->user = $this->auth_user; if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index f66e83073..895dfb7ab 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -109,7 +109,7 @@ class ApiGroupCreateAction extends ApiAuthAction } if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apigroupismember.php b/actions/apigroupismember.php index a8a40a6b3..a822d18dd 100644 --- a/actions/apigroupismember.php +++ b/actions/apigroupismember.php @@ -87,7 +87,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction parent::handle($args); if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php index 071cd9290..ffda3986f 100644 --- a/actions/apigroupjoin.php +++ b/actions/apigroupjoin.php @@ -96,7 +96,7 @@ class ApiGroupJoinAction extends ApiAuthAction } if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index 0d4bb9e4d..8665ea1aa 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -96,7 +96,7 @@ class ApiGroupLeaveAction extends ApiAuthAction } if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apigrouplist.php b/actions/apigrouplist.php index c529c1e40..7b05f8a96 100644 --- a/actions/apigrouplist.php +++ b/actions/apigrouplist.php @@ -87,7 +87,7 @@ class ApiGroupListAction extends ApiBareAuthAction parent::handle($args); if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index e369fa71e..5c23accca 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -136,7 +136,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction } if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apisubscriptions.php b/actions/apisubscriptions.php index bc68dd192..2c691bb84 100644 --- a/actions/apisubscriptions.php +++ b/actions/apisubscriptions.php @@ -84,7 +84,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return false; } diff --git a/actions/apitimelinefavorites.php b/actions/apitimelinefavorites.php index b8ae74f13..f84d7b4cb 100644 --- a/actions/apitimelinefavorites.php +++ b/actions/apitimelinefavorites.php @@ -67,7 +67,7 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index 66dd3f2b2..e84f77372 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -76,7 +76,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apitimelinementions.php b/actions/apitimelinementions.php index fe5ff0f28..0956ccdce 100644 --- a/actions/apitimelinementions.php +++ b/actions/apitimelinementions.php @@ -76,7 +76,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index 285735fd1..ca1d21772 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -78,7 +78,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/microsummary.php b/actions/microsummary.php index 5c01a9ce0..5c761e8bb 100644 --- a/actions/microsummary.php +++ b/actions/microsummary.php @@ -59,7 +59,7 @@ class MicrosummaryAction extends Action $user = User::staticGet('nickname', $nickname); if (!$user) { - $this->clientError(_('No such user'), 404); + $this->clientError(_('No such user.'), 404); return; } diff --git a/actions/newmessage.php b/actions/newmessage.php index 095a7d1d3..0db2e7181 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -113,7 +113,7 @@ class NewmessageAction extends Action $this->other = User::staticGet('id', $this->to); if (!$this->other) { - $this->clientError(_('No such user'), 404); + $this->clientError(_('No such user.'), 404); return false; } diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index aee2a5d8e..74025cf80 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -151,7 +151,7 @@ class RemotesubscribeAction extends Action $this->profile_url = $this->trimmed('profile_url'); if (!$this->profile_url) { - $this->showForm(_('No such user')); + $this->showForm(_('No such user.')); return; } diff --git a/lib/oauthstore.php b/lib/oauthstore.php index d617a7df7..a4ea5ad4d 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -351,7 +351,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $author = User::staticGet('uri', $author_uri); } if (!$author) { - throw new Exception('No such user'); + throw new Exception('No such user.'); } common_log(LOG_DEBUG, print_r($author, true), __FILE__); @@ -407,7 +407,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $user = User::staticGet('uri', $uri); } if (!$user) { - throw new Exception('No such user'); + throw new Exception('No such user.'); } return $user; } -- cgit v1.2.3-54-g00ecf From cbae1b0c8b18de0b6643e066c89578523c5e8002 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 8 Nov 2009 17:16:50 -0500 Subject: add utilities for calculating local and installation theme root dirs --- lib/theme.php | 36 ++++++++++++++++++++++++++++++------ 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/lib/theme.php b/lib/theme.php index c658058ff..e5fad2316 100644 --- a/lib/theme.php +++ b/lib/theme.php @@ -70,7 +70,7 @@ class Theme // Check to see if it's in the local dir - $localroot = INSTALLDIR.'/local/theme'; + $localroot = Theme::localRoot(); $fulldir = $localroot.'/'.$name; @@ -82,11 +82,7 @@ class Theme // Check to see if it's in the distribution dir - $instroot = common_config('theme', 'dir'); - - if (empty($instroot)) { - $instroot = INSTALLDIR.'/theme'; - } + $instroot = Theme::installRoot(); $fulldir = $instroot.'/'.$name; @@ -175,4 +171,32 @@ class Theme $theme = new Theme($name); return $theme->getPath($relative); } + + /** + * Local root dir for themes + * + * @return string local root dir for themes + */ + + protected static function localRoot() + { + return INSTALLDIR.'/local/theme'; + } + + /** + * Root dir for themes that are shipped with StatusNet + * + * @return string root dir for StatusNet themes + */ + + protected static function installRoot() + { + $instroot = common_config('theme', 'dir'); + + if (empty($instroot)) { + $instroot = INSTALLDIR.'/theme'; + } + + return $instroot; + } } -- cgit v1.2.3-54-g00ecf From a034fb0b82dc586bdec10523100f628a2ecf0fe4 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 8 Nov 2009 23:22:13 +0100 Subject: Revert "* check usage of 'people' in UI and change it to 'users' or something else in most places" This reverts commit 81b4a381d9ddc71ed8a53c074ea10910882d3156. IMO "user" is a bit impersonal and we shouldn't go changing the tone of the UI willy-nilly when we're updating localisations. --- actions/all.php | 2 +- actions/foaf.php | 4 ++-- actions/groups.php | 7 +++---- actions/imsettings.php | 2 +- actions/invite.php | 10 +++++----- actions/noticesearch.php | 2 +- actions/opensearch.php | 2 +- actions/peoplesearch.php | 2 +- actions/peopletag.php | 2 +- actions/profilesettings.php | 4 ++-- actions/register.php | 10 +++++----- actions/replies.php | 4 ++-- actions/subscribers.php | 8 ++++---- actions/subscriptions.php | 10 +++++----- actions/tagother.php | 2 +- lib/action.php | 2 +- 16 files changed, 36 insertions(+), 37 deletions(-) diff --git a/actions/all.php b/actions/all.php index b0fd8ee77..61cedce74 100644 --- a/actions/all.php +++ b/actions/all.php @@ -129,7 +129,7 @@ class AllAction extends ProfileAction if (common_logged_in()) { $current_user = common_current_user(); if ($this->user->id === $current_user->id) { - $message .= _('Try subscribing to more users, [join a group](%%action.groups%%) or post something yourself.'); + $message .= _('Try subscribing to more people, [join a group](%%action.groups%%) or post something yourself.'); } else { $message .= sprintf(_('You can try to [nudge %s](../%s) from his profile or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname); } diff --git a/actions/foaf.php b/actions/foaf.php index dd2747069..356393304 100644 --- a/actions/foaf.php +++ b/actions/foaf.php @@ -136,7 +136,7 @@ class FoafAction extends Action $person = $this->showMicrobloggingAccount($this->profile, common_root_url(), $this->user->uri, false); - // Get users who subscribe to user + // Get people who subscribe to user $sub = new Subscription(); $sub->subscribed = $this->profile->id; @@ -250,7 +250,7 @@ class FoafAction extends Action if ($isSubscriber) { $this->element('sioc:follows', array('rdf:resource'=>$this->user->uri . '#acct')); } else { - // Get users user is subscribed to + // Get people user is subscribed to $sub = new Subscription(); $sub->subscriber = $profile->id; $sub->whereAdd('subscriber != subscribed'); diff --git a/actions/groups.php b/actions/groups.php index c713d0a98..10a1d5964 100644 --- a/actions/groups.php +++ b/actions/groups.php @@ -88,12 +88,11 @@ class GroupsAction extends Action { $notice = sprintf(_('%%%%site.name%%%% groups let you find and talk with ' . - 'users of similar interests. After you join a group ' . + 'people of similar interests. After you join a group ' . 'you can send messages to all other members using the ' . - 'syntax "!groupname". Are you not seeing any groups ' . - 'you like? Try ' . + 'syntax "!groupname". Don\'t see a group you like? Try ' . '[searching for one](%%%%action.groupsearch%%%%) or ' . - '[start your own](%%%%action.newgroup%%%%)!')); + '[start your own!](%%%%action.newgroup%%%%)')); $this->elementStart('div', 'instructions'); $this->raw(common_markup_to_html($notice)); $this->elementEnd('div'); diff --git a/actions/imsettings.php b/actions/imsettings.php index 49c7b2a0e..b5bf72f45 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -151,7 +151,7 @@ class ImsettingsAction extends ConnectSettingsAction $this->elementStart('li'); $this->checkbox('jabberreplies', _('Send me replies through Jabber/GTalk '. - 'from users I am not subscribed to.'), + 'from people I\'m not subscribed to.'), $user->jabberreplies); $this->elementEnd('li'); $this->elementStart('li'); diff --git a/actions/invite.php b/actions/invite.php index 8a0ac8a1b..3015202e9 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -133,7 +133,7 @@ class InviteAction extends CurrentUserDesignAction $this->elementEnd('ul'); } if ($this->subbed) { - $this->element('p', null, _('These are already users and you were automatically subscribed to them:')); + $this->element('p', null, _('These people are already users and you were automatically subscribed to them:')); $this->elementStart('ul'); foreach ($this->subbed as $other) { $this->element('li', null, sprintf(_('%s (%s)'), $other->nickname, $other->email)); @@ -141,7 +141,7 @@ class InviteAction extends CurrentUserDesignAction $this->elementEnd('ul'); } if ($this->sent) { - $this->element('p', null, _('Invitation(s) sent to the following e-mail addresses:')); + $this->element('p', null, _('Invitation(s) sent to the following people:')); $this->elementStart('ul'); foreach ($this->sent as $other) { $this->element('li', null, $other); @@ -226,9 +226,9 @@ class InviteAction extends CurrentUserDesignAction $headers['Subject'] = sprintf(_('%1$s has invited you to join them on %2$s'), $bestname, $sitename); $body = sprintf(_("%1\$s has invited you to join them on %2\$s (%3\$s).\n\n". - "%2\$s is a micro-blogging service that lets you keep up-to-date with those you know and those who interest you.\n\n". - "You can also share news about yourself, your thoughts, or your life online with users who know about you. ". - "It is also great for meeting others who share your interests.\n\n". + "%2\$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\n". + "You can also share news about yourself, your thoughts, or your life online with people who know about you. ". + "It's also great for meeting new people who share your interests.\n\n". "%1\$s said:\n\n%4\$s\n\n". "You can see %1\$s's profile page on %2\$s here:\n\n". "%5\$s\n\n". diff --git a/actions/noticesearch.php b/actions/noticesearch.php index fe86c8cd3..79cf572cc 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -44,7 +44,7 @@ require_once INSTALLDIR.'/lib/searchaction.php'; * @author Robin Millette * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ - * @todo common parent for user and content search? + * @todo common parent for people and content search? */ class NoticesearchAction extends SearchAction { diff --git a/actions/opensearch.php b/actions/opensearch.php index 8ebb5fc82..861b53d7d 100644 --- a/actions/opensearch.php +++ b/actions/opensearch.php @@ -61,7 +61,7 @@ class OpensearchAction extends Action $short_name = ''; if ($type == 'people') { $type = 'peoplesearch'; - $short_name = _('User Search'); + $short_name = _('People Search'); } else { $type = 'noticesearch'; $short_name = _('Notice Search'); diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php index 63a5c88f3..38135ecbd 100644 --- a/actions/peoplesearch.php +++ b/actions/peoplesearch.php @@ -49,7 +49,7 @@ class PeoplesearchAction extends SearchAction { function getInstructions() { - return _('Search for users on %%site.name%% by their name, location, or interests. ' . + return _('Search for people on %%site.name%% by their name, location, or interests. ' . 'Separate the terms by spaces; they must be 3 characters or more.'); } diff --git a/actions/peopletag.php b/actions/peopletag.php index dbce417df..6dbbc9261 100644 --- a/actions/peopletag.php +++ b/actions/peopletag.php @@ -67,7 +67,7 @@ class PeopletagAction extends Action $this->tag = $this->trimmed('tag'); if (!common_valid_profile_tag($this->tag)) { - $this->clientError(sprintf(_('Not a valid user tag: %s'), + $this->clientError(sprintf(_('Not a valid people tag: %s'), $this->tag)); return; } diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 6a1c07f9d..0a0cc5997 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -68,8 +68,8 @@ class ProfilesettingsAction extends AccountSettingsAction function getInstructions() { - return _('You can update your personal profile info here ' . - 'so readers know more about you.'); + return _('You can update your personal profile info here '. + 'so people know more about you.'); } function showScripts() diff --git a/actions/register.php b/actions/register.php index 584ad3ead..57f8e7bdf 100644 --- a/actions/register.php +++ b/actions/register.php @@ -82,14 +82,14 @@ class RegisterAction extends Action } if (common_config('site', 'inviteonly') && empty($this->code)) { - $this->clientError(_('Sorry. Only those invited can register.')); + $this->clientError(_('Sorry, only invited people can register.')); return false; } if (!empty($this->code)) { $this->invite = Invitation::staticGet('code', $this->code); if (empty($this->invite)) { - $this->clientError(_('Sorry. This is an invalid invitation code.')); + $this->clientError(_('Sorry, invalid invitation code.')); return false; } // Store this in case we need it @@ -186,7 +186,7 @@ class RegisterAction extends Action } if (common_config('site', 'inviteonly') && !($code && $invite)) { - $this->clientError(_('Sorry. Only those invited can register.')); + $this->clientError(_('Sorry, only invited people can register.')); return; } @@ -401,7 +401,7 @@ class RegisterAction extends Action } if (common_config('site', 'inviteonly') && !($code && $invite)) { - $this->clientError(_('Sorry. Only those invited can register.')); + $this->clientError(_('Sorry, only invited people can register.')); return; } @@ -542,7 +542,7 @@ class RegisterAction extends Action '(%%%%action.imsettings%%%%) '. 'so you can send notices '. 'through instant messages.' . "\n" . - '* [Search for users](%%%%action.peoplesearch%%%%) '. + '* [Search for people](%%%%action.peoplesearch%%%%) '. 'that you may know or '. 'that share your interests. ' . "\n" . '* Update your [profile settings]'. diff --git a/actions/replies.php b/actions/replies.php index 2829a7335..a13b5a227 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -195,12 +195,12 @@ class RepliesAction extends OwnerDesignAction function showEmptyListMessage() { - $message = sprintf(_('This is the timeline showing replies to %s but %s has not received a notice to his attention yet.'), $this->user->nickname, $this->user->nickname) . ' '; + $message = sprintf(_('This is the timeline showing replies to %s but %s hasn\'t received a notice to his attention yet.'), $this->user->nickname, $this->user->nickname) . ' '; if (common_logged_in()) { $current_user = common_current_user(); if ($this->user->id === $current_user->id) { - $message .= _('You can engage other users in a conversation, subscribe to more users or [join groups](%%action.groups%%).'); + $message .= _('You can engage other users in a conversation, subscribe to more people or [join groups](%%action.groups%%).'); } else { $message .= sprintf(_('You can try to [nudge %s](../%s) or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname); } diff --git a/actions/subscribers.php b/actions/subscribers.php index 1f584e2c1..df9ec9961 100644 --- a/actions/subscribers.php +++ b/actions/subscribers.php @@ -60,12 +60,12 @@ class SubscribersAction extends GalleryAction $user =& common_current_user(); if ($user && ($user->id == $this->profile->id)) { $this->element('p', null, - _('These are the users who have subscribed to '. + _('These are the people who listen to '. 'your notices.')); } else { $this->element('p', null, - sprintf(_('These are the users who '. - 'have subscribed to %s\'s notices.'), + sprintf(_('These are the people who '. + 'listen to %s\'s notices.'), $this->profile->nickname)); } } @@ -105,7 +105,7 @@ class SubscribersAction extends GalleryAction if (common_logged_in()) { $current_user = common_current_user(); if ($this->user->id === $current_user->id) { - $message = _('You have no subscribers. Try subscribing to users you know and they might return the favor'); + $message = _('You have no subscribers. Try subscribing to people you know and they might return the favor'); } else { $message = sprintf(_('%s has no subscribers. Want to be the first?'), $this->user->nickname); } diff --git a/actions/subscriptions.php b/actions/subscriptions.php index 4f65e9bf1..cc7b38ee4 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -62,12 +62,12 @@ class SubscriptionsAction extends GalleryAction $user =& common_current_user(); if ($user && ($user->id == $this->profile->id)) { $this->element('p', null, - _('These are the users whose notices '. - 'you have subscribed to.')); + _('These are the people whose notices '. + 'you listen to.')); } else { $this->element('p', null, - sprintf(_('These are the users whose '. - 'notices %s has subscribed to.'), + sprintf(_('These are the people whose '. + 'notices %s listens to.'), $this->profile->nickname)); } } @@ -118,7 +118,7 @@ class SubscriptionsAction extends GalleryAction if (common_logged_in()) { $current_user = common_current_user(); if ($this->user->id === $current_user->id) { - $message = _('You have not subscribed to anyone\'s notices right now. Try subscribing to users you know. Try [user search](%%action.peoplesearch%%), look for members in groups you\'re interested in and in our [featured users](%%action.featured%%). If you are a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to users you already follow there.'); + $message = _('You\'re not listening to anyone\'s notices right now, try subscribing to people you know. Try [people search](%%action.peoplesearch%%), look for members in groups you\'re interested in and in our [featured users](%%action.featured%%). If you\'re a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to people you already follow there.'); } else { $message = sprintf(_('%s is not listening to anyone.'), $this->user->nickname); } diff --git a/actions/tagother.php b/actions/tagother.php index 80fa9cc95..c3f43be8b 100644 --- a/actions/tagother.php +++ b/actions/tagother.php @@ -190,7 +190,7 @@ class TagotherAction extends Action !Subscription::pkeyGet(array('subscriber' => $this->profile->id, 'subscribed' => $user->id))) { - $this->clientError(_('You can only tag users you are subscribed to or who are subscribed to you.')); + $this->clientError(_('You can only tag people you are subscribed to or who are subscribed to you.')); return; } diff --git a/lib/action.php b/lib/action.php index 34b17063a..80f398fbd 100644 --- a/lib/action.php +++ b/lib/action.php @@ -456,7 +456,7 @@ class Action extends HTMLOutputter // lawsuit _('Help'), _('Help me!'), false, 'nav_help'); if ($user || !common_config('site', 'private')) { $this->menuItem(common_local_url('peoplesearch'), - _('Search'), _('Search for users or text'), false, 'nav_search'); + _('Search'), _('Search for people or text'), false, 'nav_search'); } Event::handle('EndPrimaryNav', array($this)); } -- cgit v1.2.3-54-g00ecf From 0ab17f382b9993ada3d12d4cdace72cca53fb545 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 8 Nov 2009 23:22:38 +0100 Subject: * [Cc]an't -> [Cc]annot * [Cc]ould't -> [Cc]ould not --- actions/emailsettings.php | 4 +- actions/smssettings.php | 2 +- classes/File.php | 2 +- classes/Notice.php | 4 +- extlib/Auth/OpenID/Consumer.php | 2 +- extlib/Auth/OpenID/Discover.php | 4 +- extlib/Auth/OpenID/FileStore.php | 2 +- extlib/DB.php | 2 +- extlib/DB/DataObject/Generator.php | 4 +- extlib/DB/dbase.php | 6 +- extlib/DB/fbsql.php | 8 +- extlib/DB/ibase.php | 6 +- extlib/DB/ifx.php | 12 +- extlib/DB/msql.php | 8 +- extlib/DB/mssql.php | 10 +- extlib/DB/mysql.php | 14 +- extlib/DB/mysqli.php | 14 +- extlib/DB/oci8.php | 10 +- extlib/DB/odbc.php | 8 +- extlib/DB/pgsql.php | 10 +- extlib/DB/sqlite.php | 8 +- extlib/DB/sybase.php | 12 +- extlib/HTTP/Request2/Adapter/Socket.php | 1940 ++--- extlib/MIME/Type.php | 4 +- extlib/MIME/Type/Extension.php | 4 +- extlib/Mail/mail.php | 2 +- extlib/Mail/sendmail.php | 2 +- extlib/Net/LDAP2/Entry.php | 2 +- extlib/Net/LDAP2/Filter.php | 2 +- extlib/System/Command.php | 2 +- extlib/markdown.php | 2 +- install.php | 16 +- lib/attachmentlist.php | 2 +- lib/noticelist.php | 2 +- lib/profilelist.php | 2 +- lib/serverexception.php | 2 +- lib/settingsaction.php | 2 +- lib/util.php | 2 +- lib/xmppqueuehandler.php | 2 +- locale/statusnet.po | 7814 +++++++------------- .../Facebook/facebook/facebookapi_php5_restlib.php | 2 +- .../Facebook/facebook/jsonwrapper/JSON/JSON.php | 2 +- plugins/Facebook/facebookaction.php | 2 +- plugins/Facebook/facebookhome.php | 2 +- plugins/LinkbackPlugin.php | 2 +- plugins/Meteor/MeteorPlugin.php | 2 +- plugins/OpenID/openid.php | 4 +- .../TwitterBridge/daemons/synctwitterfriends.php | 8 +- .../TwitterBridge/daemons/twitterstatusfetcher.php | 8 +- plugins/UserFlag/flagprofile.php | 2 +- scripts/console.php | 2 +- scripts/createsim.php | 4 +- scripts/deleteuser.php | 4 +- scripts/fixup_utf8.php | 2 +- scripts/makegroupadmin.php | 4 +- scripts/registeruser.php | 4 +- scripts/showcache.php | 2 +- scripts/sitemap.php | 4 +- scripts/update_translations.php | 2 +- 59 files changed, 3575 insertions(+), 6443 deletions(-) diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 67b991cdc..715457eab 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -452,7 +452,7 @@ class EmailsettingsAction extends AccountSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Couldn't update user record.")); + $this->serverError(_("Could not update user record.")); } $this->showForm(_('Incoming email address removed.'), true); @@ -474,7 +474,7 @@ class EmailsettingsAction extends AccountSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Couldn't update user record.")); + $this->serverError(_("Could not update user record.")); } $this->showForm(_('New incoming email address added.'), true); diff --git a/actions/smssettings.php b/actions/smssettings.php index 9fa7f62fb..4debe1967 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -525,7 +525,7 @@ class SmssettingsAction extends ConnectSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Couldn't update user record.")); + $this->serverError(_("Could not update user record.")); } $this->showForm(_('Incoming email address removed.'), true); diff --git a/classes/File.php b/classes/File.php index e04a9d525..dd0c3227e 100644 --- a/classes/File.php +++ b/classes/File.php @@ -99,7 +99,7 @@ class File extends Memcached_DataObject } elseif (is_string($redir_data)) { $redir_url = $redir_data; } else { - throw new ServerException("Can't process url '$given_url'"); + throw new ServerException("Cannot process url '$given_url'"); } // TODO: max field length if ($redir_url === $given_url || strlen($redir_url) > 255) { diff --git a/classes/Notice.php b/classes/Notice.php index 9886875cb..862d4c762 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -680,7 +680,7 @@ class Notice extends Memcached_DataObject return Notice::getStreamDirect($qry, $offset, $limit, null, null, $order, null); } - # Get the cache; if we can't, just go to the DB + # Get the cache; if we cannot, just go to the DB $cache = common_memcache(); @@ -1364,7 +1364,7 @@ class Notice extends Memcached_DataObject } } - // If it's not a "low bandwidth" source (one where you can't set + // If it's not a "low bandwidth" source (one where you cannot set // a reply_to argument), we return. This is mostly web and API // clients. diff --git a/extlib/Auth/OpenID/Consumer.php b/extlib/Auth/OpenID/Consumer.php index 500890b65..c75ef4c06 100644 --- a/extlib/Auth/OpenID/Consumer.php +++ b/extlib/Auth/OpenID/Consumer.php @@ -1059,7 +1059,7 @@ class Auth_OpenID_GenericConsumer { } } - // Fragments do not influence discovery, so we can't compare a + // Fragments do not influence discovery, so we cannot compare a // claimed identifier with a fragment to discovered // information. list($defragged_claimed_id, $_) = diff --git a/extlib/Auth/OpenID/Discover.php b/extlib/Auth/OpenID/Discover.php index 62aeb1d2b..9bb3ee357 100644 --- a/extlib/Auth/OpenID/Discover.php +++ b/extlib/Auth/OpenID/Discover.php @@ -515,7 +515,7 @@ function Auth_OpenID_discoverXRI($iname, &$fetcher) function Auth_OpenID_discover($uri, &$fetcher) { - // If the fetcher (i.e., PHP) doesn't support SSL, we can't do + // If the fetcher (i.e., PHP) doesn't support SSL, we cannot do // discovery on an HTTPS URL. if ($fetcher->isHTTPS($uri) && !$fetcher->supportsSSL()) { return array($uri, array()); @@ -527,7 +527,7 @@ function Auth_OpenID_discover($uri, &$fetcher) $result = Auth_OpenID_discoverURI($uri, $fetcher); } - // If the fetcher doesn't support SSL, we can't interact with + // If the fetcher doesn't support SSL, we cannot interact with // HTTPS server URLs; remove those endpoints from the list. if (!$fetcher->supportsSSL()) { $http_endpoints = array(); diff --git a/extlib/Auth/OpenID/FileStore.php b/extlib/Auth/OpenID/FileStore.php index 29d8d20e7..d9962e153 100644 --- a/extlib/Auth/OpenID/FileStore.php +++ b/extlib/Auth/OpenID/FileStore.php @@ -496,7 +496,7 @@ class Auth_OpenID_FileStore extends Auth_OpenID_OpenIDStore { return true; } else { - // Couldn't open directory. + // Could not open directory. return false; } } diff --git a/extlib/DB.php b/extlib/DB.php index a511979e6..4ef66f66f 100644 --- a/extlib/DB.php +++ b/extlib/DB.php @@ -1341,7 +1341,7 @@ class DB_result * returning the total number of rows that would have been returned, * rather than the real number. As a result, we'll just do the limit * calculations for fbsql in the same way as a database with emulated - * limits. Unfortunately, we can't just do this in DB_fbsql::numRows() + * limits. Unfortunately, we cannot just do this in DB_fbsql::numRows() * because that only gets the result resource, rather than the full * DB_Result object. */ if (($this->dbh->features['limit'] === 'emulate' diff --git a/extlib/DB/DataObject/Generator.php b/extlib/DB/DataObject/Generator.php index ff6e42c7d..e14e3ef7f 100644 --- a/extlib/DB/DataObject/Generator.php +++ b/extlib/DB/DataObject/Generator.php @@ -632,7 +632,7 @@ class DB_DataObject_Generator extends DB_DataObject echo "*****************************************************************\n". "** WARNING COLUMN NAME UNUSABLE **\n". "** Found column '{$t->name}', of type '{$t->type}' **\n". - "** Since this column name can't be converted to a php variable **\n". + "** Since this column name cannot be converted to a php variable **\n". "** name, and the whole idea of mapping would result in a mess **\n". "** This column has been ignored... **\n". "*****************************************************************\n"; @@ -910,7 +910,7 @@ class DB_DataObject_Generator extends DB_DataObject echo "*****************************************************************\n". "** WARNING COLUMN NAME UNUSABLE **\n". "** Found column '{$t->name}', of type '{$t->type}' **\n". - "** Since this column name can't be converted to a php variable **\n". + "** Since this column name cannot be converted to a php variable **\n". "** name, and the whole idea of mapping would result in a mess **\n". "** This column has been ignored... **\n". "*****************************************************************\n"; diff --git a/extlib/DB/dbase.php b/extlib/DB/dbase.php index 67afc897d..15d259c4d 100644 --- a/extlib/DB/dbase.php +++ b/extlib/DB/dbase.php @@ -287,7 +287,7 @@ class DB_dbase extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -352,7 +352,7 @@ class DB_dbase extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -373,7 +373,7 @@ class DB_dbase extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/fbsql.php b/extlib/DB/fbsql.php index 4de4078f7..48ff705cf 100644 --- a/extlib/DB/fbsql.php +++ b/extlib/DB/fbsql.php @@ -262,7 +262,7 @@ class DB_fbsql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -309,7 +309,7 @@ class DB_fbsql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -376,7 +376,7 @@ class DB_fbsql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -401,7 +401,7 @@ class DB_fbsql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/ibase.php b/extlib/DB/ibase.php index ee19c5589..1e444d634 100644 --- a/extlib/DB/ibase.php +++ b/extlib/DB/ibase.php @@ -353,7 +353,7 @@ class DB_ibase extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -402,7 +402,7 @@ class DB_ibase extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -449,7 +449,7 @@ class DB_ibase extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/ifx.php b/extlib/DB/ifx.php index baa6f2867..dcb3dbd3e 100644 --- a/extlib/DB/ifx.php +++ b/extlib/DB/ifx.php @@ -147,7 +147,7 @@ class DB_ifx extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it can't actually be designated + * {@internal While this is private, it cannot actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -328,7 +328,7 @@ class DB_ifx extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -387,7 +387,7 @@ class DB_ifx extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -411,7 +411,7 @@ class DB_ifx extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -555,7 +555,7 @@ class DB_ifx extends DB_common * * If analyzing a query result and the result has duplicate field names, * an error will be raised saying - * can't distinguish duplicate field names. + * cannot distinguish duplicate field names. * * @param object|string $result DB_result object from a query or a * string containing the name of a table. @@ -604,7 +604,7 @@ class DB_ifx extends DB_common $count = @ifx_num_fields($id); if (count($flds) != $count) { - return $this->raiseError("can't distinguish duplicate field names"); + return $this->raiseError("cannot distinguish duplicate field names"); } if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE) { diff --git a/extlib/DB/msql.php b/extlib/DB/msql.php index 34854f472..ee64f932f 100644 --- a/extlib/DB/msql.php +++ b/extlib/DB/msql.php @@ -288,7 +288,7 @@ class DB_msql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * PHP's mSQL extension did weird things with NULL values prior to PHP @@ -339,7 +339,7 @@ class DB_msql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -360,7 +360,7 @@ class DB_msql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -385,7 +385,7 @@ class DB_msql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/mssql.php b/extlib/DB/mssql.php index 511a2b686..1aad75671 100644 --- a/extlib/DB/mssql.php +++ b/extlib/DB/mssql.php @@ -156,7 +156,7 @@ class DB_mssql extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it can't actually be designated + * {@internal While this is private, it cannot actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -324,7 +324,7 @@ class DB_mssql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -371,7 +371,7 @@ class DB_mssql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -392,7 +392,7 @@ class DB_mssql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -417,7 +417,7 @@ class DB_mssql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/mysql.php b/extlib/DB/mysql.php index c67254520..bfe34dbe8 100644 --- a/extlib/DB/mysql.php +++ b/extlib/DB/mysql.php @@ -139,7 +139,7 @@ class DB_mysql extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it can't actually be designated + * {@internal While this is private, it cannot actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -359,7 +359,7 @@ class DB_mysql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -411,7 +411,7 @@ class DB_mysql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -432,7 +432,7 @@ class DB_mysql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -457,7 +457,7 @@ class DB_mysql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -722,7 +722,7 @@ class DB_mysql extends DB_common return $result; } if ($result == 0) { - // Failed to get the lock, can't do the conversion, bail + // Failed to get the lock, cannot do the conversion, bail // with a DB_ERROR_NOT_LOCKED error return $this->mysqlRaiseError(DB_ERROR_NOT_LOCKED); } @@ -757,7 +757,7 @@ class DB_mysql extends DB_common * Quotes a string so it can be safely used as a table or column name * (WARNING: using names that require this is a REALLY BAD IDEA) * - * WARNING: Older versions of MySQL can't handle the backtick + * WARNING: Older versions of MySQL cannot handle the backtick * character (`) in table or column names. * * @param string $str identifier name to be quoted diff --git a/extlib/DB/mysqli.php b/extlib/DB/mysqli.php index c6941b170..b6196dfcc 100644 --- a/extlib/DB/mysqli.php +++ b/extlib/DB/mysqli.php @@ -142,7 +142,7 @@ class DB_mysqli extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it can't actually be designated + * {@internal While this is private, it cannot actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -434,7 +434,7 @@ class DB_mysqli extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -486,7 +486,7 @@ class DB_mysqli extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -507,7 +507,7 @@ class DB_mysqli extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -532,7 +532,7 @@ class DB_mysqli extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -796,7 +796,7 @@ class DB_mysqli extends DB_common return $result; } if ($result == 0) { - // Failed to get the lock, can't do the conversion, bail + // Failed to get the lock, cannot do the conversion, bail // with a DB_ERROR_NOT_LOCKED error return $this->mysqliRaiseError(DB_ERROR_NOT_LOCKED); } @@ -832,7 +832,7 @@ class DB_mysqli extends DB_common * Quotes a string so it can be safely used as a table or column name * (WARNING: using names that require this is a REALLY BAD IDEA) * - * WARNING: Older versions of MySQL can't handle the backtick + * WARNING: Older versions of MySQL cannot handle the backtick * character (`) in table or column names. * * @param string $str identifier name to be quoted diff --git a/extlib/DB/oci8.php b/extlib/DB/oci8.php index d30794871..6ad36643a 100644 --- a/extlib/DB/oci8.php +++ b/extlib/DB/oci8.php @@ -251,7 +251,7 @@ class DB_oci8 extends DB_common $char); $error = OCIError(); if (!empty($error) && $error['code'] == 12541) { - // Couldn't find TNS listener. Try direct connection. + // Could not find TNS listener. Try direct connection. $this->connection = @$connect_function($dsn['username'], $dsn['password'], null, @@ -368,7 +368,7 @@ class DB_oci8 extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -415,7 +415,7 @@ class DB_oci8 extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -468,7 +468,7 @@ class DB_oci8 extends DB_common * is turned on. * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -511,7 +511,7 @@ class DB_oci8 extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/odbc.php b/extlib/DB/odbc.php index eba43659a..b0dc83ab5 100644 --- a/extlib/DB/odbc.php +++ b/extlib/DB/odbc.php @@ -301,7 +301,7 @@ class DB_odbc extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -356,7 +356,7 @@ class DB_odbc extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -377,7 +377,7 @@ class DB_odbc extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -427,7 +427,7 @@ class DB_odbc extends DB_common * a DB_Error object for DB_ERROR_UNSUPPORTED is returned. * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/pgsql.php b/extlib/DB/pgsql.php index 6030bb4c1..498ef8ade 100644 --- a/extlib/DB/pgsql.php +++ b/extlib/DB/pgsql.php @@ -115,7 +115,7 @@ class DB_pgsql extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it can't actually be designated + * {@internal While this is private, it cannot actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -397,7 +397,7 @@ class DB_pgsql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -445,7 +445,7 @@ class DB_pgsql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -535,7 +535,7 @@ class DB_pgsql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -560,7 +560,7 @@ class DB_pgsql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/sqlite.php b/extlib/DB/sqlite.php index 5c4b396e5..96d5c934a 100644 --- a/extlib/DB/sqlite.php +++ b/extlib/DB/sqlite.php @@ -334,7 +334,7 @@ class DB_sqlite extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -396,7 +396,7 @@ class DB_sqlite extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -422,7 +422,7 @@ class DB_sqlite extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -447,7 +447,7 @@ class DB_sqlite extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/sybase.php b/extlib/DB/sybase.php index 3befbf6ea..97ab41a22 100644 --- a/extlib/DB/sybase.php +++ b/extlib/DB/sybase.php @@ -118,7 +118,7 @@ class DB_sybase extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it can't actually be designated + * {@internal While this is private, it cannot actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -302,7 +302,7 @@ class DB_sybase extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It can't be declared "protected" + * DB_result::fetchInto() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -359,7 +359,7 @@ class DB_sybase extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It can't be declared "protected" + * DB_result::free() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -380,7 +380,7 @@ class DB_sybase extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It can't be declared "protected" + * DB_result::numCols() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -405,7 +405,7 @@ class DB_sybase extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It can't be declared "protected" + * DB_result::numRows() instead. It cannot be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -835,7 +835,7 @@ class DB_sybase extends DB_common $tableName = $table; /* We're running sp_helpindex directly because it doesn't exist in - * older versions of ASE -- unfortunately, we can't just use + * older versions of ASE -- unfortunately, we cannot just use * DB::isError() because the user may be using callback error * handling. */ $res = @sybase_query("sp_helpindex $table", $this->connection); diff --git a/extlib/HTTP/Request2/Adapter/Socket.php b/extlib/HTTP/Request2/Adapter/Socket.php index ff44d4959..13cd6136f 100644 --- a/extlib/HTTP/Request2/Adapter/Socket.php +++ b/extlib/HTTP/Request2/Adapter/Socket.php @@ -1,971 +1,971 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Socket.php 279760 2009-05-03 10:46:42Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Base class for HTTP_Request2 adapters - */ -require_once 'HTTP/Request2/Adapter.php'; - -/** - * Socket-based adapter for HTTP_Request2 - * - * This adapter uses only PHP sockets and will work on almost any PHP - * environment. Code is based on original HTTP_Request PEAR package. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - */ -class HTTP_Request2_Adapter_Socket extends HTTP_Request2_Adapter -{ - /** - * Regular expression for 'token' rule from RFC 2616 - */ - const REGEXP_TOKEN = '[^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+'; - - /** - * Regular expression for 'quoted-string' rule from RFC 2616 - */ - const REGEXP_QUOTED_STRING = '"(?:\\\\.|[^\\\\"])*"'; - - /** - * Connected sockets, needed for Keep-Alive support - * @var array - * @see connect() - */ - protected static $sockets = array(); - - /** - * Data for digest authentication scheme - * - * The keys for the array are URL prefixes. - * - * The values are associative arrays with data (realm, nonce, nonce-count, - * opaque...) needed for digest authentication. Stored here to prevent making - * duplicate requests to digest-protected resources after we have already - * received the challenge. - * - * @var array - */ - protected static $challenges = array(); - - /** - * Connected socket - * @var resource - * @see connect() - */ - protected $socket; - - /** - * Challenge used for server digest authentication - * @var array - */ - protected $serverChallenge; - - /** - * Challenge used for proxy digest authentication - * @var array - */ - protected $proxyChallenge; - - /** - * Global timeout, exception will be raised if request continues past this time - * @var integer - */ - protected $timeout = null; - - /** - * Remaining length of the current chunk, when reading chunked response - * @var integer - * @see readChunked() - */ - protected $chunkLength = 0; - - /** - * Sends request to the remote server and returns its response - * - * @param HTTP_Request2 - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - public function sendRequest(HTTP_Request2 $request) - { - $this->request = $request; - $keepAlive = $this->connect(); - $headers = $this->prepareHeaders(); - - // Use global request timeout if given, see feature requests #5735, #8964 - if ($timeout = $request->getConfig('timeout')) { - $this->timeout = time() + $timeout; - } else { - $this->timeout = null; - } - - try { - if (false === @fwrite($this->socket, $headers, strlen($headers))) { - throw new HTTP_Request2_Exception('Error writing request'); - } - // provide request headers to the observer, see request #7633 - $this->request->setLastEvent('sentHeaders', $headers); - $this->writeBody(); - - if ($this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $request->getConfig('timeout') . ' second(s)' - ); - } - - $response = $this->readResponse(); - - if (!$this->canKeepAlive($keepAlive, $response)) { - $this->disconnect(); - } - - if ($this->shouldUseProxyDigestAuth($response)) { - return $this->sendRequest($request); - } - if ($this->shouldUseServerDigestAuth($response)) { - return $this->sendRequest($request); - } - if ($authInfo = $response->getHeader('authentication-info')) { - $this->updateChallenge($this->serverChallenge, $authInfo); - } - if ($proxyInfo = $response->getHeader('proxy-authentication-info')) { - $this->updateChallenge($this->proxyChallenge, $proxyInfo); - } - - } catch (Exception $e) { - $this->disconnect(); - throw $e; - } - - return $response; - } - - /** - * Connects to the remote server - * - * @return bool whether the connection can be persistent - * @throws HTTP_Request2_Exception - */ - protected function connect() - { - $secure = 0 == strcasecmp($this->request->getUrl()->getScheme(), 'https'); - $tunnel = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); - $headers = $this->request->getHeaders(); - $reqHost = $this->request->getUrl()->getHost(); - if (!($reqPort = $this->request->getUrl()->getPort())) { - $reqPort = $secure? 443: 80; - } - - if ($host = $this->request->getConfig('proxy_host')) { - if (!($port = $this->request->getConfig('proxy_port'))) { - throw new HTTP_Request2_Exception('Proxy port not provided'); - } - $proxy = true; - } else { - $host = $reqHost; - $port = $reqPort; - $proxy = false; - } - - if ($tunnel && !$proxy) { - throw new HTTP_Request2_Exception( - "Trying to perform CONNECT request without proxy" - ); - } - if ($secure && !in_array('ssl', stream_get_transports())) { - throw new HTTP_Request2_Exception( - 'Need OpenSSL support for https:// requests' - ); - } - - // RFC 2068, section 19.7.1: A client MUST NOT send the Keep-Alive - // connection token to a proxy server... - if ($proxy && !$secure && - !empty($headers['connection']) && 'Keep-Alive' == $headers['connection'] - ) { - $this->request->setHeader('connection'); - } - - $keepAlive = ('1.1' == $this->request->getConfig('protocol_version') && - empty($headers['connection'])) || - (!empty($headers['connection']) && - 'Keep-Alive' == $headers['connection']); - $host = ((!$secure || $proxy)? 'tcp://': 'ssl://') . $host; - - $options = array(); - if ($secure || $tunnel) { - foreach ($this->request->getConfig() as $name => $value) { - if ('ssl_' == substr($name, 0, 4) && null !== $value) { - if ('ssl_verify_host' == $name) { - if ($value) { - $options['CN_match'] = $reqHost; - } - } else { - $options[substr($name, 4)] = $value; - } - } - } - ksort($options); - } - - // Changing SSL context options after connection is established does *not* - // work, we need a new connection if options change - $remote = $host . ':' . $port; - $socketKey = $remote . (($secure && $proxy)? "->{$reqHost}:{$reqPort}": '') . - (empty($options)? '': ':' . serialize($options)); - unset($this->socket); - - // We use persistent connections and have a connected socket? - // Ensure that the socket is still connected, see bug #16149 - if ($keepAlive && !empty(self::$sockets[$socketKey]) && - !feof(self::$sockets[$socketKey]) - ) { - $this->socket =& self::$sockets[$socketKey]; - - } elseif ($secure && $proxy && !$tunnel) { - $this->establishTunnel(); - $this->request->setLastEvent( - 'connect', "ssl://{$reqHost}:{$reqPort} via {$host}:{$port}" - ); - self::$sockets[$socketKey] =& $this->socket; - - } else { - // Set SSL context options if doing HTTPS request or creating a tunnel - $context = stream_context_create(); - foreach ($options as $name => $value) { - if (!stream_context_set_option($context, 'ssl', $name, $value)) { - throw new HTTP_Request2_Exception( - "Error setting SSL context option '{$name}'" - ); - } - } - $this->socket = @stream_socket_client( - $remote, $errno, $errstr, - $this->request->getConfig('connect_timeout'), - STREAM_CLIENT_CONNECT, $context - ); - if (!$this->socket) { - throw new HTTP_Request2_Exception( - "Unable to connect to {$remote}. Error #{$errno}: {$errstr}" - ); - } - $this->request->setLastEvent('connect', $remote); - self::$sockets[$socketKey] =& $this->socket; - } - return $keepAlive; - } - - /** - * Establishes a tunnel to a secure remote server via HTTP CONNECT request - * - * This method will fail if 'ssl_verify_peer' is enabled. Probably because PHP - * sees that we are connected to a proxy server (duh!) rather than the server - * that presents its certificate. - * - * @link http://tools.ietf.org/html/rfc2817#section-5.2 - * @throws HTTP_Request2_Exception - */ - protected function establishTunnel() - { - $donor = new self; - $connect = new HTTP_Request2( - $this->request->getUrl(), HTTP_Request2::METHOD_CONNECT, - array_merge($this->request->getConfig(), - array('adapter' => $donor)) - ); - $response = $connect->send(); - // Need any successful (2XX) response - if (200 > $response->getStatus() || 300 <= $response->getStatus()) { - throw new HTTP_Request2_Exception( - 'Failed to connect via HTTPS proxy. Proxy response: ' . - $response->getStatus() . ' ' . $response->getReasonPhrase() - ); - } - $this->socket = $donor->socket; - - $modes = array( - STREAM_CRYPTO_METHOD_TLS_CLIENT, - STREAM_CRYPTO_METHOD_SSLv3_CLIENT, - STREAM_CRYPTO_METHOD_SSLv23_CLIENT, - STREAM_CRYPTO_METHOD_SSLv2_CLIENT - ); - - foreach ($modes as $mode) { - if (stream_socket_enable_crypto($this->socket, true, $mode)) { - return; - } - } - throw new HTTP_Request2_Exception( - 'Failed to enable secure connection when connecting through proxy' - ); - } - - /** - * Checks whether current connection may be reused or should be closed - * - * @param boolean whether connection could be persistent - * in the first place - * @param HTTP_Request2_Response response object to check - * @return boolean - */ - protected function canKeepAlive($requestKeepAlive, HTTP_Request2_Response $response) - { - // Do not close socket on successful CONNECT request - if (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && - 200 <= $response->getStatus() && 300 > $response->getStatus() - ) { - return true; - } - - $lengthKnown = 'chunked' == strtolower($response->getHeader('transfer-encoding')) || - null !== $response->getHeader('content-length'); - $persistent = 'keep-alive' == strtolower($response->getHeader('connection')) || - (null === $response->getHeader('connection') && - '1.1' == $response->getVersion()); - return $requestKeepAlive && $lengthKnown && $persistent; - } - - /** - * Disconnects from the remote server - */ - protected function disconnect() - { - if (is_resource($this->socket)) { - fclose($this->socket); - $this->socket = null; - $this->request->setLastEvent('disconnect'); - } - } - - /** - * Checks whether another request should be performed with server digest auth - * - * Several conditions should be satisfied for it to return true: - * - response status should be 401 - * - auth credentials should be set in the request object - * - response should contain WWW-Authenticate header with digest challenge - * - there is either no challenge stored for this URL or new challenge - * contains stale=true parameter (in other case we probably just failed - * due to invalid username / password) - * - * The method stores challenge values in $challenges static property - * - * @param HTTP_Request2_Response response to check - * @return boolean whether another request should be performed - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function shouldUseServerDigestAuth(HTTP_Request2_Response $response) - { - // no sense repeating a request if we don't have credentials - if (401 != $response->getStatus() || !$this->request->getAuth()) { - return false; - } - if (!$challenge = $this->parseDigestChallenge($response->getHeader('www-authenticate'))) { - return false; - } - - $url = $this->request->getUrl(); - $scheme = $url->getScheme(); - $host = $scheme . '://' . $url->getHost(); - if ($port = $url->getPort()) { - if ((0 == strcasecmp($scheme, 'http') && 80 != $port) || - (0 == strcasecmp($scheme, 'https') && 443 != $port) - ) { - $host .= ':' . $port; - } - } - - if (!empty($challenge['domain'])) { - $prefixes = array(); - foreach (preg_split('/\\s+/', $challenge['domain']) as $prefix) { - // don't bother with different servers - if ('/' == substr($prefix, 0, 1)) { - $prefixes[] = $host . $prefix; - } - } - } - if (empty($prefixes)) { - $prefixes = array($host . '/'); - } - - $ret = true; - foreach ($prefixes as $prefix) { - if (!empty(self::$challenges[$prefix]) && - (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) - ) { - // probably credentials are invalid - $ret = false; - } - self::$challenges[$prefix] =& $challenge; - } - return $ret; - } - - /** - * Checks whether another request should be performed with proxy digest auth - * - * Several conditions should be satisfied for it to return true: - * - response status should be 407 - * - proxy auth credentials should be set in the request object - * - response should contain Proxy-Authenticate header with digest challenge - * - there is either no challenge stored for this proxy or new challenge - * contains stale=true parameter (in other case we probably just failed - * due to invalid username / password) - * - * The method stores challenge values in $challenges static property - * - * @param HTTP_Request2_Response response to check - * @return boolean whether another request should be performed - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function shouldUseProxyDigestAuth(HTTP_Request2_Response $response) - { - if (407 != $response->getStatus() || !$this->request->getConfig('proxy_user')) { - return false; - } - if (!($challenge = $this->parseDigestChallenge($response->getHeader('proxy-authenticate')))) { - return false; - } - - $key = 'proxy://' . $this->request->getConfig('proxy_host') . - ':' . $this->request->getConfig('proxy_port'); - - if (!empty(self::$challenges[$key]) && - (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) - ) { - $ret = false; - } else { - $ret = true; - } - self::$challenges[$key] = $challenge; - return $ret; - } - - /** - * Extracts digest method challenge from (WWW|Proxy)-Authenticate header value - * - * There is a problem with implementation of RFC 2617: several of the parameters - * here are defined as quoted-string and thus may contain backslash escaped - * double quotes (RFC 2616, section 2.2). However, RFC 2617 defines unq(X) as - * just value of quoted-string X without surrounding quotes, it doesn't speak - * about removing backslash escaping. - * - * Now realm parameter is user-defined and human-readable, strange things - * happen when it contains quotes: - * - Apache allows quotes in realm, but apparently uses realm value without - * backslashes for digest computation - * - Squid allows (manually escaped) quotes there, but it is impossible to - * authorize with either escaped or unescaped quotes used in digest, - * probably it can't parse the response (?) - * - Both IE and Firefox display realm value with backslashes in - * the password popup and apparently use the same value for digest - * - * HTTP_Request2 follows IE and Firefox (and hopefully RFC 2617) in - * quoted-string handling, unfortunately that means failure to authorize - * sometimes - * - * @param string value of WWW-Authenticate or Proxy-Authenticate header - * @return mixed associative array with challenge parameters, false if - * no challenge is present in header value - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function parseDigestChallenge($headerValue) - { - $authParam = '(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . - self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')'; - $challenge = "!(?<=^|\\s|,)Digest ({$authParam}\\s*(,\\s*|$))+!"; - if (!preg_match($challenge, $headerValue, $matches)) { - return false; - } - - preg_match_all('!' . $authParam . '!', $matches[0], $params); - $paramsAry = array(); - $knownParams = array('realm', 'domain', 'nonce', 'opaque', 'stale', - 'algorithm', 'qop'); - for ($i = 0; $i < count($params[0]); $i++) { - // section 3.2.1: Any unrecognized directive MUST be ignored. - if (in_array($params[1][$i], $knownParams)) { - if ('"' == substr($params[2][$i], 0, 1)) { - $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); - } else { - $paramsAry[$params[1][$i]] = $params[2][$i]; - } - } - } - // we only support qop=auth - if (!empty($paramsAry['qop']) && - !in_array('auth', array_map('trim', explode(',', $paramsAry['qop']))) - ) { - throw new HTTP_Request2_Exception( - "Only 'auth' qop is currently supported in digest authentication, " . - "server requested '{$paramsAry['qop']}'" - ); - } - // we only support algorithm=MD5 - if (!empty($paramsAry['algorithm']) && 'MD5' != $paramsAry['algorithm']) { - throw new HTTP_Request2_Exception( - "Only 'MD5' algorithm is currently supported in digest authentication, " . - "server requested '{$paramsAry['algorithm']}'" - ); - } - - return $paramsAry; - } - - /** - * Parses [Proxy-]Authentication-Info header value and updates challenge - * - * @param array challenge to update - * @param string value of [Proxy-]Authentication-Info header - * @todo validate server rspauth response - */ - protected function updateChallenge(&$challenge, $headerValue) - { - $authParam = '!(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . - self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')!'; - $paramsAry = array(); - - preg_match_all($authParam, $headerValue, $params); - for ($i = 0; $i < count($params[0]); $i++) { - if ('"' == substr($params[2][$i], 0, 1)) { - $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); - } else { - $paramsAry[$params[1][$i]] = $params[2][$i]; - } - } - // for now, just update the nonce value - if (!empty($paramsAry['nextnonce'])) { - $challenge['nonce'] = $paramsAry['nextnonce']; - $challenge['nc'] = 1; - } - } - - /** - * Creates a value for [Proxy-]Authorization header when using digest authentication - * - * @param string user name - * @param string password - * @param string request URL - * @param array digest challenge parameters - * @return string value of [Proxy-]Authorization request header - * @link http://tools.ietf.org/html/rfc2617#section-3.2.2 - */ - protected function createDigestResponse($user, $password, $url, &$challenge) - { - if (false !== ($q = strpos($url, '?')) && - $this->request->getConfig('digest_compat_ie') - ) { - $url = substr($url, 0, $q); - } - - $a1 = md5($user . ':' . $challenge['realm'] . ':' . $password); - $a2 = md5($this->request->getMethod() . ':' . $url); - - if (empty($challenge['qop'])) { - $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $a2); - } else { - $challenge['cnonce'] = 'Req2.' . rand(); - if (empty($challenge['nc'])) { - $challenge['nc'] = 1; - } - $nc = sprintf('%08x', $challenge['nc']++); - $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $nc . ':' . - $challenge['cnonce'] . ':auth:' . $a2); - } - return 'Digest username="' . str_replace(array('\\', '"'), array('\\\\', '\\"'), $user) . '", ' . - 'realm="' . $challenge['realm'] . '", ' . - 'nonce="' . $challenge['nonce'] . '", ' . - 'uri="' . $url . '", ' . - 'response="' . $digest . '"' . - (!empty($challenge['opaque'])? - ', opaque="' . $challenge['opaque'] . '"': - '') . - (!empty($challenge['qop'])? - ', qop="auth", nc=' . $nc . ', cnonce="' . $challenge['cnonce'] . '"': - ''); - } - - /** - * Adds 'Authorization' header (if needed) to request headers array - * - * @param array request headers - * @param string request host (needed for digest authentication) - * @param string request URL (needed for digest authentication) - * @throws HTTP_Request2_Exception - */ - protected function addAuthorizationHeader(&$headers, $requestHost, $requestUrl) - { - if (!($auth = $this->request->getAuth())) { - return; - } - switch ($auth['scheme']) { - case HTTP_Request2::AUTH_BASIC: - $headers['authorization'] = - 'Basic ' . base64_encode($auth['user'] . ':' . $auth['password']); - break; - - case HTTP_Request2::AUTH_DIGEST: - unset($this->serverChallenge); - $fullUrl = ('/' == $requestUrl[0])? - $this->request->getUrl()->getScheme() . '://' . - $requestHost . $requestUrl: - $requestUrl; - foreach (array_keys(self::$challenges) as $key) { - if ($key == substr($fullUrl, 0, strlen($key))) { - $headers['authorization'] = $this->createDigestResponse( - $auth['user'], $auth['password'], - $requestUrl, self::$challenges[$key] - ); - $this->serverChallenge =& self::$challenges[$key]; - break; - } - } - break; - - default: - throw new HTTP_Request2_Exception( - "Unknown HTTP authentication scheme '{$auth['scheme']}'" - ); - } - } - - /** - * Adds 'Proxy-Authorization' header (if needed) to request headers array - * - * @param array request headers - * @param string request URL (needed for digest authentication) - * @throws HTTP_Request2_Exception - */ - protected function addProxyAuthorizationHeader(&$headers, $requestUrl) - { - if (!$this->request->getConfig('proxy_host') || - !($user = $this->request->getConfig('proxy_user')) || - (0 == strcasecmp('https', $this->request->getUrl()->getScheme()) && - HTTP_Request2::METHOD_CONNECT != $this->request->getMethod()) - ) { - return; - } - - $password = $this->request->getConfig('proxy_password'); - switch ($this->request->getConfig('proxy_auth_scheme')) { - case HTTP_Request2::AUTH_BASIC: - $headers['proxy-authorization'] = - 'Basic ' . base64_encode($user . ':' . $password); - break; - - case HTTP_Request2::AUTH_DIGEST: - unset($this->proxyChallenge); - $proxyUrl = 'proxy://' . $this->request->getConfig('proxy_host') . - ':' . $this->request->getConfig('proxy_port'); - if (!empty(self::$challenges[$proxyUrl])) { - $headers['proxy-authorization'] = $this->createDigestResponse( - $user, $password, - $requestUrl, self::$challenges[$proxyUrl] - ); - $this->proxyChallenge =& self::$challenges[$proxyUrl]; - } - break; - - default: - throw new HTTP_Request2_Exception( - "Unknown HTTP authentication scheme '" . - $this->request->getConfig('proxy_auth_scheme') . "'" - ); - } - } - - - /** - * Creates the string with the Request-Line and request headers - * - * @return string - * @throws HTTP_Request2_Exception - */ - protected function prepareHeaders() - { - $headers = $this->request->getHeaders(); - $url = $this->request->getUrl(); - $connect = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); - $host = $url->getHost(); - - $defaultPort = 0 == strcasecmp($url->getScheme(), 'https')? 443: 80; - if (($port = $url->getPort()) && $port != $defaultPort || $connect) { - $host .= ':' . (empty($port)? $defaultPort: $port); - } - // Do not overwrite explicitly set 'Host' header, see bug #16146 - if (!isset($headers['host'])) { - $headers['host'] = $host; - } - - if ($connect) { - $requestUrl = $host; - - } else { - if (!$this->request->getConfig('proxy_host') || - 0 == strcasecmp($url->getScheme(), 'https') - ) { - $requestUrl = ''; - } else { - $requestUrl = $url->getScheme() . '://' . $host; - } - $path = $url->getPath(); - $query = $url->getQuery(); - $requestUrl .= (empty($path)? '/': $path) . (empty($query)? '': '?' . $query); - } - - if ('1.1' == $this->request->getConfig('protocol_version') && - extension_loaded('zlib') && !isset($headers['accept-encoding']) - ) { - $headers['accept-encoding'] = 'gzip, deflate'; - } - - $this->addAuthorizationHeader($headers, $host, $requestUrl); - $this->addProxyAuthorizationHeader($headers, $requestUrl); - $this->calculateRequestLength($headers); - - $headersStr = $this->request->getMethod() . ' ' . $requestUrl . ' HTTP/' . - $this->request->getConfig('protocol_version') . "\r\n"; - foreach ($headers as $name => $value) { - $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); - $headersStr .= $canonicalName . ': ' . $value . "\r\n"; - } - return $headersStr . "\r\n"; - } - - /** - * Sends the request body - * - * @throws HTTP_Request2_Exception - */ - protected function writeBody() - { - if (in_array($this->request->getMethod(), self::$bodyDisallowed) || - 0 == $this->contentLength - ) { - return; - } - - $position = 0; - $bufferSize = $this->request->getConfig('buffer_size'); - while ($position < $this->contentLength) { - if (is_string($this->requestBody)) { - $str = substr($this->requestBody, $position, $bufferSize); - } elseif (is_resource($this->requestBody)) { - $str = fread($this->requestBody, $bufferSize); - } else { - $str = $this->requestBody->read($bufferSize); - } - if (false === @fwrite($this->socket, $str, strlen($str))) { - throw new HTTP_Request2_Exception('Error writing request'); - } - // Provide the length of written string to the observer, request #7630 - $this->request->setLastEvent('sentBodyPart', strlen($str)); - $position += strlen($str); - } - } - - /** - * Reads the remote server's response - * - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - protected function readResponse() - { - $bufferSize = $this->request->getConfig('buffer_size'); - - do { - $response = new HTTP_Request2_Response($this->readLine($bufferSize), true); - do { - $headerLine = $this->readLine($bufferSize); - $response->parseHeaderLine($headerLine); - } while ('' != $headerLine); - } while (in_array($response->getStatus(), array(100, 101))); - - $this->request->setLastEvent('receivedHeaders', $response); - - // No body possible in such responses - if (HTTP_Request2::METHOD_HEAD == $this->request->getMethod() || - (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && - 200 <= $response->getStatus() && 300 > $response->getStatus()) || - in_array($response->getStatus(), array(204, 304)) - ) { - return $response; - } - - $chunked = 'chunked' == $response->getHeader('transfer-encoding'); - $length = $response->getHeader('content-length'); - $hasBody = false; - if ($chunked || null === $length || 0 < intval($length)) { - // RFC 2616, section 4.4: - // 3. ... If a message is received with both a - // Transfer-Encoding header field and a Content-Length header field, - // the latter MUST be ignored. - $toRead = ($chunked || null === $length)? null: $length; - $this->chunkLength = 0; - - while (!feof($this->socket) && (is_null($toRead) || 0 < $toRead)) { - if ($chunked) { - $data = $this->readChunked($bufferSize); - } elseif (is_null($toRead)) { - $data = $this->fread($bufferSize); - } else { - $data = $this->fread(min($toRead, $bufferSize)); - $toRead -= strlen($data); - } - if ('' == $data && (!$this->chunkLength || feof($this->socket))) { - break; - } - - $hasBody = true; - if ($this->request->getConfig('store_body')) { - $response->appendBody($data); - } - if (!in_array($response->getHeader('content-encoding'), array('identity', null))) { - $this->request->setLastEvent('receivedEncodedBodyPart', $data); - } else { - $this->request->setLastEvent('receivedBodyPart', $data); - } - } - } - - if ($hasBody) { - $this->request->setLastEvent('receivedBody', $response); - } - return $response; - } - - /** - * Reads until either the end of the socket or a newline, whichever comes first - * - * Strips the trailing newline from the returned data, handles global - * request timeout. Method idea borrowed from Net_Socket PEAR package. - * - * @param int buffer size to use for reading - * @return Available data up to the newline (not including newline) - * @throws HTTP_Request2_Exception In case of timeout - */ - protected function readLine($bufferSize) - { - $line = ''; - while (!feof($this->socket)) { - if ($this->timeout) { - stream_set_timeout($this->socket, max($this->timeout - time(), 1)); - } - $line .= @fgets($this->socket, $bufferSize); - $info = stream_get_meta_data($this->socket); - if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $this->request->getConfig('timeout') . ' second(s)' - ); - } - if (substr($line, -1) == "\n") { - return rtrim($line, "\r\n"); - } - } - return $line; - } - - /** - * Wrapper around fread(), handles global request timeout - * - * @param int Reads up to this number of bytes - * @return Data read from socket - * @throws HTTP_Request2_Exception In case of timeout - */ - protected function fread($length) - { - if ($this->timeout) { - stream_set_timeout($this->socket, max($this->timeout - time(), 1)); - } - $data = fread($this->socket, $length); - $info = stream_get_meta_data($this->socket); - if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $this->request->getConfig('timeout') . ' second(s)' - ); - } - return $data; - } - - /** - * Reads a part of response body encoded with chunked Transfer-Encoding - * - * @param int buffer size to use for reading - * @return string - * @throws HTTP_Request2_Exception - */ - protected function readChunked($bufferSize) - { - // at start of the next chunk? - if (0 == $this->chunkLength) { - $line = $this->readLine($bufferSize); - if (!preg_match('/^([0-9a-f]+)/i', $line, $matches)) { - throw new HTTP_Request2_Exception( - "Cannot decode chunked response, invalid chunk length '{$line}'" - ); - } else { - $this->chunkLength = hexdec($matches[1]); - // Chunk with zero length indicates the end - if (0 == $this->chunkLength) { - $this->readLine($bufferSize); - return ''; - } - } - } - $data = $this->fread(min($this->chunkLength, $bufferSize)); - $this->chunkLength -= strlen($data); - if (0 == $this->chunkLength) { - $this->readLine($bufferSize); // Trailing CRLF - } - return $data; - } -} - + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Socket.php 279760 2009-05-03 10:46:42Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Socket-based adapter for HTTP_Request2 + * + * This adapter uses only PHP sockets and will work on almost any PHP + * environment. Code is based on original HTTP_Request PEAR package. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Socket extends HTTP_Request2_Adapter +{ + /** + * Regular expression for 'token' rule from RFC 2616 + */ + const REGEXP_TOKEN = '[^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+'; + + /** + * Regular expression for 'quoted-string' rule from RFC 2616 + */ + const REGEXP_QUOTED_STRING = '"(?:\\\\.|[^\\\\"])*"'; + + /** + * Connected sockets, needed for Keep-Alive support + * @var array + * @see connect() + */ + protected static $sockets = array(); + + /** + * Data for digest authentication scheme + * + * The keys for the array are URL prefixes. + * + * The values are associative arrays with data (realm, nonce, nonce-count, + * opaque...) needed for digest authentication. Stored here to prevent making + * duplicate requests to digest-protected resources after we have already + * received the challenge. + * + * @var array + */ + protected static $challenges = array(); + + /** + * Connected socket + * @var resource + * @see connect() + */ + protected $socket; + + /** + * Challenge used for server digest authentication + * @var array + */ + protected $serverChallenge; + + /** + * Challenge used for proxy digest authentication + * @var array + */ + protected $proxyChallenge; + + /** + * Global timeout, exception will be raised if request continues past this time + * @var integer + */ + protected $timeout = null; + + /** + * Remaining length of the current chunk, when reading chunked response + * @var integer + * @see readChunked() + */ + protected $chunkLength = 0; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + $this->request = $request; + $keepAlive = $this->connect(); + $headers = $this->prepareHeaders(); + + // Use global request timeout if given, see feature requests #5735, #8964 + if ($timeout = $request->getConfig('timeout')) { + $this->timeout = time() + $timeout; + } else { + $this->timeout = null; + } + + try { + if (false === @fwrite($this->socket, $headers, strlen($headers))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // provide request headers to the observer, see request #7633 + $this->request->setLastEvent('sentHeaders', $headers); + $this->writeBody(); + + if ($this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $request->getConfig('timeout') . ' second(s)' + ); + } + + $response = $this->readResponse(); + + if (!$this->canKeepAlive($keepAlive, $response)) { + $this->disconnect(); + } + + if ($this->shouldUseProxyDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($this->shouldUseServerDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($authInfo = $response->getHeader('authentication-info')) { + $this->updateChallenge($this->serverChallenge, $authInfo); + } + if ($proxyInfo = $response->getHeader('proxy-authentication-info')) { + $this->updateChallenge($this->proxyChallenge, $proxyInfo); + } + + } catch (Exception $e) { + $this->disconnect(); + throw $e; + } + + return $response; + } + + /** + * Connects to the remote server + * + * @return bool whether the connection can be persistent + * @throws HTTP_Request2_Exception + */ + protected function connect() + { + $secure = 0 == strcasecmp($this->request->getUrl()->getScheme(), 'https'); + $tunnel = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $headers = $this->request->getHeaders(); + $reqHost = $this->request->getUrl()->getHost(); + if (!($reqPort = $this->request->getUrl()->getPort())) { + $reqPort = $secure? 443: 80; + } + + if ($host = $this->request->getConfig('proxy_host')) { + if (!($port = $this->request->getConfig('proxy_port'))) { + throw new HTTP_Request2_Exception('Proxy port not provided'); + } + $proxy = true; + } else { + $host = $reqHost; + $port = $reqPort; + $proxy = false; + } + + if ($tunnel && !$proxy) { + throw new HTTP_Request2_Exception( + "Trying to perform CONNECT request without proxy" + ); + } + if ($secure && !in_array('ssl', stream_get_transports())) { + throw new HTTP_Request2_Exception( + 'Need OpenSSL support for https:// requests' + ); + } + + // RFC 2068, section 19.7.1: A client MUST NOT send the Keep-Alive + // connection token to a proxy server... + if ($proxy && !$secure && + !empty($headers['connection']) && 'Keep-Alive' == $headers['connection'] + ) { + $this->request->setHeader('connection'); + } + + $keepAlive = ('1.1' == $this->request->getConfig('protocol_version') && + empty($headers['connection'])) || + (!empty($headers['connection']) && + 'Keep-Alive' == $headers['connection']); + $host = ((!$secure || $proxy)? 'tcp://': 'ssl://') . $host; + + $options = array(); + if ($secure || $tunnel) { + foreach ($this->request->getConfig() as $name => $value) { + if ('ssl_' == substr($name, 0, 4) && null !== $value) { + if ('ssl_verify_host' == $name) { + if ($value) { + $options['CN_match'] = $reqHost; + } + } else { + $options[substr($name, 4)] = $value; + } + } + } + ksort($options); + } + + // Changing SSL context options after connection is established does *not* + // work, we need a new connection if options change + $remote = $host . ':' . $port; + $socketKey = $remote . (($secure && $proxy)? "->{$reqHost}:{$reqPort}": '') . + (empty($options)? '': ':' . serialize($options)); + unset($this->socket); + + // We use persistent connections and have a connected socket? + // Ensure that the socket is still connected, see bug #16149 + if ($keepAlive && !empty(self::$sockets[$socketKey]) && + !feof(self::$sockets[$socketKey]) + ) { + $this->socket =& self::$sockets[$socketKey]; + + } elseif ($secure && $proxy && !$tunnel) { + $this->establishTunnel(); + $this->request->setLastEvent( + 'connect', "ssl://{$reqHost}:{$reqPort} via {$host}:{$port}" + ); + self::$sockets[$socketKey] =& $this->socket; + + } else { + // Set SSL context options if doing HTTPS request or creating a tunnel + $context = stream_context_create(); + foreach ($options as $name => $value) { + if (!stream_context_set_option($context, 'ssl', $name, $value)) { + throw new HTTP_Request2_Exception( + "Error setting SSL context option '{$name}'" + ); + } + } + $this->socket = @stream_socket_client( + $remote, $errno, $errstr, + $this->request->getConfig('connect_timeout'), + STREAM_CLIENT_CONNECT, $context + ); + if (!$this->socket) { + throw new HTTP_Request2_Exception( + "Unable to connect to {$remote}. Error #{$errno}: {$errstr}" + ); + } + $this->request->setLastEvent('connect', $remote); + self::$sockets[$socketKey] =& $this->socket; + } + return $keepAlive; + } + + /** + * Establishes a tunnel to a secure remote server via HTTP CONNECT request + * + * This method will fail if 'ssl_verify_peer' is enabled. Probably because PHP + * sees that we are connected to a proxy server (duh!) rather than the server + * that presents its certificate. + * + * @link http://tools.ietf.org/html/rfc2817#section-5.2 + * @throws HTTP_Request2_Exception + */ + protected function establishTunnel() + { + $donor = new self; + $connect = new HTTP_Request2( + $this->request->getUrl(), HTTP_Request2::METHOD_CONNECT, + array_merge($this->request->getConfig(), + array('adapter' => $donor)) + ); + $response = $connect->send(); + // Need any successful (2XX) response + if (200 > $response->getStatus() || 300 <= $response->getStatus()) { + throw new HTTP_Request2_Exception( + 'Failed to connect via HTTPS proxy. Proxy response: ' . + $response->getStatus() . ' ' . $response->getReasonPhrase() + ); + } + $this->socket = $donor->socket; + + $modes = array( + STREAM_CRYPTO_METHOD_TLS_CLIENT, + STREAM_CRYPTO_METHOD_SSLv3_CLIENT, + STREAM_CRYPTO_METHOD_SSLv23_CLIENT, + STREAM_CRYPTO_METHOD_SSLv2_CLIENT + ); + + foreach ($modes as $mode) { + if (stream_socket_enable_crypto($this->socket, true, $mode)) { + return; + } + } + throw new HTTP_Request2_Exception( + 'Failed to enable secure connection when connecting through proxy' + ); + } + + /** + * Checks whether current connection may be reused or should be closed + * + * @param boolean whether connection could be persistent + * in the first place + * @param HTTP_Request2_Response response object to check + * @return boolean + */ + protected function canKeepAlive($requestKeepAlive, HTTP_Request2_Response $response) + { + // Do not close socket on successful CONNECT request + if (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus() + ) { + return true; + } + + $lengthKnown = 'chunked' == strtolower($response->getHeader('transfer-encoding')) || + null !== $response->getHeader('content-length'); + $persistent = 'keep-alive' == strtolower($response->getHeader('connection')) || + (null === $response->getHeader('connection') && + '1.1' == $response->getVersion()); + return $requestKeepAlive && $lengthKnown && $persistent; + } + + /** + * Disconnects from the remote server + */ + protected function disconnect() + { + if (is_resource($this->socket)) { + fclose($this->socket); + $this->socket = null; + $this->request->setLastEvent('disconnect'); + } + } + + /** + * Checks whether another request should be performed with server digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 401 + * - auth credentials should be set in the request object + * - response should contain WWW-Authenticate header with digest challenge + * - there is either no challenge stored for this URL or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseServerDigestAuth(HTTP_Request2_Response $response) + { + // no sense repeating a request if we don't have credentials + if (401 != $response->getStatus() || !$this->request->getAuth()) { + return false; + } + if (!$challenge = $this->parseDigestChallenge($response->getHeader('www-authenticate'))) { + return false; + } + + $url = $this->request->getUrl(); + $scheme = $url->getScheme(); + $host = $scheme . '://' . $url->getHost(); + if ($port = $url->getPort()) { + if ((0 == strcasecmp($scheme, 'http') && 80 != $port) || + (0 == strcasecmp($scheme, 'https') && 443 != $port) + ) { + $host .= ':' . $port; + } + } + + if (!empty($challenge['domain'])) { + $prefixes = array(); + foreach (preg_split('/\\s+/', $challenge['domain']) as $prefix) { + // don't bother with different servers + if ('/' == substr($prefix, 0, 1)) { + $prefixes[] = $host . $prefix; + } + } + } + if (empty($prefixes)) { + $prefixes = array($host . '/'); + } + + $ret = true; + foreach ($prefixes as $prefix) { + if (!empty(self::$challenges[$prefix]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + // probably credentials are invalid + $ret = false; + } + self::$challenges[$prefix] =& $challenge; + } + return $ret; + } + + /** + * Checks whether another request should be performed with proxy digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 407 + * - proxy auth credentials should be set in the request object + * - response should contain Proxy-Authenticate header with digest challenge + * - there is either no challenge stored for this proxy or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseProxyDigestAuth(HTTP_Request2_Response $response) + { + if (407 != $response->getStatus() || !$this->request->getConfig('proxy_user')) { + return false; + } + if (!($challenge = $this->parseDigestChallenge($response->getHeader('proxy-authenticate')))) { + return false; + } + + $key = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + + if (!empty(self::$challenges[$key]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + $ret = false; + } else { + $ret = true; + } + self::$challenges[$key] = $challenge; + return $ret; + } + + /** + * Extracts digest method challenge from (WWW|Proxy)-Authenticate header value + * + * There is a problem with implementation of RFC 2617: several of the parameters + * here are defined as quoted-string and thus may contain backslash escaped + * double quotes (RFC 2616, section 2.2). However, RFC 2617 defines unq(X) as + * just value of quoted-string X without surrounding quotes, it doesn't speak + * about removing backslash escaping. + * + * Now realm parameter is user-defined and human-readable, strange things + * happen when it contains quotes: + * - Apache allows quotes in realm, but apparently uses realm value without + * backslashes for digest computation + * - Squid allows (manually escaped) quotes there, but it is impossible to + * authorize with either escaped or unescaped quotes used in digest, + * probably it cannot parse the response (?) + * - Both IE and Firefox display realm value with backslashes in + * the password popup and apparently use the same value for digest + * + * HTTP_Request2 follows IE and Firefox (and hopefully RFC 2617) in + * quoted-string handling, unfortunately that means failure to authorize + * sometimes + * + * @param string value of WWW-Authenticate or Proxy-Authenticate header + * @return mixed associative array with challenge parameters, false if + * no challenge is present in header value + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function parseDigestChallenge($headerValue) + { + $authParam = '(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')'; + $challenge = "!(?<=^|\\s|,)Digest ({$authParam}\\s*(,\\s*|$))+!"; + if (!preg_match($challenge, $headerValue, $matches)) { + return false; + } + + preg_match_all('!' . $authParam . '!', $matches[0], $params); + $paramsAry = array(); + $knownParams = array('realm', 'domain', 'nonce', 'opaque', 'stale', + 'algorithm', 'qop'); + for ($i = 0; $i < count($params[0]); $i++) { + // section 3.2.1: Any unrecognized directive MUST be ignored. + if (in_array($params[1][$i], $knownParams)) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + } + // we only support qop=auth + if (!empty($paramsAry['qop']) && + !in_array('auth', array_map('trim', explode(',', $paramsAry['qop']))) + ) { + throw new HTTP_Request2_Exception( + "Only 'auth' qop is currently supported in digest authentication, " . + "server requested '{$paramsAry['qop']}'" + ); + } + // we only support algorithm=MD5 + if (!empty($paramsAry['algorithm']) && 'MD5' != $paramsAry['algorithm']) { + throw new HTTP_Request2_Exception( + "Only 'MD5' algorithm is currently supported in digest authentication, " . + "server requested '{$paramsAry['algorithm']}'" + ); + } + + return $paramsAry; + } + + /** + * Parses [Proxy-]Authentication-Info header value and updates challenge + * + * @param array challenge to update + * @param string value of [Proxy-]Authentication-Info header + * @todo validate server rspauth response + */ + protected function updateChallenge(&$challenge, $headerValue) + { + $authParam = '!(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')!'; + $paramsAry = array(); + + preg_match_all($authParam, $headerValue, $params); + for ($i = 0; $i < count($params[0]); $i++) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + // for now, just update the nonce value + if (!empty($paramsAry['nextnonce'])) { + $challenge['nonce'] = $paramsAry['nextnonce']; + $challenge['nc'] = 1; + } + } + + /** + * Creates a value for [Proxy-]Authorization header when using digest authentication + * + * @param string user name + * @param string password + * @param string request URL + * @param array digest challenge parameters + * @return string value of [Proxy-]Authorization request header + * @link http://tools.ietf.org/html/rfc2617#section-3.2.2 + */ + protected function createDigestResponse($user, $password, $url, &$challenge) + { + if (false !== ($q = strpos($url, '?')) && + $this->request->getConfig('digest_compat_ie') + ) { + $url = substr($url, 0, $q); + } + + $a1 = md5($user . ':' . $challenge['realm'] . ':' . $password); + $a2 = md5($this->request->getMethod() . ':' . $url); + + if (empty($challenge['qop'])) { + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $a2); + } else { + $challenge['cnonce'] = 'Req2.' . rand(); + if (empty($challenge['nc'])) { + $challenge['nc'] = 1; + } + $nc = sprintf('%08x', $challenge['nc']++); + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $nc . ':' . + $challenge['cnonce'] . ':auth:' . $a2); + } + return 'Digest username="' . str_replace(array('\\', '"'), array('\\\\', '\\"'), $user) . '", ' . + 'realm="' . $challenge['realm'] . '", ' . + 'nonce="' . $challenge['nonce'] . '", ' . + 'uri="' . $url . '", ' . + 'response="' . $digest . '"' . + (!empty($challenge['opaque'])? + ', opaque="' . $challenge['opaque'] . '"': + '') . + (!empty($challenge['qop'])? + ', qop="auth", nc=' . $nc . ', cnonce="' . $challenge['cnonce'] . '"': + ''); + } + + /** + * Adds 'Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request host (needed for digest authentication) + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addAuthorizationHeader(&$headers, $requestHost, $requestUrl) + { + if (!($auth = $this->request->getAuth())) { + return; + } + switch ($auth['scheme']) { + case HTTP_Request2::AUTH_BASIC: + $headers['authorization'] = + 'Basic ' . base64_encode($auth['user'] . ':' . $auth['password']); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->serverChallenge); + $fullUrl = ('/' == $requestUrl[0])? + $this->request->getUrl()->getScheme() . '://' . + $requestHost . $requestUrl: + $requestUrl; + foreach (array_keys(self::$challenges) as $key) { + if ($key == substr($fullUrl, 0, strlen($key))) { + $headers['authorization'] = $this->createDigestResponse( + $auth['user'], $auth['password'], + $requestUrl, self::$challenges[$key] + ); + $this->serverChallenge =& self::$challenges[$key]; + break; + } + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '{$auth['scheme']}'" + ); + } + } + + /** + * Adds 'Proxy-Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addProxyAuthorizationHeader(&$headers, $requestUrl) + { + if (!$this->request->getConfig('proxy_host') || + !($user = $this->request->getConfig('proxy_user')) || + (0 == strcasecmp('https', $this->request->getUrl()->getScheme()) && + HTTP_Request2::METHOD_CONNECT != $this->request->getMethod()) + ) { + return; + } + + $password = $this->request->getConfig('proxy_password'); + switch ($this->request->getConfig('proxy_auth_scheme')) { + case HTTP_Request2::AUTH_BASIC: + $headers['proxy-authorization'] = + 'Basic ' . base64_encode($user . ':' . $password); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->proxyChallenge); + $proxyUrl = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + if (!empty(self::$challenges[$proxyUrl])) { + $headers['proxy-authorization'] = $this->createDigestResponse( + $user, $password, + $requestUrl, self::$challenges[$proxyUrl] + ); + $this->proxyChallenge =& self::$challenges[$proxyUrl]; + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '" . + $this->request->getConfig('proxy_auth_scheme') . "'" + ); + } + } + + + /** + * Creates the string with the Request-Line and request headers + * + * @return string + * @throws HTTP_Request2_Exception + */ + protected function prepareHeaders() + { + $headers = $this->request->getHeaders(); + $url = $this->request->getUrl(); + $connect = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $host = $url->getHost(); + + $defaultPort = 0 == strcasecmp($url->getScheme(), 'https')? 443: 80; + if (($port = $url->getPort()) && $port != $defaultPort || $connect) { + $host .= ':' . (empty($port)? $defaultPort: $port); + } + // Do not overwrite explicitly set 'Host' header, see bug #16146 + if (!isset($headers['host'])) { + $headers['host'] = $host; + } + + if ($connect) { + $requestUrl = $host; + + } else { + if (!$this->request->getConfig('proxy_host') || + 0 == strcasecmp($url->getScheme(), 'https') + ) { + $requestUrl = ''; + } else { + $requestUrl = $url->getScheme() . '://' . $host; + } + $path = $url->getPath(); + $query = $url->getQuery(); + $requestUrl .= (empty($path)? '/': $path) . (empty($query)? '': '?' . $query); + } + + if ('1.1' == $this->request->getConfig('protocol_version') && + extension_loaded('zlib') && !isset($headers['accept-encoding']) + ) { + $headers['accept-encoding'] = 'gzip, deflate'; + } + + $this->addAuthorizationHeader($headers, $host, $requestUrl); + $this->addProxyAuthorizationHeader($headers, $requestUrl); + $this->calculateRequestLength($headers); + + $headersStr = $this->request->getMethod() . ' ' . $requestUrl . ' HTTP/' . + $this->request->getConfig('protocol_version') . "\r\n"; + foreach ($headers as $name => $value) { + $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); + $headersStr .= $canonicalName . ': ' . $value . "\r\n"; + } + return $headersStr . "\r\n"; + } + + /** + * Sends the request body + * + * @throws HTTP_Request2_Exception + */ + protected function writeBody() + { + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength + ) { + return; + } + + $position = 0; + $bufferSize = $this->request->getConfig('buffer_size'); + while ($position < $this->contentLength) { + if (is_string($this->requestBody)) { + $str = substr($this->requestBody, $position, $bufferSize); + } elseif (is_resource($this->requestBody)) { + $str = fread($this->requestBody, $bufferSize); + } else { + $str = $this->requestBody->read($bufferSize); + } + if (false === @fwrite($this->socket, $str, strlen($str))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // Provide the length of written string to the observer, request #7630 + $this->request->setLastEvent('sentBodyPart', strlen($str)); + $position += strlen($str); + } + } + + /** + * Reads the remote server's response + * + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + protected function readResponse() + { + $bufferSize = $this->request->getConfig('buffer_size'); + + do { + $response = new HTTP_Request2_Response($this->readLine($bufferSize), true); + do { + $headerLine = $this->readLine($bufferSize); + $response->parseHeaderLine($headerLine); + } while ('' != $headerLine); + } while (in_array($response->getStatus(), array(100, 101))); + + $this->request->setLastEvent('receivedHeaders', $response); + + // No body possible in such responses + if (HTTP_Request2::METHOD_HEAD == $this->request->getMethod() || + (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus()) || + in_array($response->getStatus(), array(204, 304)) + ) { + return $response; + } + + $chunked = 'chunked' == $response->getHeader('transfer-encoding'); + $length = $response->getHeader('content-length'); + $hasBody = false; + if ($chunked || null === $length || 0 < intval($length)) { + // RFC 2616, section 4.4: + // 3. ... If a message is received with both a + // Transfer-Encoding header field and a Content-Length header field, + // the latter MUST be ignored. + $toRead = ($chunked || null === $length)? null: $length; + $this->chunkLength = 0; + + while (!feof($this->socket) && (is_null($toRead) || 0 < $toRead)) { + if ($chunked) { + $data = $this->readChunked($bufferSize); + } elseif (is_null($toRead)) { + $data = $this->fread($bufferSize); + } else { + $data = $this->fread(min($toRead, $bufferSize)); + $toRead -= strlen($data); + } + if ('' == $data && (!$this->chunkLength || feof($this->socket))) { + break; + } + + $hasBody = true; + if ($this->request->getConfig('store_body')) { + $response->appendBody($data); + } + if (!in_array($response->getHeader('content-encoding'), array('identity', null))) { + $this->request->setLastEvent('receivedEncodedBodyPart', $data); + } else { + $this->request->setLastEvent('receivedBodyPart', $data); + } + } + } + + if ($hasBody) { + $this->request->setLastEvent('receivedBody', $response); + } + return $response; + } + + /** + * Reads until either the end of the socket or a newline, whichever comes first + * + * Strips the trailing newline from the returned data, handles global + * request timeout. Method idea borrowed from Net_Socket PEAR package. + * + * @param int buffer size to use for reading + * @return Available data up to the newline (not including newline) + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function readLine($bufferSize) + { + $line = ''; + while (!feof($this->socket)) { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $line .= @fgets($this->socket, $bufferSize); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + if (substr($line, -1) == "\n") { + return rtrim($line, "\r\n"); + } + } + return $line; + } + + /** + * Wrapper around fread(), handles global request timeout + * + * @param int Reads up to this number of bytes + * @return Data read from socket + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function fread($length) + { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $data = fread($this->socket, $length); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + return $data; + } + + /** + * Reads a part of response body encoded with chunked Transfer-Encoding + * + * @param int buffer size to use for reading + * @return string + * @throws HTTP_Request2_Exception + */ + protected function readChunked($bufferSize) + { + // at start of the next chunk? + if (0 == $this->chunkLength) { + $line = $this->readLine($bufferSize); + if (!preg_match('/^([0-9a-f]+)/i', $line, $matches)) { + throw new HTTP_Request2_Exception( + "Cannot decode chunked response, invalid chunk length '{$line}'" + ); + } else { + $this->chunkLength = hexdec($matches[1]); + // Chunk with zero length indicates the end + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); + return ''; + } + } + } + $data = $this->fread(min($this->chunkLength, $bufferSize)); + $this->chunkLength -= strlen($data); + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); // Trailing CRLF + } + return $data; + } +} + ?> \ No newline at end of file diff --git a/extlib/MIME/Type.php b/extlib/MIME/Type.php index c335f8d92..8653362d3 100644 --- a/extlib/MIME/Type.php +++ b/extlib/MIME/Type.php @@ -478,7 +478,7 @@ class MIME_Type // Don't return an empty string if (!$type || !strlen($type)) { - return PEAR::raiseError("Sorry, couldn't determine file type."); + return PEAR::raiseError("Sorry. Could not determine file type."); } // Strip parameters if present & requested @@ -510,7 +510,7 @@ class MIME_Type $fileCmd = PEAR::getStaticProperty('MIME_Type', 'fileCmd'); if (!$cmd->which($fileCmd)) { unset($cmd); - return PEAR::raiseError("Can't find file command \"{$fileCmd}\""); + return PEAR::raiseError("Cannot find file command \"{$fileCmd}\""); } $cmd->pushCommand($fileCmd, "-bi " . escapeshellarg($file)); diff --git a/extlib/MIME/Type/Extension.php b/extlib/MIME/Type/Extension.php index 1987e2a10..2ffdee9a9 100644 --- a/extlib/MIME/Type/Extension.php +++ b/extlib/MIME/Type/Extension.php @@ -265,7 +265,7 @@ class MIME_Type_Extension } if (!isset($this->extensionToType[$extension])) { - return PEAR::raiseError("Sorry, couldn't determine file type."); + return PEAR::raiseError("Sorry. Could not determine file type."); } return $this->extensionToType[$extension]; @@ -288,7 +288,7 @@ class MIME_Type_Extension $extension = array_search($type, $this->extensionToType); if ($extension === false) { - return PEAR::raiseError("Sorry, couldn't determine extension."); + return PEAR::raiseError("Sorry. Could not determine extension."); } return $extension; } diff --git a/extlib/Mail/mail.php b/extlib/Mail/mail.php index b13d69565..112ff940c 100644 --- a/extlib/Mail/mail.php +++ b/extlib/Mail/mail.php @@ -51,7 +51,7 @@ class Mail_mail extends Mail { } /* Because the mail() function may pass headers as command - * line arguments, we can't guarantee the use of the standard + * line arguments, we cannot guarantee the use of the standard * "\r\n" separator. Instead, we use the system's native line * separator. */ if (defined('PHP_EOL')) { diff --git a/extlib/Mail/sendmail.php b/extlib/Mail/sendmail.php index cd248e61d..aea52081a 100644 --- a/extlib/Mail/sendmail.php +++ b/extlib/Mail/sendmail.php @@ -67,7 +67,7 @@ class Mail_sendmail extends Mail { /* * Because we need to pass message headers to the sendmail program on - * the commandline, we can't guarantee the use of the standard "\r\n" + * the commandline, we cannot guarantee the use of the standard "\r\n" * separator. Instead, we use the system's native line separator. */ if (defined('PHP_EOL')) { diff --git a/extlib/Net/LDAP2/Entry.php b/extlib/Net/LDAP2/Entry.php index 66de96678..5531bfa13 100644 --- a/extlib/Net/LDAP2/Entry.php +++ b/extlib/Net/LDAP2/Entry.php @@ -665,7 +665,7 @@ class Net_LDAP2_Entry extends PEAR * To force replace mode instead of add, you can set $force to true. * * @param array $attr Attributes to replace - * @param bool $force Force replacing mode in case we can't read the attr value but are allowed to replace it + * @param bool $force Force replacing mode in case we cannot read the attr value but are allowed to replace it * * @access public * @return true|Net_LDAP2_Error diff --git a/extlib/Net/LDAP2/Filter.php b/extlib/Net/LDAP2/Filter.php index 0723edab2..bd13d1ee4 100644 --- a/extlib/Net/LDAP2/Filter.php +++ b/extlib/Net/LDAP2/Filter.php @@ -439,7 +439,7 @@ class Net_LDAP2_Filter extends PEAR * * This method is only for compatibility to the perl interface. * However, the original method was called "print" but due to PHP language restrictions, - * we can't have a print() method. + * we cannot have a print() method. * * @param resource $FH (optional) A filehandle resource * diff --git a/extlib/System/Command.php b/extlib/System/Command.php index f5c3ec6b9..d2001a975 100644 --- a/extlib/System/Command.php +++ b/extlib/System/Command.php @@ -376,7 +376,7 @@ class System_Command { return $this->_initError; } - // if the command is empty or if the last element was a control operator, we can't continue + // if the command is empty or if the last element was a control operator, we cannot continue if (is_null($this->previousElement) || $this->commandStatus == -1 || in_array($this->previousElement, $this->controlOperators)) { return PEAR::raiseError(null, SYSTEM_COMMAND_INVALID_COMMAND, null, E_USER_WARNING, $this->systemCommand, 'System_Command_Error', true); } diff --git a/extlib/markdown.php b/extlib/markdown.php index 8179b568b..1bb1b6ce4 100644 --- a/extlib/markdown.php +++ b/extlib/markdown.php @@ -1348,7 +1348,7 @@ class Markdown_Parser { // { // list(, $div_open, , $div_content, $div_close) = $matches; // -// # We can't call Markdown(), because that resets the hash; +// # We cannot call Markdown(), because that resets the hash; // # that initialization code should be pulled into its own sub, though. // $div_content = $this->hashHTMLBlocks($div_content); // diff --git a/install.php b/install.php index e7f7cf318..78a4b8763 100644 --- a/install.php +++ b/install.php @@ -391,7 +391,7 @@ function showLibs() libraries instead, as they tend to provide security updates faster, and may offer improved performance.

On Debian based distributions, such as Ubuntu, use a package manager (such as "aptitude", "apt-get", and "synaptic") to install the package listed.

On RPM based distributions, such as Red Hat, Fedora, CentOS, Scientific Linux, Yellow Dog Linux and Oracle Enterprise Linux, use a package manager (such as "yum", "apt-rpm", and "up2date") to install the package listed.

-

On servers without a package manager (such as Windows), or if the library is not packaged for your distribution, you can use PHP's PEAR to install the library. Simply run "pear install <name>".

+

On servers without a package manager (such as Windows), or if the library is not packaged for your distribution, you can use PHP PEAR to install the library. Simply run "pear install <name>".

Absent Libraries

    @@ -570,7 +570,7 @@ STR; $res = writeConf($sitename, $server, $path, $fancy, $db); if (!$res) { - updateStatus("Can't write config file.", true); + updateStatus("Cannot write config file.", true); showForm(); return; } @@ -616,7 +616,7 @@ function Pgsql_Db_installer($host, $database, $username, $password) $res = runDbScript(INSTALLDIR.'/db/statusnet_pg.sql', $conn, 'pgsql'); if ($res === false) { - updateStatus("Can't run database script.", true); + updateStatus("Cannot run database script.", true); showForm(); return false; } @@ -627,7 +627,7 @@ function Pgsql_Db_installer($host, $database, $username, $password) updateStatus(sprintf("Adding %s data to database...", $name)); $res = runDbScript(INSTALLDIR.'/db/'.$scr.'.sql', $conn, 'pgsql'); if ($res === false) { - updateStatus(sprintf("Can't run %d script.", $name), true); + updateStatus(sprintf("Cannot run %d script.", $name), true); showForm(); return false; } @@ -652,21 +652,21 @@ function Mysql_Db_installer($host, $database, $username, $password) $conn = mysql_connect($host, $username, $password); if (!$conn) { - updateStatus("Can't connect to server '$host' as '$username'.", true); + updateStatus("Cannot connect to server '$host' as '$username'.", true); showForm(); return false; } updateStatus("Changing to database..."); $res = mysql_select_db($database, $conn); if (!$res) { - updateStatus("Can't change to database.", true); + updateStatus("Cannot change to database.", true); showForm(); return false; } updateStatus("Running database script..."); $res = runDbScript(INSTALLDIR.'/db/statusnet.sql', $conn); if ($res === false) { - updateStatus("Can't run database script.", true); + updateStatus("Cannot run database script.", true); showForm(); return false; } @@ -677,7 +677,7 @@ function Mysql_Db_installer($host, $database, $username, $password) updateStatus(sprintf("Adding %s data to database...", $name)); $res = runDbScript(INSTALLDIR.'/db/'.$scr.'.sql', $conn); if ($res === false) { - updateStatus(sprintf("Can't run %d script.", $name), true); + updateStatus(sprintf("Cannot run %d script.", $name), true); showForm(); return false; } diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php index 51ceca857..60095dace 100644 --- a/lib/attachmentlist.php +++ b/lib/attachmentlist.php @@ -71,7 +71,7 @@ class AttachmentList extends Widget /** * show the list of notices * - * "Uses up" the stream by looping through it. So, probably can't + * "Uses up" the stream by looping through it. So, probably cannot * be called twice on the same list. * * @return int count of notices listed. diff --git a/lib/noticelist.php b/lib/noticelist.php index 8b3015cc3..385da37e9 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -75,7 +75,7 @@ class NoticeList extends Widget /** * show the list of notices * - * "Uses up" the stream by looping through it. So, probably can't + * "Uses up" the stream by looping through it. So, probably cannot * be called twice on the same list. * * @return int count of notices listed. diff --git a/lib/profilelist.php b/lib/profilelist.php index bbb722701..f3eb66658 100644 --- a/lib/profilelist.php +++ b/lib/profilelist.php @@ -269,7 +269,7 @@ class ProfileListItem extends Widget $usf = new UnsubscribeForm($this->out, $this->profile); $usf->show(); } else { - // Is it a local user? can't remote sub from a list + // Is it a local user? cannot remote sub from a list // XXX: make that possible! $other = User::staticGet('id', $this->profile->id); if (!empty($other)) { diff --git a/lib/serverexception.php b/lib/serverexception.php index 7dc9765ad..6b2d55a0b 100644 --- a/lib/serverexception.php +++ b/lib/serverexception.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { /** * Class for server exceptions * - * Subclass of PHP Exception for server errors. The user typically can't fix these. + * Subclass of PHP Exception for server errors. The user typically cannot fix these. * * @category Exception * @package StatusNet diff --git a/lib/settingsaction.php b/lib/settingsaction.php index c3669868d..4193ea521 100644 --- a/lib/settingsaction.php +++ b/lib/settingsaction.php @@ -72,7 +72,7 @@ class SettingsAction extends CurrentUserDesignAction $this->clientError(_('Not logged in.')); return; } else if (!common_is_real_login()) { - // Cookie theft means that automatic logins can't + // Cookie theft means that automatic logins cannot // change important settings or see private info, and // _all_ our settings are important common_set_returnto($this->selfUrl()); diff --git a/lib/util.php b/lib/util.php index a4865c46c..dde3fb48f 100644 --- a/lib/util.php +++ b/lib/util.php @@ -576,7 +576,7 @@ function common_linkify($url) { } elseif (is_string($longurl_data)) { $longurl = $longurl_data; } else { - throw new ServerException("Can't linkify url '$url'"); + throw new ServerException("Cannot linkify url '$url'"); } } $attrs = array('href' => $canon, 'title' => $longurl, 'rel' => 'external'); diff --git a/lib/xmppqueuehandler.php b/lib/xmppqueuehandler.php index f28fc9088..8acdcafe7 100644 --- a/lib/xmppqueuehandler.php +++ b/lib/xmppqueuehandler.php @@ -43,7 +43,7 @@ class XmppQueueHandler extends QueueHandler $this->conn = jabber_connect($this->_id.$this->transport()); if (empty($this->conn)) { - $this->log(LOG_ERR, "Couldn't connect to server."); + $this->log(LOG_ERR, "Could not connect to server."); return false; } diff --git a/locale/statusnet.po b/locale/statusnet.po index 4331b906e..3ea314f34 100644 --- a/locale/statusnet.po +++ b/locale/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" +"POT-Creation-Date: 2009-11-08 22:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7310 +16,4442 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" msgstr "" -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." +#: actions/all.php:74 actions/allrss.php:68 actions/avatarbynickname.php:75 +#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 +#: actions/remotesubscribe.php:145 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." msgstr "" -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " +#: actions/all.php:84 +#, php-format +msgid "%s and friends, page %d" msgstr "" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" +msgid "%s and friends" msgstr "" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:99 #, php-format -msgid "%1$s has invited you to join them on %2$s" +msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 +#: actions/all.php:107 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 +#: actions/all.php:115 #, php-format -msgid "%1$s is now listening to your notices on %2$s." +msgid "Feed for friends of %s (Atom)" msgstr "" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more users, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:134 #, php-format -msgid "%1$s's status on %2$s" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s (%s)" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" +#: actions/all.php:165 +msgid "You and friends" msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s and friends" +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s timeline" +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +msgid "No such user!" msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." msgstr "" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." msgstr "" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." msgstr "" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" msgstr "" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" msgstr "" -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." msgstr "" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." msgstr "" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." msgstr "" -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." msgstr "" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" +#: actions/apifriendshipsshow.php:135 +msgid "Could not determine source user." msgstr "" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." +#: actions/apifriendshipsshow.php:143 +msgid "Could not find target user." msgstr "" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." msgstr "" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +msgid "Could not create aliases." msgstr "" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." msgstr "" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." msgstr "" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." msgstr "" -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." msgstr "" -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." msgstr "" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:261 +#, php-format +msgid "Description is too long (max %d chars)." msgstr "" -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." msgstr "" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" msgstr "" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" +#: actions/apigroupjoin.php:138 +#, php-format +msgid "Could not join user %s to group %s." msgstr "" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." msgstr "" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" +#: actions/apigroupleave.php:124 +#, php-format +msgid "Could not remove user %s to group %s." msgstr "" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" msgstr "" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" msgstr "" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" msgstr "" -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." msgstr "" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" +#: actions/apistatusesshow.php:138 +msgid "Status deleted." msgstr "" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." +#: actions/apistatusesupdate.php:193 +msgid "Not found" msgstr "" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." msgstr "" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" msgstr "" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinefavorites.php:119 #, php-format -msgid "Could not create OpenID form: %s" +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format -msgid "Could not follow user: %s is already on your list." +msgid "%s timeline" msgstr "" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" msgstr "" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinementions.php:116 #, php-format -msgid "Could not redirect to server: %s" +msgid "%1$s / Updates mentioning %2$s" msgstr "" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" msgstr "" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" msgstr "" -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." +#: actions/apiusershow.php:96 +msgid "Not found." msgstr "" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." +#: actions/attachment.php:73 +msgid "No such attachment." msgstr "" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." msgstr "" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." +#: actions/avatarbynickname.php:64 +msgid "No size." msgstr "" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." msgstr "" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" msgstr "" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" msgstr "" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" msgstr "" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" msgstr "" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." msgstr "" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." msgstr "" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." msgstr "" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" +#: actions/avatarsettings.php:387 +msgid "Avatar deleted." msgstr "" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" msgstr "" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" msgstr "" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" msgstr "" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" +#: actions/blockedfromgroup.php:93 +#, php-format +msgid "%s blocked profiles, page %d" msgstr "" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" msgstr "" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." msgstr "" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" msgstr "" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" msgstr "" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" +#: actions/block.php:149 +msgid "Do not block this user from this group" msgstr "" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" msgstr "" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." +#: actions/block.php:150 +msgid "Block this user from this group" msgstr "" -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" +#: actions/block.php:165 +msgid "You have already blocked this user." msgstr "" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." +#: actions/block.php:170 +msgid "Failed to save block information." msgstr "" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." +#: actions/bookmarklet.php:50 +msgid "Post to " msgstr "" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." msgstr "" -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." msgstr "" -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" msgstr "" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" msgstr "" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." msgstr "" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." msgstr "" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." msgstr "" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" msgstr "" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" +msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" +#: actions/conversation.php:99 +msgid "Conversation" msgstr "" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" msgstr "" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." msgstr "" -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." msgstr "" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" msgstr "" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" msgstr "" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" msgstr "" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" msgstr "" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" +#: actions/doc.php:69 +msgid "No such document." msgstr "" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." msgstr "" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." +#: actions/editgroup.php:253 +msgid "Could not update group." msgstr "" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" +#: actions/editgroup.php:269 +msgid "Options saved." msgstr "" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." +#: actions/emailsettings.php:60 +msgid "Email Settings" msgstr "" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" +#: actions/emailsettings.php:100 +msgid "Address" msgstr "" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." msgstr "" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" msgstr "" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" msgstr "" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" +#: actions/emailsettings.php:121 +msgid "Email Address" msgstr "" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" msgstr "" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" msgstr "" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" msgstr "" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" msgstr "" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." msgstr "" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" msgstr "" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." msgstr "" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" msgstr "" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +#: actions/emailsettings.php:333 +msgid "That is already your email address." msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." msgstr "" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" +#: actions/emailsettings.php:358 +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 "" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." msgstr "" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." msgstr "" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." msgstr "" -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." msgstr "" -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" msgstr "" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" msgstr "" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." msgstr "" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" +#: 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/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" msgstr "" -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" msgstr "" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." +#: actions/file.php:34 +msgid "No notice id" msgstr "" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" +#: actions/file.php:38 +msgid "No notice" msgstr "" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." msgstr "" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" msgstr "" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "" +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." msgstr "" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" msgstr "" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." msgstr "" -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" +#: actions/getfile.php:75 +msgid "No such file." msgstr "" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" +#: actions/getfile.php:79 +msgid "Cannot read file." msgstr "" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." +#: actions/groupblock.php:95 +msgid "User is already blocked from group." msgstr "" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." +#: actions/groupblock.php:100 +msgid "User is not a member of group." msgstr "" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" msgstr "" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +msgid "Couldn't update your design." msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +msgid "Design preferences saved." msgstr "" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" msgstr "" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." +#: actions/grouplogo.php:396 +msgid "Logo updated." msgstr "" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." msgstr "" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" msgstr "" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" msgstr "" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." +#: actions/groupmembers.php:473 +msgid "Make Admin" msgstr "" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 +#: actions/groupsearch.php:52 #, php-format -msgid "Notice feed for %s" +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 "" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#: actions/groupsearch.php:58 +msgid "Group search" msgstr "" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." msgstr "" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/groupsearch.php:82 #, php-format -msgid "Notices tagged with %s" +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" msgstr "" -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with users of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Are you not seeing any groups you like? Try " +"[searching for one](%%%%action.groupsearch%%%%) or [start your own](%%%%" +"action.newgroup%%%%)!" msgstr "" -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" +#: actions/groups.php:108 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" msgstr "" -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." msgstr "" -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." msgstr "" -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" +#: actions/imsettings.php:59 +msgid "IM Settings" msgstr "" -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your instant messages address and settings below." msgstr "" -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" +#: actions/imsettings.php:89 +msgid "IM is not available." msgstr "" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: actions/imsettings.php:100 +msgid "IM address" msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." msgstr "" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this IM address. Check your Jabber/GTalk account " +"for a message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." +#: actions/imsettings.php:124 +msgid "IM Address" msgstr "" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from users I am not subscribed to." msgstr "" -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" +#: actions/imsettings.php:285 +msgid "No Jabber ID." msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" msgstr "" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" msgstr "" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." msgstr "" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." msgstr "" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:327 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." msgstr "" -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" msgstr "" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" msgstr "" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" +#: actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" +#: actions/invite.php:112 +msgid "Invite new users" msgstr "" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" msgstr "" -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" +#: actions/invite.php:136 +msgid "These are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following e-mail addresses:" msgstr "" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" msgstr "" -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" msgstr "" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with those " +"you know and those who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with users who know about you. It is also great for meeting others who share " +"your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" msgstr "" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." msgstr "" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." msgstr "" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format -msgid "Replies to %s" +msgid "Could not remove user %s to group %s" msgstr "" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" msgstr "" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." msgstr "" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" +#: actions/login.php:110 actions/login.php:120 +msgid "Invalid or expired token." msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" +#: actions/login.php:143 +msgid "Incorrect username or password." msgstr "" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" msgstr "" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" msgstr "" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" msgstr "" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" msgstr "" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" +#: actions/login.php:263 +msgid "Lost or forgotten password?" msgstr "" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format +#: actions/login.php:282 msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/login.php:286 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." msgstr "" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." msgstr "" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" msgstr "" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." +#: actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/remotesubscribe.php:154 +msgid "No such user" msgstr "" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/newgroup.php:53 +msgid "New group" msgstr "" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" msgstr "" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" msgstr "" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." +#: actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" msgstr "" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." +#: actions/newnotice.php:69 +msgid "New notice" msgstr "" -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" +#: actions/newnotice.php:199 +msgid "Notice posted" msgstr "" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" +#: actions/noticesearch.php:78 +msgid "Text search" msgstr "" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" msgstr "" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" +#: actions/noticesearchrss.php:91 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." +#: actions/nudge.php:97 +msgid "Nudge sent!" msgstr "" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" msgstr "" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." +#: actions/oembed.php:157 +msgid "content type " msgstr "" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." +#: actions/oembed.php:160 +msgid "Only " msgstr "" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." msgstr "" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." +#: actions/opensearch.php:64 +msgid "User Search" msgstr "" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: actions/othersettings.php:60 +msgid "Other Settings" msgstr "" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/othersettings.php:71 +msgid "Manage various other options." msgstr "" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." +#: actions/othersettings.php:122 +msgid "View profile designs" msgstr "" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." msgstr "" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/outbox.php:58 #, php-format -msgid "The address \"%s\" has been confirmed for your account." +msgid "Outbox for %s - page %d" msgstr "" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" msgstr "" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +#: actions/passwordsettings.php:58 +msgid "Change password" msgstr "" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." +#: actions/passwordsettings.php:69 +msgid "Change your password." msgstr "" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." +#: actions/passwordsettings.php:103 +msgid "Old password" msgstr "" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" msgstr "" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" msgstr "" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" msgstr "" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/passwordsettings.php:112 +msgid "same as password above" msgstr "" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +#: actions/passwordsettings.php:116 +msgid "Change" msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" msgstr "" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." msgstr "" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." msgstr "" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for users on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" +#: actions/peoplesearch.php:58 +msgid "People search" msgstr "" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid user tag: %s" msgstr "" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" msgstr "" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/postnotice.php:84 +msgid "Invalid notice content" msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/profilesettings.php:60 +msgid "Profile settings" msgstr "" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so readers know more about " +"you." msgstr "" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" +#: actions/profilesettings.php:99 +msgid "Profile information" msgstr "" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/profilesettings.php:122 actions/register.php:460 #, php-format -msgid "Updates from %1$s and friends on %2$s!" +msgid "Describe yourself and your interests in %d chars" msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" +#: actions/profilesettings.php:125 actions/register.php:463 +msgid "Describe yourself and your interests" msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" msgstr "" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" msgstr "" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." +#: actions/profilesettings.php:144 +msgid "Language" msgstr "" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 #: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/profilesettings.php:221 actions/register.php:223 #, php-format -msgid "Wrong size image at '%s'" -msgstr "" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" +msgid "Bio is too long (max %d chars)." msgstr "" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" msgstr "" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." msgstr "" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." msgstr "" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." +#: actions/profilesettings.php:344 +msgid "Settings saved." msgstr "" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/public.php:83 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." +msgid "Beyond the page limit (%s)" msgstr "" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/public.php:129 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Public timeline, page %d" msgstr "" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" msgstr "" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" +#: actions/public.php:159 +msgid "Public Stream Feed (Atom)" msgstr "" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/public.php:179 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 +#: actions/public.php:186 #, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/public.php:238 #, php-format msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 +#: actions/publictagcloud.php:63 #, php-format -msgid "about %d days ago" +msgid "These are most popular recent tags on %s " msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 +#: actions/publictagcloud.php:69 #, php-format -msgid "about %d hours ago" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 +#: actions/publictagcloud.php:75 #, php-format -msgid "about %d months ago" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." msgstr "" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." msgstr "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." msgstr "" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" msgstr "" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: actions/recoverpassword.php:208 +msgid "Reset password" msgstr "" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/recoverpassword.php:209 +msgid "Recover password" msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" +#: actions/recoverpassword.php:240 +msgid "Same as password above" msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/recoverpassword.php:243 +msgid "Reset" msgstr "" -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." msgstr "" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." msgstr "" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." msgstr "" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." msgstr "" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." msgstr "" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry. Only those invited can register." msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/register.php:92 +msgid "Sorry. This is an invalid invitation code." msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" +#: actions/register.php:201 +msgid "Not a valid email address." msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" +#: actions/register.php:212 +msgid "Email address already exists." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/register.php:342 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" +#: actions/register.php:429 +msgid "6 or more characters. Required." msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" msgstr "" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" msgstr "" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/register.php:493 +msgid "My text and files are available under " msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." +#: actions/register.php:496 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" -#: actions/register.php:216 +#: actions/register.php:537 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for users](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." +#: actions/remotesubscribe.php:129 +msgid "User nickname" msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" msgstr "" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" msgstr "" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/showstream.php:154 -msgid "Send a message" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" msgstr "" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" msgstr "" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" +msgid "Replies to %s" msgstr "" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 +#: actions/replies.php:151 #, php-format -msgid "%s / Favorites from %s" +msgid "Replies feed for %s (RSS 2.0)" msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 +#: actions/replies.php:158 #, php-format -msgid "%s updates favorited by %s / %s." +msgid "Replies feed for %s (Atom)" msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 +#: actions/replies.php:198 #, php-format -msgid "%s added your notice as a favorite" +msgid "" +"This is the timeline showing replies to %s but %s has not received a notice " +"to his attention yet." msgstr "" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/replies.php:203 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +"You can engage other users in a conversation, subscribe to more users or " +"[join groups](%%action.groups%%)." msgstr "" -#: actions/twittersettings.php:27 +#: actions/replies.php:205 +#, php-format msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s's favorite notices, page %d" msgstr "" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: actions/twittersettings.php:63 -msgid "Twitter Username" +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" msgstr "" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" msgstr "" -#: actions/twittersettings.php:67 -msgid "Twitter Password" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" msgstr "" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." +#: actions/showfavorites.php:205 +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/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" msgstr "" -#: actions/twittersettings.php:137 +#: actions/showgroup.php:84 #, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgid "%s group, page %d" msgstr "" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" +#: actions/showgroup.php:218 +msgid "Group profile" msgstr "" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" msgstr "" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" msgstr "" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/showgroup.php:432 +msgid "Created" msgstr "" -#: classes/Command.php:96 classes/Command.php:113 +#: actions/showgroup.php:448 #, php-format -msgid "Subscriptions: %1$s\n" +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 "" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/showgroup.php:454 +#, 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 "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" +#: actions/showmessage.php:81 +msgid "No such message." msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/showmessage.php:108 #, php-format -msgid "Location: %s" +msgid "Message to %1$s on %2$s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 +#: actions/showmessage.php:113 #, php-format -msgid "Homepage: %s" +msgid "Message from %1$s on %2$s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" +#: actions/shownotice.php:90 +msgid "Notice deleted." msgstr "" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 +#: actions/showstream.php:73 #, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +msgid " tagged %s" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 +#: actions/showstream.php:79 #, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +msgid "%s, page %d" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/showstream.php:122 #, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/showstream.php:129 #, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." +msgid "Notice feed for %s (RSS 1.0)" msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" msgstr "" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/showstream.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/showstream.php:234 #, php-format -msgid "New private message from %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/showstream.php:239 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" +#: actions/smssettings.php:91 +msgid "SMS is not available." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +#: actions/smssettings.php:104 +msgid "SMS address" msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/smssettings.php:130 +msgid "Confirmation code" msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, php-format -msgid "%s and friends, page %d" +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: actions/smssettings.php:347 +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 "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/smssettings.php:476 +#, php-format +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 "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." msgstr "" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." +#: actions/subedit.php:83 +msgid "Could not save subscription." msgstr "" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/subscribe.php:55 +msgid "Not a local user." msgstr "" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" +#: actions/subscribe.php:69 +msgid "Subscribed" msgstr "" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" msgstr "" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" msgstr "" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/subscribers.php:63 +msgid "These are the users who have subscribed to your notices." msgstr "" -#: actions/confirmaddress.php:159 +#: actions/subscribers.php:67 #, php-format -msgid "The address \"%s\" has been " +msgid "These are the users who have subscribed to %s's notices." msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to users you know and they might " +"return the favor" msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/subscribers.php:114 #, php-format -msgid "Edit %s group" +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" +#: actions/subscriptions.php:65 +msgid "These are the users whose notices you have subscribed to." msgstr "" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the users whose notices %s has subscribed to." msgstr "" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You have not subscribed to anyone's notices right now. Try subscribing to " +"users you know. Try [user search](%%action.peoplesearch%%), look for members " +"in groups you're interested in and in our [featured users](%%action.featured%" +"%). If you are a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to users you already follow there." msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " +#: actions/subscriptions.php:194 +msgid "Jabber" msgstr "" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." +#: actions/tagother.php:33 +msgid "Not logged in" msgstr "" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." +#: actions/tagother.php:39 +msgid "No id argument." msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/tagother.php:65 #, php-format -msgid "Awaiting confirmation on this address. " +msgid "Tag %s" msgstr "" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " +#: actions/tagother.php:193 +msgid "" +"You can only tag users you are subscribed to or who are subscribed to you." msgstr "" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/tagother.php:200 +msgid "Could not save tags." msgstr "" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/tag.php:68 #, php-format -msgid "Allow %s to update my Facebook status" +msgid "Notices tagged with %s, page %d" msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" +#: actions/tagrss.php:35 +msgid "No such tag." msgstr "" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" +#: actions/twitapitrends.php:87 +msgid "API method under construction." msgstr "" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "Invite your friends to use %s" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/userauthorization.php:209 +msgid "Accept" msgstr "" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" msgstr "" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/userauthorization.php:211 +msgid "Reject" msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/userauthorization.php:212 +msgid "Reject this subscription" msgstr "" -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/userauthorization.php:225 +msgid "No authorization request!" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " +#: actions/userauthorization.php:247 +msgid "Subscription authorized" msgstr "" -#: actions/facebooksettings.php:147 -msgid "Sync preferences" +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: actions/favorited.php:67 +#: actions/userauthorization.php:296 #, php-format -msgid "Popular notices, page %d" -msgstr "" - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/featured.php:71 +#: actions/userauthorization.php:307 #, php-format -msgid "Featured users, page %d" +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/featured.php:99 +#: actions/userauthorization.php:322 #, php-format -msgid "A selection of some of the great users on %s" +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." msgstr "" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/userbyid.php:70 +msgid "No id." msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" msgstr "" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: actions/groupmembers.php:96 +#: actions/usergroups.php:64 #, php-format -msgid "%s group members, page %d" +msgid "%s groups, page %d" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." msgstr "" -#: actions/groups.php:64 +#: actions/usergroups.php:158 #, php-format -msgid "Groups, page %d" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/groups.php:90 +#: classes/File.php:137 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" +#: classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/groupsearch.php:57 +#: classes/File.php:154 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" +#: classes/Message.php:55 +msgid "Could not insert message." msgstr "" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: actions/imsettings.php:120 +#: classes/Notice.php:164 #, php-format -msgid "Jabber or GTalk address, " +msgid "DB error inserting hashtag: %s" msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " +#: classes/Notice.php:179 +msgid "Problem saving notice. Too long." msgstr "" -#: actions/imsettings.php:321 -#, php-format -msgid "A confirmation code was sent " +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." msgstr "" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: classes/Notice.php:1120 #, php-format -msgid "%s joined group %s" +msgid "DB error inserting reply: %s" msgstr "" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" msgstr "" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" +#: lib/accountsettingsaction.php:121 +msgid "Design your profile" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/newgroup.php:53 -msgid "New group" +#: lib/action.php:144 +#, php-format +msgid "%s - %s" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." +#: lib/action.php:430 +msgid "Home" msgstr "" -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: lib/action.php:432 +msgid "Account" msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" +#: lib/action.php:435 +msgid "Connect" msgstr "" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: lib/action.php:435 +msgid "Connect to services" msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/nudge.php:97 -msgid "Nudge sent!" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" +#: lib/action.php:445 +msgid "Logout" msgstr "" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/othersettings.php:60 -msgid "Other Settings" +#: lib/action.php:450 +msgid "Create an account" msgstr "" -#: actions/othersettings.php:71 -msgid "Manage various other options." +#: lib/action.php:453 +msgid "Login to the site" msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" msgstr "" -#: actions/othersettings.php:112 -msgid "Service" +#: lib/action.php:456 +msgid "Help me!" msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: lib/action.php:459 +msgid "Search" msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." +#: lib/action.php:459 +msgid "Search for users or text" msgstr "" -#: actions/passwordsettings.php:69 -msgid "Change your password." +#: lib/action.php:480 +msgid "Site notice" msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" +#: lib/action.php:612 +msgid "Page notice" msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" +#: lib/action.php:714 +msgid "Secondary site navigation" msgstr "" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " +#: lib/action.php:721 +msgid "About" msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" +#: lib/action.php:723 +msgid "FAQ" msgstr "" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: lib/action.php:730 +msgid "Privacy" msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" +#: lib/action.php:732 +msgid "Source" msgstr "" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." +#: lib/action.php:734 +msgid "Contact" msgstr "" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/public.php:220 +#: lib/action.php:767 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: actions/publictagcloud.php:63 +#: lib/action.php:771 #, php-format -msgid "These are most popular recent tags on %s " +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: lib/action.php:785 +msgid "Site content license" msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/register.php:149 -msgid "You can't register if you don't " +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " +#: lib/action.php:1062 +msgid "After" msgstr "" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " +#: lib/action.php:1070 +msgid "Before" msgstr "" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "" - -#: actions/register.php:404 -msgid "Describe yourself and your " +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/register.php:410 -msgid "Where you are, like \"City, " +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/register.php:432 -msgid " except this private data: password, " +#: lib/attachmentlist.php:278 +msgid "Provider" msgstr "" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: lib/command.php:88 #, php-format -msgid "%s group, page %d" -msgstr "" - -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "" - -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +msgid "Could not find a user with nickname %s" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: lib/command.php:126 #, php-format -msgid "Notice feed for %s group" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/showgroup.php:378 +#: lib/command.php:315 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "%1$s (%2$s)" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: lib/command.php:321 #, php-format -msgid "%s, page %d" +msgid "Location: %s" msgstr "" -#: actions/showstream.php:143 -msgid "'s profile" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" +#: lib/command.php:327 +#, php-format +msgid "About: %s" msgstr "" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" +#: lib/command.php:441 +msgid "Error saving notice." msgstr "" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/showstream.php:542 +#: lib/command.php:502 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "Subscribed to %s" msgstr "" -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" msgstr "" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/subedit.php:83 -msgid "Could not save subscription." +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/subscribe.php:55 -msgid "Not a local user." +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/subscribe.php:69 -msgid "Subscribed" +#: lib/command.php:597 +#, php-format +msgid "Could not create login token for %s" msgstr "" -#: actions/subscribers.php:50 +#: lib/command.php:602 #, php-format -msgid "%s subscribers" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " +#: lib/common.php:191 +msgid "No configuration file found. " msgstr "" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " +#: lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/tagother.php:33 -msgid "Not logged in" +#: lib/designsettings.php:105 +msgid "Upload file" msgstr "" -#: actions/tagother.php:39 -msgid "No id argument." +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: lib/designsettings.php:170 +msgid "Change colours" msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/designsettings.php:191 +msgid "Content" msgstr "" -#: actions/tagrss.php:35 -msgid "No such tag." +#: lib/designsettings.php:204 +msgid "Sidebar" msgstr "" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: lib/designsettings.php:230 +msgid "Links" msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "" - -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "" - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" +#: lib/galleryaction.php:121 +msgid "Filter tags" msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +#: lib/galleryaction.php:131 +msgid "All" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: lib/galleryaction.php:139 +msgid "Select tag to filter" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: lib/galleryaction.php:140 +msgid "Tag" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" +#: lib/galleryaction.php:143 +msgid "Go" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: lib/groupeditform.php:172 +msgid "Description" msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" msgstr "" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" +#: lib/groupnav.php:100 +msgid "Blocked" msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" +#: lib/groupnav.php:112 +msgid "Logo" msgstr "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" msgstr "" -#: lib/facebookaction.php:268 +#: lib/imagefile.php:75 #, php-format -msgid "To use the %s Facebook Application you need to login " +msgid "That file is too big. The maximum file size is %s." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." +#: lib/imagefile.php:80 +msgid "Partial upload." msgstr "" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." msgstr "" -#: lib/feedlist.php:64 -msgid "Export data" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" +#: lib/imagefile.php:118 +msgid "Lost our file." msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: lib/joinform.php:114 +msgid "Join" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: lib/leaveform.php:114 +msgid "Leave" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" msgstr "" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" msgstr "" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: lib/mailbox.php:139 msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" - -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +"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/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" +#: lib/mail.php:172 +msgid "Email address confirmation" msgstr "" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/mail.php:174 #, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/grouptagcloudsection.php:56 +#: lib/mail.php:235 #, php-format -msgid "Tags in %s group's notices" -msgstr "" - -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "" - -#: lib/joinform.php:114 -msgid "Join" -msgstr "" - -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "" - -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "" - -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "" - -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:175 +#: lib/mail.php:240 #, php-format msgid "" -"Hey, %s.\n" +"%1$s is now listening to your notices on %2$s.\n" "\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "" - -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 #, php-format -msgid "You've been nudged by %s" +msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:465 +#: lib/mail.php:288 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/mail.php:555 +#: lib/mail.php:412 #, php-format -msgid "%1$s just added your notice from %2$s" +msgid "%s status" msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "" - -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "" - -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: lib/searchgroupnav.php:82 -msgid "Notice" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: lib/mediafile.php:270 #, php-format -msgid "People %s subscribes to" +msgid " Try using another %s format." msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: lib/mediafile.php:275 #, php-format -msgid "People subscribed to %s" +msgid "%s is not a supported filetype on this server." msgstr "" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" +#: lib/noticeform.php:145 +msgid "Send a notice" msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" +#: lib/noticelist.php:478 +msgid "in context" msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: lib/noticelist.php:498 +msgid "Reply to this notice" msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" +#: lib/noticelist.php:499 +msgid "Reply" msgstr "" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format -msgid "Feed for friends of %s (RSS 2.0)" +#: lib/nudgeform.php:116 +msgid "Nudge this user" msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format -msgid "Feed for friends of %s (Atom)" +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -msgid "You and friends" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" msgstr "" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -msgid "Avatar deleted." +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" msgstr "" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/oauthstore.php:345 +msgid "Duplicate notice" msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: lib/personalgroupnav.php:99 +msgid "Personal" msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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." +#: lib/personalgroupnav.php:104 +msgid "Replies" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: lib/personalgroupnav.php:114 +msgid "Favorites" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format -msgid "Microblog by %s group" +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -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." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" msgstr "" -#: actions/groups.php:90 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +msgid "Tags in %s's notices" msgstr "" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" msgstr "" -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%s\" on %s" +#: lib/profileaction.php:126 +msgid "All subscriptions" msgstr "" -#: actions/openidlogin.php:66 -#, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" msgstr "" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" +#: lib/profileaction.php:157 +msgid "All subscribers" msgstr "" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -msgid "Public Stream Feed (Atom)" +#: lib/profileaction.php:182 +msgid "Member since" msgstr "" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +#: lib/publicgroupnav.php:78 +msgid "Public" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: lib/publicgroupnav.php:82 +msgid "User groups" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" msgstr "" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -msgid "Created" +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: lib/publicgroupnav.php:92 +msgid "Popular" msgstr "" -#: actions/showstream.php:147 -msgid "Your profile" +#: lib/searchaction.php:120 +msgid "Search site" msgstr "" -#: actions/showstream.php:149 -#, php-format -msgid "%s's profile" +#: lib/searchaction.php:162 +msgid "Search help" msgstr "" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, php-format -msgid "Notice feed for %s (RSS 2.0)" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, php-format -msgid "Notice feed for %s (Atom)" +#: lib/searchgroupnav.php:82 +msgid "Notice" msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, php-format -msgid "FOAF for %s" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -msgid "Edit Avatar" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" msgstr "" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -msgid "Edit profile settings" +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: lib/subgroupnav.php:83 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgid "People %s subscribes to" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -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." +#: lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" msgstr "" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: lib/subgroupnav.php:99 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +msgid "Groups %s is a member of" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -msgid "No such user!" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: lib/subs.php:52 +msgid "User has blocked you." msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +#: lib/subs.php:124 +msgid "Not subscribed!." msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: lib/tagcloudsection.php:56 +msgid "None" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: lib/feed.php:85 -msgid "RSS 1.0" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: lib/userprofile.php:116 +msgid "Edit Avatar" msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." +#: lib/userprofile.php:248 +msgid "Edit profile settings" msgstr "" -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +#: lib/util.php:844 +msgid "a few seconds ago" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: lib/util.php:846 +msgid "about a minute ago" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: lib/util.php:848 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "" - -#: lib/section.php:106 -msgid "More..." +msgid "about %d minutes ago" msgstr "" -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +#: lib/util.php:850 +msgid "about an hour ago" msgstr "" -#: actions/all.php:85 actions/all.php:132 +#: lib/util.php:852 #, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +msgid "about %d hours ago" msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/util.php:854 +msgid "about a day ago" msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: lib/util.php:856 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "about %d days ago" msgstr "" -#: actions/attachment.php:73 -msgid "No such attachment." +#: lib/util.php:858 +msgid "about a month ago" msgstr "" -#: actions/block.php:149 -msgid "Do not block this user from this group" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" msgstr "" -#: actions/block.php:150 -msgid "Block this user from this group" +#: lib/util.php:862 +msgid "about a year ago" msgstr "" -#: actions/blockedfromgroup.php:90 +#: lib/webcolor.php:82 #, php-format -msgid "%s blocked profiles" +msgid "%s is not a valid color!" msgstr "" -#: actions/blockedfromgroup.php:93 +#: lib/webcolor.php:123 #, php-format -msgid "%s blocked profiles, page %d" -msgstr "" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" -msgstr "" - -#: actions/conversation.php:99 -msgid "Conversation" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -msgid "Do not delete this notice" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." +#: scripts/maildaemon.php:53 +msgid "Not a registered user." msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." msgstr "" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "" - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -msgid "Could not create aliases." -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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -msgid "No notice id" -msgstr "" - -#: actions/file.php:38 -msgid "No notice" -msgstr "" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "" - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -msgid "User is already blocked from group." -msgstr "" - -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -msgid "Couldn't update your design." -msgstr "" - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." -msgstr "" - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "" - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -msgid "Couldn't save file." -msgstr "" - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: actions/recoverpassword.php:188 -msgid "Password recover" -msgstr "" - -#: actions/register.php:86 actions/register.php:92 -msgid "Sorry, invalid invitation code." -msgstr "" - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" -msgstr "" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, php-format -msgid "%s's favorite notices, page %d" -msgstr "" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -msgid "Not a local notice" -msgstr "" - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "" - -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -msgid "Could not determine source user." -msgstr "" - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -msgid "Could not find target user." -msgstr "" - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -msgid "Reject this subscription" -msgstr "" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." -msgstr "" - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -msgid "Design your profile" -msgstr "" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -msgid "Upload file" -msgstr "" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -msgid "Blocked" -msgstr "" - -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" -msgstr "" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, php-format -msgid "%s is not a valid color!" -msgstr "" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -msgid "No such page" -msgstr "" - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "" - -#: actions/apifriendshipsdestroy.php:109 -msgid "Could not unfollow user: User not found." -msgstr "" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "" - -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." -msgstr "" - -#: actions/apigroupjoin.php:138 -#, php-format -msgid "Could not join user %s to group %s." -msgstr "" - -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." -msgstr "" - -#: actions/apigroupleave.php:124 -#, php-format -msgid "Could not remove user %s to group %s." -msgstr "" - -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "" - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "" - -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." -msgstr "" - -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - -#: actions/getfile.php:75 -msgid "No such file." -msgstr "" - -#: actions/getfile.php:79 -msgid "Cannot read file." -msgstr "" - -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - -#: actions/imsettings.php:89 -msgid "IM is not available." -msgstr "" - -#: actions/login.php:259 actions/login.php:286 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - -#: actions/noticesearchrss.php:91 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "" - -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -msgid "Describe yourself and your interests" -msgstr "" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, php-format -msgid "Bio is too long (max %d chars)." -msgstr "" - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "" - -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "" - -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "" - -#: actions/smssettings.php:91 -msgid "SMS is not available." -msgstr "" - -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - -#: lib/action.php:435 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:785 -msgid "Site content license" -msgstr "" - -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "" - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, php-format -msgid "Reply to %s sent" -msgstr "" - -#: lib/command.php:441 -msgid "Error saving notice." -msgstr "" - -#: lib/common.php:191 -msgid "No configuration file found. " -msgstr "" - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "" - -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "" - -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "" - -#: actions/login.php:110 actions/login.php:120 -msgid "Invalid or expired token." -msgstr "" - -#: lib/command.php:597 -#, php-format -msgid "Could not create login token for %s" -msgstr "" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "" - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/plugins/Facebook/facebook/facebookapi_php5_restlib.php b/plugins/Facebook/facebook/facebookapi_php5_restlib.php index 55cb7fb86..e2a6fe88b 100755 --- a/plugins/Facebook/facebook/facebookapi_php5_restlib.php +++ b/plugins/Facebook/facebook/facebookapi_php5_restlib.php @@ -2951,7 +2951,7 @@ function toggleDisplay(id, type) { /** - * Bans a list of users from the app. Banned users can't + * Bans a list of users from the app. Banned users cannot * access the app's canvas page and forums. * * @param array $uids an array of user ids diff --git a/plugins/Facebook/facebook/jsonwrapper/JSON/JSON.php b/plugins/Facebook/facebook/jsonwrapper/JSON/JSON.php index 0cddbddb4..92542b47d 100644 --- a/plugins/Facebook/facebook/jsonwrapper/JSON/JSON.php +++ b/plugins/Facebook/facebook/jsonwrapper/JSON/JSON.php @@ -124,7 +124,7 @@ class Services_JSON * "{...}" syntax creates associative arrays * instead of objects in decode(). * - SERVICES_JSON_SUPPRESS_ERRORS: error suppression. - * Values which can't be encoded (e.g. resources) + * Values which cannot be encoded (e.g. resources) * appear as NULL instead of throwing errors. * By default, a deeply-nested resource will * bubble up with an error, so all return values diff --git a/plugins/Facebook/facebookaction.php b/plugins/Facebook/facebookaction.php index a10fdf90d..1d8b5217b 100644 --- a/plugins/Facebook/facebookaction.php +++ b/plugins/Facebook/facebookaction.php @@ -513,7 +513,7 @@ class FacebookNoticeList extends NoticeList /** * show the list of notices * - * "Uses up" the stream by looping through it. So, probably can't + * "Uses up" the stream by looping through it. So, probably cannot * be called twice on the same list. * * @return int count of notices listed. diff --git a/plugins/Facebook/facebookhome.php b/plugins/Facebook/facebookhome.php index 91c0cc6b8..ee6e6620b 100644 --- a/plugins/Facebook/facebookhome.php +++ b/plugins/Facebook/facebookhome.php @@ -108,7 +108,7 @@ class FacebookhomeAction extends FacebookAction $user = User::staticGet('nickname', $nickname); if (!$user) { - $this->showLoginForm(_("Server error - couldn't get user!")); + $this->showLoginForm(_("Server error. Could not get user.")); } $flink = DB_DataObject::factory('foreign_link'); diff --git a/plugins/LinkbackPlugin.php b/plugins/LinkbackPlugin.php index 915d15c07..bc433b896 100644 --- a/plugins/LinkbackPlugin.php +++ b/plugins/LinkbackPlugin.php @@ -125,7 +125,7 @@ class LinkbackPlugin extends Plugin if (!extension_loaded('xmlrpc')) { if (!dl('xmlrpc.so')) { - common_log(LOG_ERR, "Can't pingback; xmlrpc extension not available."); + common_log(LOG_ERR, "Cannot pingback; xmlrpc extension not available."); } } diff --git a/plugins/Meteor/MeteorPlugin.php b/plugins/Meteor/MeteorPlugin.php index 5b345d7c2..f3cbc3eea 100644 --- a/plugins/Meteor/MeteorPlugin.php +++ b/plugins/Meteor/MeteorPlugin.php @@ -85,7 +85,7 @@ class MeteorPlugin extends RealtimePlugin // May throw an exception. $this->_socket = stream_socket_client("tcp://{$controlserver}:{$this->controlport}"); if (!$this->_socket) { - throw new Exception("Couldn't connect to {$controlserver} on {$this->controlport}"); + throw new Exception("Could not connect to {$controlserver} on {$this->controlport}"); } } diff --git a/plugins/OpenID/openid.php b/plugins/OpenID/openid.php index ff7a93899..cd042226b 100644 --- a/plugins/OpenID/openid.php +++ b/plugins/OpenID/openid.php @@ -36,7 +36,7 @@ function oid_store() { static $store = null; if (!$store) { - # Can't be called statically + # Cannot be called statically $user = new User(); $conn = $user->getDatabaseConnection(); $store = new Auth_OpenID_MySQLStore($conn); @@ -192,7 +192,7 @@ function oid_authenticate($openid_url, $returnto, $immediate=false) $form_html = preg_replace('/&/', '&', $form_html); - // Display an error if the form markup couldn't be generated; + // Display an error if the form markup could not be generated; // otherwise, render the HTML. if (Auth_OpenID::isFailure($form_html)) { common_server_error(sprintf(_('Could not create OpenID form: %s'), $form_html->message)); diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index 671e3c7af..6a155b301 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -126,7 +126,7 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon $conn->disconnect(); - // XXX: Couldn't find a less brutal way to blow + // XXX: Could not find a less brutal way to blow // away a cached connection global $_DB_DATAOBJECT; @@ -188,7 +188,7 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon if (empty($more_friends)) { common_log(LOG_WARNING, $this->name() . - " - Couldn't retrieve page $i " . + " - Could not retrieve page $i " . "of Twitter user $flink->foreign_id friends."); continue; } else { @@ -222,11 +222,11 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon if (!save_twitter_user($friend_id, $friend_name)) { common_log(LOG_WARNING, $this-name() . - " - Couldn't save $screen_name's friend, $friend_name."); + " - Could not save $screen_name's friend, $friend_name."); continue; } - // Check to see if there's a related local user + // Check to see if there is a related local user $friend_flink = Foreign_link::getByForeignID($friend_id, TWITTER_SERVICE); diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index b5428316b..ab610e553 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -147,7 +147,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $conn->disconnect(); - // XXX: Couldn't find a less brutal way to blow + // XXX: Could not find a less brutal way to blow // away a cached connection global $_DB_DATAOBJECT; @@ -158,7 +158,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon { if (empty($flink)) { common_log(LOG_WARNING, $this->name() . - " - Can't retrieve Foreign_link for foreign ID $fid"); + " - Cannot retrieve Foreign_link for foreign ID $fid"); return; } @@ -458,7 +458,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $profile = Profile::staticGet($profile_id); if (empty($profile)) { - common_debug($this->name() . " - Couldn't get profile: $profile_id!"); + common_debug($this->name() . " - Could not get profile: $profile_id!"); return; } @@ -537,7 +537,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $ok = file_put_contents($avatarfile, $response->getBody()); if (!$ok) { common_log(LOG_WARNING, $this->name() . - " - Couldn't open file $filename"); + " - Could not open file $filename"); return false; } } else { diff --git a/plugins/UserFlag/flagprofile.php b/plugins/UserFlag/flagprofile.php index c72b74c6a..84c343c48 100644 --- a/plugins/UserFlag/flagprofile.php +++ b/plugins/UserFlag/flagprofile.php @@ -135,7 +135,7 @@ class FlagprofileAction extends Action $ufp->created = common_sql_now(); if (!$ufp->insert()) { - throw new ServerException(sprintf(_("Couldn't flag profile '%s' with flag '%s'."), + throw new ServerException(sprintf(_("Could not flag profile '%s' with flag '%s'."), $this->profile->nickname, $this->flag)); } diff --git a/scripts/console.php b/scripts/console.php index 41dd43f28..2413f5079 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -90,7 +90,7 @@ function readline_emulation($prompt) if ($retval == 0) { return $line; } elseif ($retval == 127) { - // Couldn't execute bash even though we thought we saw it. + // Could not execute bash even though we thought we saw it. // Shell probably spit out an error message, sorry :( // Fall through to fgets()... } else { diff --git a/scripts/createsim.php b/scripts/createsim.php index 1266a9700..592853f86 100644 --- a/scripts/createsim.php +++ b/scripts/createsim.php @@ -85,7 +85,7 @@ function newSub($i) $from = User::staticGet('nickname', $fromnick); if (empty($from)) { - throw new Exception("Can't find user '$fromnick'."); + throw new Exception("Cannot find user '$fromnick'."); } $t = rand(0, $i - 1); @@ -102,7 +102,7 @@ function newSub($i) $to = User::staticGet('nickname', $tunic); if (empty($to)) { - throw new Exception("Can't find user '$tunic'."); + throw new Exception("Cannot find user '$tunic'."); } subs_subscribe_to($from, $to); diff --git a/scripts/deleteuser.php b/scripts/deleteuser.php index 52389123c..39331f1a8 100644 --- a/scripts/deleteuser.php +++ b/scripts/deleteuser.php @@ -39,14 +39,14 @@ if (have_option('i', 'id')) { $id = get_option_value('i', 'id'); $user = User::staticGet('id', $id); if (empty($user)) { - print "Can't find user with ID $id\n"; + print "Cannot find user with ID $id\n"; exit(1); } } else if (have_option('n', 'nickname')) { $nickname = get_option_value('n', 'nickname'); $user = User::staticGet('nickname', $nickname); if (empty($user)) { - print "Can't find user with nickname '$nickname'\n"; + print "Cannot find user with nickname '$nickname'\n"; exit(1); } } else { diff --git a/scripts/fixup_utf8.php b/scripts/fixup_utf8.php index 5a9fba7c3..5581633ec 100755 --- a/scripts/fixup_utf8.php +++ b/scripts/fixup_utf8.php @@ -76,7 +76,7 @@ class UTF8FixerUpper $succ = mysqli_set_charset($conn, $charset); if (!$succ) { - echo "ERROR: couldn't set charset\n"; + echo "ERROR: Could not set charset\n"; $db->disconnect(); return NULL; } diff --git a/scripts/makegroupadmin.php b/scripts/makegroupadmin.php index a68798451..07f980d58 100644 --- a/scripts/makegroupadmin.php +++ b/scripts/makegroupadmin.php @@ -67,7 +67,7 @@ try { $member->created = common_sql_now(); if (!$member->insert()) { - throw new Exception("Can't add '$nickname' to '$groupname'."); + throw new Exception("Cannot add '$nickname' to '$groupname'."); } } @@ -80,7 +80,7 @@ try { $member->is_admin = 1; if (!$member->update($orig)) { - throw new Exception("Can't make '$nickname' admin of '$groupname'."); + throw new Exception("Cannot make '$nickname' admin of '$groupname'."); } } catch (Exception $e) { diff --git a/scripts/registeruser.php b/scripts/registeruser.php index 5d9c8862d..8aab325b7 100644 --- a/scripts/registeruser.php +++ b/scripts/registeruser.php @@ -60,7 +60,7 @@ try { 'fullname' => $fullname)); if (empty($user)) { - throw new Exception("Can't register user '$nickname' with password '$password' and fullname '$fullname'."); + throw new Exception("Cannot register user '$nickname' with password '$password' and fullname '$fullname'."); } if (!empty($email)) { @@ -71,7 +71,7 @@ try { if (!$user->updateKeys($orig)) { print "Failed!\n"; - throw new Exception("Can't update email address."); + throw new Exception("Cannot update email address."); } } diff --git a/scripts/showcache.php b/scripts/showcache.php index f17979572..6b00a8f7b 100644 --- a/scripts/showcache.php +++ b/scripts/showcache.php @@ -58,7 +58,7 @@ print "Checking key '$k'...\n"; $c = common_memcache(); if (empty($c)) { - die("Can't initialize cache object!\n"); + die("Cannot initialize cache object!\n"); } $obj = $c->get($k); diff --git a/scripts/sitemap.php b/scripts/sitemap.php index f8c392146..ee5d33e1e 100755 --- a/scripts/sitemap.php +++ b/scripts/sitemap.php @@ -377,11 +377,11 @@ function write_file($path, $data) } if (($fh_out = fopen($path,'w')) === false) { - error("couldn't open $path for writing."); + error("Could not open $path for writing."); } if (fwrite($fh_out, $data) === false) { - error("couldn't write to $path."); + error("Could not write to $path."); } } diff --git a/scripts/update_translations.php b/scripts/update_translations.php index 580c472ee..8d4c9d3d2 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -98,7 +98,7 @@ foreach ($languages as $language) { $new_file = curl_get_file($file_url); if ($new_file === FALSE) { - echo "Couldn't retrieve .po file for $code: $file_url\n"; + echo "Could not retrieve .po file for $code: $file_url\n"; continue; } -- cgit v1.2.3-54-g00ecf From c7961fe6dc033d1d40ab7d7f9bb994492ae4ea7b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 8 Nov 2009 23:26:16 +0100 Subject: Revert "More specifics on 'address'" This reverts commit 1872d07602f50b4991d0da26aca3a5d775338e47. "instant messages address" is very awkward phrasing; prefer not to be changing UI in such ways while updating localisations. --- actions/imsettings.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/actions/imsettings.php b/actions/imsettings.php index b5bf72f45..f57933b43 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -69,7 +69,7 @@ class ImsettingsAction extends ConnectSettingsAction { return _('You can send and receive notices through '. 'Jabber/GTalk [instant messages](%%doc.im%%). '. - 'Configure your instant messages address and settings below.'); + 'Configure your address and settings below.'); } /** @@ -97,7 +97,7 @@ class ImsettingsAction extends ConnectSettingsAction 'action' => common_local_url('imsettings'))); $this->elementStart('fieldset', array('id' => 'settings_im_address')); - $this->element('legend', null, _('IM address')); + $this->element('legend', null, _('Address')); $this->hidden('token', common_session_token()); if ($user->jabber) { @@ -111,7 +111,7 @@ class ImsettingsAction extends ConnectSettingsAction if ($confirm) { $this->element('p', 'form_unconfirmed', $confirm->address); $this->element('p', 'form_note', - sprintf(_('Awaiting confirmation on this IM address. '. + sprintf(_('Awaiting confirmation on this address. '. 'Check your Jabber/GTalk account for a '. 'message with further instructions. '. '(Did you add %s to your buddy list?)'), -- cgit v1.2.3-54-g00ecf From fc5002015b2a9e16a3c6b9992d55b45c73a8d2fb Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 8 Nov 2009 23:28:51 +0100 Subject: Revert "* [Cc]an't -> [Cc]annot" This reverts commit 0ab17f382b9993ada3d12d4cdace72cca53fb545. --- actions/emailsettings.php | 4 +- actions/smssettings.php | 2 +- classes/File.php | 2 +- classes/Notice.php | 4 +- extlib/Auth/OpenID/Consumer.php | 2 +- extlib/Auth/OpenID/Discover.php | 4 +- extlib/Auth/OpenID/FileStore.php | 2 +- extlib/DB.php | 2 +- extlib/DB/DataObject/Generator.php | 4 +- extlib/DB/dbase.php | 6 +- extlib/DB/fbsql.php | 8 +- extlib/DB/ibase.php | 6 +- extlib/DB/ifx.php | 12 +- extlib/DB/msql.php | 8 +- extlib/DB/mssql.php | 10 +- extlib/DB/mysql.php | 14 +- extlib/DB/mysqli.php | 14 +- extlib/DB/oci8.php | 10 +- extlib/DB/odbc.php | 8 +- extlib/DB/pgsql.php | 10 +- extlib/DB/sqlite.php | 8 +- extlib/DB/sybase.php | 12 +- extlib/HTTP/Request2/Adapter/Socket.php | 1940 ++--- extlib/MIME/Type.php | 4 +- extlib/MIME/Type/Extension.php | 4 +- extlib/Mail/mail.php | 2 +- extlib/Mail/sendmail.php | 2 +- extlib/Net/LDAP2/Entry.php | 2 +- extlib/Net/LDAP2/Filter.php | 2 +- extlib/System/Command.php | 2 +- extlib/markdown.php | 2 +- install.php | 16 +- lib/attachmentlist.php | 2 +- lib/noticelist.php | 2 +- lib/profilelist.php | 2 +- lib/serverexception.php | 2 +- lib/settingsaction.php | 2 +- lib/util.php | 2 +- lib/xmppqueuehandler.php | 2 +- locale/statusnet.po | 7824 +++++++++++++------- .../Facebook/facebook/facebookapi_php5_restlib.php | 2 +- .../Facebook/facebook/jsonwrapper/JSON/JSON.php | 2 +- plugins/Facebook/facebookaction.php | 2 +- plugins/Facebook/facebookhome.php | 2 +- plugins/LinkbackPlugin.php | 2 +- plugins/Meteor/MeteorPlugin.php | 2 +- plugins/OpenID/openid.php | 4 +- .../TwitterBridge/daemons/synctwitterfriends.php | 8 +- .../TwitterBridge/daemons/twitterstatusfetcher.php | 8 +- plugins/UserFlag/flagprofile.php | 2 +- scripts/console.php | 2 +- scripts/createsim.php | 4 +- scripts/deleteuser.php | 4 +- scripts/fixup_utf8.php | 2 +- scripts/makegroupadmin.php | 4 +- scripts/registeruser.php | 4 +- scripts/showcache.php | 2 +- scripts/sitemap.php | 4 +- scripts/update_translations.php | 2 +- 59 files changed, 6448 insertions(+), 3580 deletions(-) diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 715457eab..67b991cdc 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -452,7 +452,7 @@ class EmailsettingsAction extends AccountSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Could not update user record.")); + $this->serverError(_("Couldn't update user record.")); } $this->showForm(_('Incoming email address removed.'), true); @@ -474,7 +474,7 @@ class EmailsettingsAction extends AccountSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Could not update user record.")); + $this->serverError(_("Couldn't update user record.")); } $this->showForm(_('New incoming email address added.'), true); diff --git a/actions/smssettings.php b/actions/smssettings.php index 4debe1967..9fa7f62fb 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -525,7 +525,7 @@ class SmssettingsAction extends ConnectSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Could not update user record.")); + $this->serverError(_("Couldn't update user record.")); } $this->showForm(_('Incoming email address removed.'), true); diff --git a/classes/File.php b/classes/File.php index dd0c3227e..e04a9d525 100644 --- a/classes/File.php +++ b/classes/File.php @@ -99,7 +99,7 @@ class File extends Memcached_DataObject } elseif (is_string($redir_data)) { $redir_url = $redir_data; } else { - throw new ServerException("Cannot process url '$given_url'"); + throw new ServerException("Can't process url '$given_url'"); } // TODO: max field length if ($redir_url === $given_url || strlen($redir_url) > 255) { diff --git a/classes/Notice.php b/classes/Notice.php index 862d4c762..9886875cb 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -680,7 +680,7 @@ class Notice extends Memcached_DataObject return Notice::getStreamDirect($qry, $offset, $limit, null, null, $order, null); } - # Get the cache; if we cannot, just go to the DB + # Get the cache; if we can't, just go to the DB $cache = common_memcache(); @@ -1364,7 +1364,7 @@ class Notice extends Memcached_DataObject } } - // If it's not a "low bandwidth" source (one where you cannot set + // If it's not a "low bandwidth" source (one where you can't set // a reply_to argument), we return. This is mostly web and API // clients. diff --git a/extlib/Auth/OpenID/Consumer.php b/extlib/Auth/OpenID/Consumer.php index c75ef4c06..500890b65 100644 --- a/extlib/Auth/OpenID/Consumer.php +++ b/extlib/Auth/OpenID/Consumer.php @@ -1059,7 +1059,7 @@ class Auth_OpenID_GenericConsumer { } } - // Fragments do not influence discovery, so we cannot compare a + // Fragments do not influence discovery, so we can't compare a // claimed identifier with a fragment to discovered // information. list($defragged_claimed_id, $_) = diff --git a/extlib/Auth/OpenID/Discover.php b/extlib/Auth/OpenID/Discover.php index 9bb3ee357..62aeb1d2b 100644 --- a/extlib/Auth/OpenID/Discover.php +++ b/extlib/Auth/OpenID/Discover.php @@ -515,7 +515,7 @@ function Auth_OpenID_discoverXRI($iname, &$fetcher) function Auth_OpenID_discover($uri, &$fetcher) { - // If the fetcher (i.e., PHP) doesn't support SSL, we cannot do + // If the fetcher (i.e., PHP) doesn't support SSL, we can't do // discovery on an HTTPS URL. if ($fetcher->isHTTPS($uri) && !$fetcher->supportsSSL()) { return array($uri, array()); @@ -527,7 +527,7 @@ function Auth_OpenID_discover($uri, &$fetcher) $result = Auth_OpenID_discoverURI($uri, $fetcher); } - // If the fetcher doesn't support SSL, we cannot interact with + // If the fetcher doesn't support SSL, we can't interact with // HTTPS server URLs; remove those endpoints from the list. if (!$fetcher->supportsSSL()) { $http_endpoints = array(); diff --git a/extlib/Auth/OpenID/FileStore.php b/extlib/Auth/OpenID/FileStore.php index d9962e153..29d8d20e7 100644 --- a/extlib/Auth/OpenID/FileStore.php +++ b/extlib/Auth/OpenID/FileStore.php @@ -496,7 +496,7 @@ class Auth_OpenID_FileStore extends Auth_OpenID_OpenIDStore { return true; } else { - // Could not open directory. + // Couldn't open directory. return false; } } diff --git a/extlib/DB.php b/extlib/DB.php index 4ef66f66f..a511979e6 100644 --- a/extlib/DB.php +++ b/extlib/DB.php @@ -1341,7 +1341,7 @@ class DB_result * returning the total number of rows that would have been returned, * rather than the real number. As a result, we'll just do the limit * calculations for fbsql in the same way as a database with emulated - * limits. Unfortunately, we cannot just do this in DB_fbsql::numRows() + * limits. Unfortunately, we can't just do this in DB_fbsql::numRows() * because that only gets the result resource, rather than the full * DB_Result object. */ if (($this->dbh->features['limit'] === 'emulate' diff --git a/extlib/DB/DataObject/Generator.php b/extlib/DB/DataObject/Generator.php index e14e3ef7f..ff6e42c7d 100644 --- a/extlib/DB/DataObject/Generator.php +++ b/extlib/DB/DataObject/Generator.php @@ -632,7 +632,7 @@ class DB_DataObject_Generator extends DB_DataObject echo "*****************************************************************\n". "** WARNING COLUMN NAME UNUSABLE **\n". "** Found column '{$t->name}', of type '{$t->type}' **\n". - "** Since this column name cannot be converted to a php variable **\n". + "** Since this column name can't be converted to a php variable **\n". "** name, and the whole idea of mapping would result in a mess **\n". "** This column has been ignored... **\n". "*****************************************************************\n"; @@ -910,7 +910,7 @@ class DB_DataObject_Generator extends DB_DataObject echo "*****************************************************************\n". "** WARNING COLUMN NAME UNUSABLE **\n". "** Found column '{$t->name}', of type '{$t->type}' **\n". - "** Since this column name cannot be converted to a php variable **\n". + "** Since this column name can't be converted to a php variable **\n". "** name, and the whole idea of mapping would result in a mess **\n". "** This column has been ignored... **\n". "*****************************************************************\n"; diff --git a/extlib/DB/dbase.php b/extlib/DB/dbase.php index 15d259c4d..67afc897d 100644 --- a/extlib/DB/dbase.php +++ b/extlib/DB/dbase.php @@ -287,7 +287,7 @@ class DB_dbase extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -352,7 +352,7 @@ class DB_dbase extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -373,7 +373,7 @@ class DB_dbase extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/fbsql.php b/extlib/DB/fbsql.php index 48ff705cf..4de4078f7 100644 --- a/extlib/DB/fbsql.php +++ b/extlib/DB/fbsql.php @@ -262,7 +262,7 @@ class DB_fbsql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -309,7 +309,7 @@ class DB_fbsql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -376,7 +376,7 @@ class DB_fbsql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -401,7 +401,7 @@ class DB_fbsql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/ibase.php b/extlib/DB/ibase.php index 1e444d634..ee19c5589 100644 --- a/extlib/DB/ibase.php +++ b/extlib/DB/ibase.php @@ -353,7 +353,7 @@ class DB_ibase extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -402,7 +402,7 @@ class DB_ibase extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -449,7 +449,7 @@ class DB_ibase extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/ifx.php b/extlib/DB/ifx.php index dcb3dbd3e..baa6f2867 100644 --- a/extlib/DB/ifx.php +++ b/extlib/DB/ifx.php @@ -147,7 +147,7 @@ class DB_ifx extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it cannot actually be designated + * {@internal While this is private, it can't actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -328,7 +328,7 @@ class DB_ifx extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -387,7 +387,7 @@ class DB_ifx extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -411,7 +411,7 @@ class DB_ifx extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -555,7 +555,7 @@ class DB_ifx extends DB_common * * If analyzing a query result and the result has duplicate field names, * an error will be raised saying - * cannot distinguish duplicate field names. + * can't distinguish duplicate field names. * * @param object|string $result DB_result object from a query or a * string containing the name of a table. @@ -604,7 +604,7 @@ class DB_ifx extends DB_common $count = @ifx_num_fields($id); if (count($flds) != $count) { - return $this->raiseError("cannot distinguish duplicate field names"); + return $this->raiseError("can't distinguish duplicate field names"); } if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE) { diff --git a/extlib/DB/msql.php b/extlib/DB/msql.php index ee64f932f..34854f472 100644 --- a/extlib/DB/msql.php +++ b/extlib/DB/msql.php @@ -288,7 +288,7 @@ class DB_msql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * PHP's mSQL extension did weird things with NULL values prior to PHP @@ -339,7 +339,7 @@ class DB_msql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -360,7 +360,7 @@ class DB_msql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -385,7 +385,7 @@ class DB_msql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/mssql.php b/extlib/DB/mssql.php index 1aad75671..511a2b686 100644 --- a/extlib/DB/mssql.php +++ b/extlib/DB/mssql.php @@ -156,7 +156,7 @@ class DB_mssql extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it cannot actually be designated + * {@internal While this is private, it can't actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -324,7 +324,7 @@ class DB_mssql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -371,7 +371,7 @@ class DB_mssql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -392,7 +392,7 @@ class DB_mssql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -417,7 +417,7 @@ class DB_mssql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/mysql.php b/extlib/DB/mysql.php index bfe34dbe8..c67254520 100644 --- a/extlib/DB/mysql.php +++ b/extlib/DB/mysql.php @@ -139,7 +139,7 @@ class DB_mysql extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it cannot actually be designated + * {@internal While this is private, it can't actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -359,7 +359,7 @@ class DB_mysql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -411,7 +411,7 @@ class DB_mysql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -432,7 +432,7 @@ class DB_mysql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -457,7 +457,7 @@ class DB_mysql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -722,7 +722,7 @@ class DB_mysql extends DB_common return $result; } if ($result == 0) { - // Failed to get the lock, cannot do the conversion, bail + // Failed to get the lock, can't do the conversion, bail // with a DB_ERROR_NOT_LOCKED error return $this->mysqlRaiseError(DB_ERROR_NOT_LOCKED); } @@ -757,7 +757,7 @@ class DB_mysql extends DB_common * Quotes a string so it can be safely used as a table or column name * (WARNING: using names that require this is a REALLY BAD IDEA) * - * WARNING: Older versions of MySQL cannot handle the backtick + * WARNING: Older versions of MySQL can't handle the backtick * character (`) in table or column names. * * @param string $str identifier name to be quoted diff --git a/extlib/DB/mysqli.php b/extlib/DB/mysqli.php index b6196dfcc..c6941b170 100644 --- a/extlib/DB/mysqli.php +++ b/extlib/DB/mysqli.php @@ -142,7 +142,7 @@ class DB_mysqli extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it cannot actually be designated + * {@internal While this is private, it can't actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -434,7 +434,7 @@ class DB_mysqli extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -486,7 +486,7 @@ class DB_mysqli extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -507,7 +507,7 @@ class DB_mysqli extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -532,7 +532,7 @@ class DB_mysqli extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -796,7 +796,7 @@ class DB_mysqli extends DB_common return $result; } if ($result == 0) { - // Failed to get the lock, cannot do the conversion, bail + // Failed to get the lock, can't do the conversion, bail // with a DB_ERROR_NOT_LOCKED error return $this->mysqliRaiseError(DB_ERROR_NOT_LOCKED); } @@ -832,7 +832,7 @@ class DB_mysqli extends DB_common * Quotes a string so it can be safely used as a table or column name * (WARNING: using names that require this is a REALLY BAD IDEA) * - * WARNING: Older versions of MySQL cannot handle the backtick + * WARNING: Older versions of MySQL can't handle the backtick * character (`) in table or column names. * * @param string $str identifier name to be quoted diff --git a/extlib/DB/oci8.php b/extlib/DB/oci8.php index 6ad36643a..d30794871 100644 --- a/extlib/DB/oci8.php +++ b/extlib/DB/oci8.php @@ -251,7 +251,7 @@ class DB_oci8 extends DB_common $char); $error = OCIError(); if (!empty($error) && $error['code'] == 12541) { - // Could not find TNS listener. Try direct connection. + // Couldn't find TNS listener. Try direct connection. $this->connection = @$connect_function($dsn['username'], $dsn['password'], null, @@ -368,7 +368,7 @@ class DB_oci8 extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -415,7 +415,7 @@ class DB_oci8 extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -468,7 +468,7 @@ class DB_oci8 extends DB_common * is turned on. * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -511,7 +511,7 @@ class DB_oci8 extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/odbc.php b/extlib/DB/odbc.php index b0dc83ab5..eba43659a 100644 --- a/extlib/DB/odbc.php +++ b/extlib/DB/odbc.php @@ -301,7 +301,7 @@ class DB_odbc extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -356,7 +356,7 @@ class DB_odbc extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -377,7 +377,7 @@ class DB_odbc extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -427,7 +427,7 @@ class DB_odbc extends DB_common * a DB_Error object for DB_ERROR_UNSUPPORTED is returned. * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/pgsql.php b/extlib/DB/pgsql.php index 498ef8ade..6030bb4c1 100644 --- a/extlib/DB/pgsql.php +++ b/extlib/DB/pgsql.php @@ -115,7 +115,7 @@ class DB_pgsql extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it cannot actually be designated + * {@internal While this is private, it can't actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -397,7 +397,7 @@ class DB_pgsql extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -445,7 +445,7 @@ class DB_pgsql extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -535,7 +535,7 @@ class DB_pgsql extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -560,7 +560,7 @@ class DB_pgsql extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/sqlite.php b/extlib/DB/sqlite.php index 96d5c934a..5c4b396e5 100644 --- a/extlib/DB/sqlite.php +++ b/extlib/DB/sqlite.php @@ -334,7 +334,7 @@ class DB_sqlite extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -396,7 +396,7 @@ class DB_sqlite extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -422,7 +422,7 @@ class DB_sqlite extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -447,7 +447,7 @@ class DB_sqlite extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource diff --git a/extlib/DB/sybase.php b/extlib/DB/sybase.php index 97ab41a22..3befbf6ea 100644 --- a/extlib/DB/sybase.php +++ b/extlib/DB/sybase.php @@ -118,7 +118,7 @@ class DB_sybase extends DB_common /** * The quantity of transactions begun * - * {@internal While this is private, it cannot actually be designated + * {@internal While this is private, it can't actually be designated * private in PHP 5 because it is directly accessed in the test suite.}} * * @var integer @@ -302,7 +302,7 @@ class DB_sybase extends DB_common * See DB_result::fetchInto() for more information. * * This method is not meant to be called directly. Use - * DB_result::fetchInto() instead. It cannot be declared "protected" + * DB_result::fetchInto() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result the query result resource @@ -359,7 +359,7 @@ class DB_sybase extends DB_common * Deletes the result set and frees the memory occupied by the result set * * This method is not meant to be called directly. Use - * DB_result::free() instead. It cannot be declared "protected" + * DB_result::free() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -380,7 +380,7 @@ class DB_sybase extends DB_common * Gets the number of columns in a result set * * This method is not meant to be called directly. Use - * DB_result::numCols() instead. It cannot be declared "protected" + * DB_result::numCols() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -405,7 +405,7 @@ class DB_sybase extends DB_common * Gets the number of rows in a result set * * This method is not meant to be called directly. Use - * DB_result::numRows() instead. It cannot be declared "protected" + * DB_result::numRows() instead. It can't be declared "protected" * because DB_result is a separate object. * * @param resource $result PHP's query result resource @@ -835,7 +835,7 @@ class DB_sybase extends DB_common $tableName = $table; /* We're running sp_helpindex directly because it doesn't exist in - * older versions of ASE -- unfortunately, we cannot just use + * older versions of ASE -- unfortunately, we can't just use * DB::isError() because the user may be using callback error * handling. */ $res = @sybase_query("sp_helpindex $table", $this->connection); diff --git a/extlib/HTTP/Request2/Adapter/Socket.php b/extlib/HTTP/Request2/Adapter/Socket.php index 13cd6136f..ff44d4959 100644 --- a/extlib/HTTP/Request2/Adapter/Socket.php +++ b/extlib/HTTP/Request2/Adapter/Socket.php @@ -1,971 +1,971 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Socket.php 279760 2009-05-03 10:46:42Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Base class for HTTP_Request2 adapters - */ -require_once 'HTTP/Request2/Adapter.php'; - -/** - * Socket-based adapter for HTTP_Request2 - * - * This adapter uses only PHP sockets and will work on almost any PHP - * environment. Code is based on original HTTP_Request PEAR package. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - */ -class HTTP_Request2_Adapter_Socket extends HTTP_Request2_Adapter -{ - /** - * Regular expression for 'token' rule from RFC 2616 - */ - const REGEXP_TOKEN = '[^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+'; - - /** - * Regular expression for 'quoted-string' rule from RFC 2616 - */ - const REGEXP_QUOTED_STRING = '"(?:\\\\.|[^\\\\"])*"'; - - /** - * Connected sockets, needed for Keep-Alive support - * @var array - * @see connect() - */ - protected static $sockets = array(); - - /** - * Data for digest authentication scheme - * - * The keys for the array are URL prefixes. - * - * The values are associative arrays with data (realm, nonce, nonce-count, - * opaque...) needed for digest authentication. Stored here to prevent making - * duplicate requests to digest-protected resources after we have already - * received the challenge. - * - * @var array - */ - protected static $challenges = array(); - - /** - * Connected socket - * @var resource - * @see connect() - */ - protected $socket; - - /** - * Challenge used for server digest authentication - * @var array - */ - protected $serverChallenge; - - /** - * Challenge used for proxy digest authentication - * @var array - */ - protected $proxyChallenge; - - /** - * Global timeout, exception will be raised if request continues past this time - * @var integer - */ - protected $timeout = null; - - /** - * Remaining length of the current chunk, when reading chunked response - * @var integer - * @see readChunked() - */ - protected $chunkLength = 0; - - /** - * Sends request to the remote server and returns its response - * - * @param HTTP_Request2 - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - public function sendRequest(HTTP_Request2 $request) - { - $this->request = $request; - $keepAlive = $this->connect(); - $headers = $this->prepareHeaders(); - - // Use global request timeout if given, see feature requests #5735, #8964 - if ($timeout = $request->getConfig('timeout')) { - $this->timeout = time() + $timeout; - } else { - $this->timeout = null; - } - - try { - if (false === @fwrite($this->socket, $headers, strlen($headers))) { - throw new HTTP_Request2_Exception('Error writing request'); - } - // provide request headers to the observer, see request #7633 - $this->request->setLastEvent('sentHeaders', $headers); - $this->writeBody(); - - if ($this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $request->getConfig('timeout') . ' second(s)' - ); - } - - $response = $this->readResponse(); - - if (!$this->canKeepAlive($keepAlive, $response)) { - $this->disconnect(); - } - - if ($this->shouldUseProxyDigestAuth($response)) { - return $this->sendRequest($request); - } - if ($this->shouldUseServerDigestAuth($response)) { - return $this->sendRequest($request); - } - if ($authInfo = $response->getHeader('authentication-info')) { - $this->updateChallenge($this->serverChallenge, $authInfo); - } - if ($proxyInfo = $response->getHeader('proxy-authentication-info')) { - $this->updateChallenge($this->proxyChallenge, $proxyInfo); - } - - } catch (Exception $e) { - $this->disconnect(); - throw $e; - } - - return $response; - } - - /** - * Connects to the remote server - * - * @return bool whether the connection can be persistent - * @throws HTTP_Request2_Exception - */ - protected function connect() - { - $secure = 0 == strcasecmp($this->request->getUrl()->getScheme(), 'https'); - $tunnel = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); - $headers = $this->request->getHeaders(); - $reqHost = $this->request->getUrl()->getHost(); - if (!($reqPort = $this->request->getUrl()->getPort())) { - $reqPort = $secure? 443: 80; - } - - if ($host = $this->request->getConfig('proxy_host')) { - if (!($port = $this->request->getConfig('proxy_port'))) { - throw new HTTP_Request2_Exception('Proxy port not provided'); - } - $proxy = true; - } else { - $host = $reqHost; - $port = $reqPort; - $proxy = false; - } - - if ($tunnel && !$proxy) { - throw new HTTP_Request2_Exception( - "Trying to perform CONNECT request without proxy" - ); - } - if ($secure && !in_array('ssl', stream_get_transports())) { - throw new HTTP_Request2_Exception( - 'Need OpenSSL support for https:// requests' - ); - } - - // RFC 2068, section 19.7.1: A client MUST NOT send the Keep-Alive - // connection token to a proxy server... - if ($proxy && !$secure && - !empty($headers['connection']) && 'Keep-Alive' == $headers['connection'] - ) { - $this->request->setHeader('connection'); - } - - $keepAlive = ('1.1' == $this->request->getConfig('protocol_version') && - empty($headers['connection'])) || - (!empty($headers['connection']) && - 'Keep-Alive' == $headers['connection']); - $host = ((!$secure || $proxy)? 'tcp://': 'ssl://') . $host; - - $options = array(); - if ($secure || $tunnel) { - foreach ($this->request->getConfig() as $name => $value) { - if ('ssl_' == substr($name, 0, 4) && null !== $value) { - if ('ssl_verify_host' == $name) { - if ($value) { - $options['CN_match'] = $reqHost; - } - } else { - $options[substr($name, 4)] = $value; - } - } - } - ksort($options); - } - - // Changing SSL context options after connection is established does *not* - // work, we need a new connection if options change - $remote = $host . ':' . $port; - $socketKey = $remote . (($secure && $proxy)? "->{$reqHost}:{$reqPort}": '') . - (empty($options)? '': ':' . serialize($options)); - unset($this->socket); - - // We use persistent connections and have a connected socket? - // Ensure that the socket is still connected, see bug #16149 - if ($keepAlive && !empty(self::$sockets[$socketKey]) && - !feof(self::$sockets[$socketKey]) - ) { - $this->socket =& self::$sockets[$socketKey]; - - } elseif ($secure && $proxy && !$tunnel) { - $this->establishTunnel(); - $this->request->setLastEvent( - 'connect', "ssl://{$reqHost}:{$reqPort} via {$host}:{$port}" - ); - self::$sockets[$socketKey] =& $this->socket; - - } else { - // Set SSL context options if doing HTTPS request or creating a tunnel - $context = stream_context_create(); - foreach ($options as $name => $value) { - if (!stream_context_set_option($context, 'ssl', $name, $value)) { - throw new HTTP_Request2_Exception( - "Error setting SSL context option '{$name}'" - ); - } - } - $this->socket = @stream_socket_client( - $remote, $errno, $errstr, - $this->request->getConfig('connect_timeout'), - STREAM_CLIENT_CONNECT, $context - ); - if (!$this->socket) { - throw new HTTP_Request2_Exception( - "Unable to connect to {$remote}. Error #{$errno}: {$errstr}" - ); - } - $this->request->setLastEvent('connect', $remote); - self::$sockets[$socketKey] =& $this->socket; - } - return $keepAlive; - } - - /** - * Establishes a tunnel to a secure remote server via HTTP CONNECT request - * - * This method will fail if 'ssl_verify_peer' is enabled. Probably because PHP - * sees that we are connected to a proxy server (duh!) rather than the server - * that presents its certificate. - * - * @link http://tools.ietf.org/html/rfc2817#section-5.2 - * @throws HTTP_Request2_Exception - */ - protected function establishTunnel() - { - $donor = new self; - $connect = new HTTP_Request2( - $this->request->getUrl(), HTTP_Request2::METHOD_CONNECT, - array_merge($this->request->getConfig(), - array('adapter' => $donor)) - ); - $response = $connect->send(); - // Need any successful (2XX) response - if (200 > $response->getStatus() || 300 <= $response->getStatus()) { - throw new HTTP_Request2_Exception( - 'Failed to connect via HTTPS proxy. Proxy response: ' . - $response->getStatus() . ' ' . $response->getReasonPhrase() - ); - } - $this->socket = $donor->socket; - - $modes = array( - STREAM_CRYPTO_METHOD_TLS_CLIENT, - STREAM_CRYPTO_METHOD_SSLv3_CLIENT, - STREAM_CRYPTO_METHOD_SSLv23_CLIENT, - STREAM_CRYPTO_METHOD_SSLv2_CLIENT - ); - - foreach ($modes as $mode) { - if (stream_socket_enable_crypto($this->socket, true, $mode)) { - return; - } - } - throw new HTTP_Request2_Exception( - 'Failed to enable secure connection when connecting through proxy' - ); - } - - /** - * Checks whether current connection may be reused or should be closed - * - * @param boolean whether connection could be persistent - * in the first place - * @param HTTP_Request2_Response response object to check - * @return boolean - */ - protected function canKeepAlive($requestKeepAlive, HTTP_Request2_Response $response) - { - // Do not close socket on successful CONNECT request - if (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && - 200 <= $response->getStatus() && 300 > $response->getStatus() - ) { - return true; - } - - $lengthKnown = 'chunked' == strtolower($response->getHeader('transfer-encoding')) || - null !== $response->getHeader('content-length'); - $persistent = 'keep-alive' == strtolower($response->getHeader('connection')) || - (null === $response->getHeader('connection') && - '1.1' == $response->getVersion()); - return $requestKeepAlive && $lengthKnown && $persistent; - } - - /** - * Disconnects from the remote server - */ - protected function disconnect() - { - if (is_resource($this->socket)) { - fclose($this->socket); - $this->socket = null; - $this->request->setLastEvent('disconnect'); - } - } - - /** - * Checks whether another request should be performed with server digest auth - * - * Several conditions should be satisfied for it to return true: - * - response status should be 401 - * - auth credentials should be set in the request object - * - response should contain WWW-Authenticate header with digest challenge - * - there is either no challenge stored for this URL or new challenge - * contains stale=true parameter (in other case we probably just failed - * due to invalid username / password) - * - * The method stores challenge values in $challenges static property - * - * @param HTTP_Request2_Response response to check - * @return boolean whether another request should be performed - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function shouldUseServerDigestAuth(HTTP_Request2_Response $response) - { - // no sense repeating a request if we don't have credentials - if (401 != $response->getStatus() || !$this->request->getAuth()) { - return false; - } - if (!$challenge = $this->parseDigestChallenge($response->getHeader('www-authenticate'))) { - return false; - } - - $url = $this->request->getUrl(); - $scheme = $url->getScheme(); - $host = $scheme . '://' . $url->getHost(); - if ($port = $url->getPort()) { - if ((0 == strcasecmp($scheme, 'http') && 80 != $port) || - (0 == strcasecmp($scheme, 'https') && 443 != $port) - ) { - $host .= ':' . $port; - } - } - - if (!empty($challenge['domain'])) { - $prefixes = array(); - foreach (preg_split('/\\s+/', $challenge['domain']) as $prefix) { - // don't bother with different servers - if ('/' == substr($prefix, 0, 1)) { - $prefixes[] = $host . $prefix; - } - } - } - if (empty($prefixes)) { - $prefixes = array($host . '/'); - } - - $ret = true; - foreach ($prefixes as $prefix) { - if (!empty(self::$challenges[$prefix]) && - (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) - ) { - // probably credentials are invalid - $ret = false; - } - self::$challenges[$prefix] =& $challenge; - } - return $ret; - } - - /** - * Checks whether another request should be performed with proxy digest auth - * - * Several conditions should be satisfied for it to return true: - * - response status should be 407 - * - proxy auth credentials should be set in the request object - * - response should contain Proxy-Authenticate header with digest challenge - * - there is either no challenge stored for this proxy or new challenge - * contains stale=true parameter (in other case we probably just failed - * due to invalid username / password) - * - * The method stores challenge values in $challenges static property - * - * @param HTTP_Request2_Response response to check - * @return boolean whether another request should be performed - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function shouldUseProxyDigestAuth(HTTP_Request2_Response $response) - { - if (407 != $response->getStatus() || !$this->request->getConfig('proxy_user')) { - return false; - } - if (!($challenge = $this->parseDigestChallenge($response->getHeader('proxy-authenticate')))) { - return false; - } - - $key = 'proxy://' . $this->request->getConfig('proxy_host') . - ':' . $this->request->getConfig('proxy_port'); - - if (!empty(self::$challenges[$key]) && - (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) - ) { - $ret = false; - } else { - $ret = true; - } - self::$challenges[$key] = $challenge; - return $ret; - } - - /** - * Extracts digest method challenge from (WWW|Proxy)-Authenticate header value - * - * There is a problem with implementation of RFC 2617: several of the parameters - * here are defined as quoted-string and thus may contain backslash escaped - * double quotes (RFC 2616, section 2.2). However, RFC 2617 defines unq(X) as - * just value of quoted-string X without surrounding quotes, it doesn't speak - * about removing backslash escaping. - * - * Now realm parameter is user-defined and human-readable, strange things - * happen when it contains quotes: - * - Apache allows quotes in realm, but apparently uses realm value without - * backslashes for digest computation - * - Squid allows (manually escaped) quotes there, but it is impossible to - * authorize with either escaped or unescaped quotes used in digest, - * probably it cannot parse the response (?) - * - Both IE and Firefox display realm value with backslashes in - * the password popup and apparently use the same value for digest - * - * HTTP_Request2 follows IE and Firefox (and hopefully RFC 2617) in - * quoted-string handling, unfortunately that means failure to authorize - * sometimes - * - * @param string value of WWW-Authenticate or Proxy-Authenticate header - * @return mixed associative array with challenge parameters, false if - * no challenge is present in header value - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function parseDigestChallenge($headerValue) - { - $authParam = '(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . - self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')'; - $challenge = "!(?<=^|\\s|,)Digest ({$authParam}\\s*(,\\s*|$))+!"; - if (!preg_match($challenge, $headerValue, $matches)) { - return false; - } - - preg_match_all('!' . $authParam . '!', $matches[0], $params); - $paramsAry = array(); - $knownParams = array('realm', 'domain', 'nonce', 'opaque', 'stale', - 'algorithm', 'qop'); - for ($i = 0; $i < count($params[0]); $i++) { - // section 3.2.1: Any unrecognized directive MUST be ignored. - if (in_array($params[1][$i], $knownParams)) { - if ('"' == substr($params[2][$i], 0, 1)) { - $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); - } else { - $paramsAry[$params[1][$i]] = $params[2][$i]; - } - } - } - // we only support qop=auth - if (!empty($paramsAry['qop']) && - !in_array('auth', array_map('trim', explode(',', $paramsAry['qop']))) - ) { - throw new HTTP_Request2_Exception( - "Only 'auth' qop is currently supported in digest authentication, " . - "server requested '{$paramsAry['qop']}'" - ); - } - // we only support algorithm=MD5 - if (!empty($paramsAry['algorithm']) && 'MD5' != $paramsAry['algorithm']) { - throw new HTTP_Request2_Exception( - "Only 'MD5' algorithm is currently supported in digest authentication, " . - "server requested '{$paramsAry['algorithm']}'" - ); - } - - return $paramsAry; - } - - /** - * Parses [Proxy-]Authentication-Info header value and updates challenge - * - * @param array challenge to update - * @param string value of [Proxy-]Authentication-Info header - * @todo validate server rspauth response - */ - protected function updateChallenge(&$challenge, $headerValue) - { - $authParam = '!(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . - self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')!'; - $paramsAry = array(); - - preg_match_all($authParam, $headerValue, $params); - for ($i = 0; $i < count($params[0]); $i++) { - if ('"' == substr($params[2][$i], 0, 1)) { - $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); - } else { - $paramsAry[$params[1][$i]] = $params[2][$i]; - } - } - // for now, just update the nonce value - if (!empty($paramsAry['nextnonce'])) { - $challenge['nonce'] = $paramsAry['nextnonce']; - $challenge['nc'] = 1; - } - } - - /** - * Creates a value for [Proxy-]Authorization header when using digest authentication - * - * @param string user name - * @param string password - * @param string request URL - * @param array digest challenge parameters - * @return string value of [Proxy-]Authorization request header - * @link http://tools.ietf.org/html/rfc2617#section-3.2.2 - */ - protected function createDigestResponse($user, $password, $url, &$challenge) - { - if (false !== ($q = strpos($url, '?')) && - $this->request->getConfig('digest_compat_ie') - ) { - $url = substr($url, 0, $q); - } - - $a1 = md5($user . ':' . $challenge['realm'] . ':' . $password); - $a2 = md5($this->request->getMethod() . ':' . $url); - - if (empty($challenge['qop'])) { - $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $a2); - } else { - $challenge['cnonce'] = 'Req2.' . rand(); - if (empty($challenge['nc'])) { - $challenge['nc'] = 1; - } - $nc = sprintf('%08x', $challenge['nc']++); - $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $nc . ':' . - $challenge['cnonce'] . ':auth:' . $a2); - } - return 'Digest username="' . str_replace(array('\\', '"'), array('\\\\', '\\"'), $user) . '", ' . - 'realm="' . $challenge['realm'] . '", ' . - 'nonce="' . $challenge['nonce'] . '", ' . - 'uri="' . $url . '", ' . - 'response="' . $digest . '"' . - (!empty($challenge['opaque'])? - ', opaque="' . $challenge['opaque'] . '"': - '') . - (!empty($challenge['qop'])? - ', qop="auth", nc=' . $nc . ', cnonce="' . $challenge['cnonce'] . '"': - ''); - } - - /** - * Adds 'Authorization' header (if needed) to request headers array - * - * @param array request headers - * @param string request host (needed for digest authentication) - * @param string request URL (needed for digest authentication) - * @throws HTTP_Request2_Exception - */ - protected function addAuthorizationHeader(&$headers, $requestHost, $requestUrl) - { - if (!($auth = $this->request->getAuth())) { - return; - } - switch ($auth['scheme']) { - case HTTP_Request2::AUTH_BASIC: - $headers['authorization'] = - 'Basic ' . base64_encode($auth['user'] . ':' . $auth['password']); - break; - - case HTTP_Request2::AUTH_DIGEST: - unset($this->serverChallenge); - $fullUrl = ('/' == $requestUrl[0])? - $this->request->getUrl()->getScheme() . '://' . - $requestHost . $requestUrl: - $requestUrl; - foreach (array_keys(self::$challenges) as $key) { - if ($key == substr($fullUrl, 0, strlen($key))) { - $headers['authorization'] = $this->createDigestResponse( - $auth['user'], $auth['password'], - $requestUrl, self::$challenges[$key] - ); - $this->serverChallenge =& self::$challenges[$key]; - break; - } - } - break; - - default: - throw new HTTP_Request2_Exception( - "Unknown HTTP authentication scheme '{$auth['scheme']}'" - ); - } - } - - /** - * Adds 'Proxy-Authorization' header (if needed) to request headers array - * - * @param array request headers - * @param string request URL (needed for digest authentication) - * @throws HTTP_Request2_Exception - */ - protected function addProxyAuthorizationHeader(&$headers, $requestUrl) - { - if (!$this->request->getConfig('proxy_host') || - !($user = $this->request->getConfig('proxy_user')) || - (0 == strcasecmp('https', $this->request->getUrl()->getScheme()) && - HTTP_Request2::METHOD_CONNECT != $this->request->getMethod()) - ) { - return; - } - - $password = $this->request->getConfig('proxy_password'); - switch ($this->request->getConfig('proxy_auth_scheme')) { - case HTTP_Request2::AUTH_BASIC: - $headers['proxy-authorization'] = - 'Basic ' . base64_encode($user . ':' . $password); - break; - - case HTTP_Request2::AUTH_DIGEST: - unset($this->proxyChallenge); - $proxyUrl = 'proxy://' . $this->request->getConfig('proxy_host') . - ':' . $this->request->getConfig('proxy_port'); - if (!empty(self::$challenges[$proxyUrl])) { - $headers['proxy-authorization'] = $this->createDigestResponse( - $user, $password, - $requestUrl, self::$challenges[$proxyUrl] - ); - $this->proxyChallenge =& self::$challenges[$proxyUrl]; - } - break; - - default: - throw new HTTP_Request2_Exception( - "Unknown HTTP authentication scheme '" . - $this->request->getConfig('proxy_auth_scheme') . "'" - ); - } - } - - - /** - * Creates the string with the Request-Line and request headers - * - * @return string - * @throws HTTP_Request2_Exception - */ - protected function prepareHeaders() - { - $headers = $this->request->getHeaders(); - $url = $this->request->getUrl(); - $connect = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); - $host = $url->getHost(); - - $defaultPort = 0 == strcasecmp($url->getScheme(), 'https')? 443: 80; - if (($port = $url->getPort()) && $port != $defaultPort || $connect) { - $host .= ':' . (empty($port)? $defaultPort: $port); - } - // Do not overwrite explicitly set 'Host' header, see bug #16146 - if (!isset($headers['host'])) { - $headers['host'] = $host; - } - - if ($connect) { - $requestUrl = $host; - - } else { - if (!$this->request->getConfig('proxy_host') || - 0 == strcasecmp($url->getScheme(), 'https') - ) { - $requestUrl = ''; - } else { - $requestUrl = $url->getScheme() . '://' . $host; - } - $path = $url->getPath(); - $query = $url->getQuery(); - $requestUrl .= (empty($path)? '/': $path) . (empty($query)? '': '?' . $query); - } - - if ('1.1' == $this->request->getConfig('protocol_version') && - extension_loaded('zlib') && !isset($headers['accept-encoding']) - ) { - $headers['accept-encoding'] = 'gzip, deflate'; - } - - $this->addAuthorizationHeader($headers, $host, $requestUrl); - $this->addProxyAuthorizationHeader($headers, $requestUrl); - $this->calculateRequestLength($headers); - - $headersStr = $this->request->getMethod() . ' ' . $requestUrl . ' HTTP/' . - $this->request->getConfig('protocol_version') . "\r\n"; - foreach ($headers as $name => $value) { - $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); - $headersStr .= $canonicalName . ': ' . $value . "\r\n"; - } - return $headersStr . "\r\n"; - } - - /** - * Sends the request body - * - * @throws HTTP_Request2_Exception - */ - protected function writeBody() - { - if (in_array($this->request->getMethod(), self::$bodyDisallowed) || - 0 == $this->contentLength - ) { - return; - } - - $position = 0; - $bufferSize = $this->request->getConfig('buffer_size'); - while ($position < $this->contentLength) { - if (is_string($this->requestBody)) { - $str = substr($this->requestBody, $position, $bufferSize); - } elseif (is_resource($this->requestBody)) { - $str = fread($this->requestBody, $bufferSize); - } else { - $str = $this->requestBody->read($bufferSize); - } - if (false === @fwrite($this->socket, $str, strlen($str))) { - throw new HTTP_Request2_Exception('Error writing request'); - } - // Provide the length of written string to the observer, request #7630 - $this->request->setLastEvent('sentBodyPart', strlen($str)); - $position += strlen($str); - } - } - - /** - * Reads the remote server's response - * - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - protected function readResponse() - { - $bufferSize = $this->request->getConfig('buffer_size'); - - do { - $response = new HTTP_Request2_Response($this->readLine($bufferSize), true); - do { - $headerLine = $this->readLine($bufferSize); - $response->parseHeaderLine($headerLine); - } while ('' != $headerLine); - } while (in_array($response->getStatus(), array(100, 101))); - - $this->request->setLastEvent('receivedHeaders', $response); - - // No body possible in such responses - if (HTTP_Request2::METHOD_HEAD == $this->request->getMethod() || - (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && - 200 <= $response->getStatus() && 300 > $response->getStatus()) || - in_array($response->getStatus(), array(204, 304)) - ) { - return $response; - } - - $chunked = 'chunked' == $response->getHeader('transfer-encoding'); - $length = $response->getHeader('content-length'); - $hasBody = false; - if ($chunked || null === $length || 0 < intval($length)) { - // RFC 2616, section 4.4: - // 3. ... If a message is received with both a - // Transfer-Encoding header field and a Content-Length header field, - // the latter MUST be ignored. - $toRead = ($chunked || null === $length)? null: $length; - $this->chunkLength = 0; - - while (!feof($this->socket) && (is_null($toRead) || 0 < $toRead)) { - if ($chunked) { - $data = $this->readChunked($bufferSize); - } elseif (is_null($toRead)) { - $data = $this->fread($bufferSize); - } else { - $data = $this->fread(min($toRead, $bufferSize)); - $toRead -= strlen($data); - } - if ('' == $data && (!$this->chunkLength || feof($this->socket))) { - break; - } - - $hasBody = true; - if ($this->request->getConfig('store_body')) { - $response->appendBody($data); - } - if (!in_array($response->getHeader('content-encoding'), array('identity', null))) { - $this->request->setLastEvent('receivedEncodedBodyPart', $data); - } else { - $this->request->setLastEvent('receivedBodyPart', $data); - } - } - } - - if ($hasBody) { - $this->request->setLastEvent('receivedBody', $response); - } - return $response; - } - - /** - * Reads until either the end of the socket or a newline, whichever comes first - * - * Strips the trailing newline from the returned data, handles global - * request timeout. Method idea borrowed from Net_Socket PEAR package. - * - * @param int buffer size to use for reading - * @return Available data up to the newline (not including newline) - * @throws HTTP_Request2_Exception In case of timeout - */ - protected function readLine($bufferSize) - { - $line = ''; - while (!feof($this->socket)) { - if ($this->timeout) { - stream_set_timeout($this->socket, max($this->timeout - time(), 1)); - } - $line .= @fgets($this->socket, $bufferSize); - $info = stream_get_meta_data($this->socket); - if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $this->request->getConfig('timeout') . ' second(s)' - ); - } - if (substr($line, -1) == "\n") { - return rtrim($line, "\r\n"); - } - } - return $line; - } - - /** - * Wrapper around fread(), handles global request timeout - * - * @param int Reads up to this number of bytes - * @return Data read from socket - * @throws HTTP_Request2_Exception In case of timeout - */ - protected function fread($length) - { - if ($this->timeout) { - stream_set_timeout($this->socket, max($this->timeout - time(), 1)); - } - $data = fread($this->socket, $length); - $info = stream_get_meta_data($this->socket); - if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $this->request->getConfig('timeout') . ' second(s)' - ); - } - return $data; - } - - /** - * Reads a part of response body encoded with chunked Transfer-Encoding - * - * @param int buffer size to use for reading - * @return string - * @throws HTTP_Request2_Exception - */ - protected function readChunked($bufferSize) - { - // at start of the next chunk? - if (0 == $this->chunkLength) { - $line = $this->readLine($bufferSize); - if (!preg_match('/^([0-9a-f]+)/i', $line, $matches)) { - throw new HTTP_Request2_Exception( - "Cannot decode chunked response, invalid chunk length '{$line}'" - ); - } else { - $this->chunkLength = hexdec($matches[1]); - // Chunk with zero length indicates the end - if (0 == $this->chunkLength) { - $this->readLine($bufferSize); - return ''; - } - } - } - $data = $this->fread(min($this->chunkLength, $bufferSize)); - $this->chunkLength -= strlen($data); - if (0 == $this->chunkLength) { - $this->readLine($bufferSize); // Trailing CRLF - } - return $data; - } -} - + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Socket.php 279760 2009-05-03 10:46:42Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Socket-based adapter for HTTP_Request2 + * + * This adapter uses only PHP sockets and will work on almost any PHP + * environment. Code is based on original HTTP_Request PEAR package. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Socket extends HTTP_Request2_Adapter +{ + /** + * Regular expression for 'token' rule from RFC 2616 + */ + const REGEXP_TOKEN = '[^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+'; + + /** + * Regular expression for 'quoted-string' rule from RFC 2616 + */ + const REGEXP_QUOTED_STRING = '"(?:\\\\.|[^\\\\"])*"'; + + /** + * Connected sockets, needed for Keep-Alive support + * @var array + * @see connect() + */ + protected static $sockets = array(); + + /** + * Data for digest authentication scheme + * + * The keys for the array are URL prefixes. + * + * The values are associative arrays with data (realm, nonce, nonce-count, + * opaque...) needed for digest authentication. Stored here to prevent making + * duplicate requests to digest-protected resources after we have already + * received the challenge. + * + * @var array + */ + protected static $challenges = array(); + + /** + * Connected socket + * @var resource + * @see connect() + */ + protected $socket; + + /** + * Challenge used for server digest authentication + * @var array + */ + protected $serverChallenge; + + /** + * Challenge used for proxy digest authentication + * @var array + */ + protected $proxyChallenge; + + /** + * Global timeout, exception will be raised if request continues past this time + * @var integer + */ + protected $timeout = null; + + /** + * Remaining length of the current chunk, when reading chunked response + * @var integer + * @see readChunked() + */ + protected $chunkLength = 0; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + $this->request = $request; + $keepAlive = $this->connect(); + $headers = $this->prepareHeaders(); + + // Use global request timeout if given, see feature requests #5735, #8964 + if ($timeout = $request->getConfig('timeout')) { + $this->timeout = time() + $timeout; + } else { + $this->timeout = null; + } + + try { + if (false === @fwrite($this->socket, $headers, strlen($headers))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // provide request headers to the observer, see request #7633 + $this->request->setLastEvent('sentHeaders', $headers); + $this->writeBody(); + + if ($this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $request->getConfig('timeout') . ' second(s)' + ); + } + + $response = $this->readResponse(); + + if (!$this->canKeepAlive($keepAlive, $response)) { + $this->disconnect(); + } + + if ($this->shouldUseProxyDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($this->shouldUseServerDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($authInfo = $response->getHeader('authentication-info')) { + $this->updateChallenge($this->serverChallenge, $authInfo); + } + if ($proxyInfo = $response->getHeader('proxy-authentication-info')) { + $this->updateChallenge($this->proxyChallenge, $proxyInfo); + } + + } catch (Exception $e) { + $this->disconnect(); + throw $e; + } + + return $response; + } + + /** + * Connects to the remote server + * + * @return bool whether the connection can be persistent + * @throws HTTP_Request2_Exception + */ + protected function connect() + { + $secure = 0 == strcasecmp($this->request->getUrl()->getScheme(), 'https'); + $tunnel = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $headers = $this->request->getHeaders(); + $reqHost = $this->request->getUrl()->getHost(); + if (!($reqPort = $this->request->getUrl()->getPort())) { + $reqPort = $secure? 443: 80; + } + + if ($host = $this->request->getConfig('proxy_host')) { + if (!($port = $this->request->getConfig('proxy_port'))) { + throw new HTTP_Request2_Exception('Proxy port not provided'); + } + $proxy = true; + } else { + $host = $reqHost; + $port = $reqPort; + $proxy = false; + } + + if ($tunnel && !$proxy) { + throw new HTTP_Request2_Exception( + "Trying to perform CONNECT request without proxy" + ); + } + if ($secure && !in_array('ssl', stream_get_transports())) { + throw new HTTP_Request2_Exception( + 'Need OpenSSL support for https:// requests' + ); + } + + // RFC 2068, section 19.7.1: A client MUST NOT send the Keep-Alive + // connection token to a proxy server... + if ($proxy && !$secure && + !empty($headers['connection']) && 'Keep-Alive' == $headers['connection'] + ) { + $this->request->setHeader('connection'); + } + + $keepAlive = ('1.1' == $this->request->getConfig('protocol_version') && + empty($headers['connection'])) || + (!empty($headers['connection']) && + 'Keep-Alive' == $headers['connection']); + $host = ((!$secure || $proxy)? 'tcp://': 'ssl://') . $host; + + $options = array(); + if ($secure || $tunnel) { + foreach ($this->request->getConfig() as $name => $value) { + if ('ssl_' == substr($name, 0, 4) && null !== $value) { + if ('ssl_verify_host' == $name) { + if ($value) { + $options['CN_match'] = $reqHost; + } + } else { + $options[substr($name, 4)] = $value; + } + } + } + ksort($options); + } + + // Changing SSL context options after connection is established does *not* + // work, we need a new connection if options change + $remote = $host . ':' . $port; + $socketKey = $remote . (($secure && $proxy)? "->{$reqHost}:{$reqPort}": '') . + (empty($options)? '': ':' . serialize($options)); + unset($this->socket); + + // We use persistent connections and have a connected socket? + // Ensure that the socket is still connected, see bug #16149 + if ($keepAlive && !empty(self::$sockets[$socketKey]) && + !feof(self::$sockets[$socketKey]) + ) { + $this->socket =& self::$sockets[$socketKey]; + + } elseif ($secure && $proxy && !$tunnel) { + $this->establishTunnel(); + $this->request->setLastEvent( + 'connect', "ssl://{$reqHost}:{$reqPort} via {$host}:{$port}" + ); + self::$sockets[$socketKey] =& $this->socket; + + } else { + // Set SSL context options if doing HTTPS request or creating a tunnel + $context = stream_context_create(); + foreach ($options as $name => $value) { + if (!stream_context_set_option($context, 'ssl', $name, $value)) { + throw new HTTP_Request2_Exception( + "Error setting SSL context option '{$name}'" + ); + } + } + $this->socket = @stream_socket_client( + $remote, $errno, $errstr, + $this->request->getConfig('connect_timeout'), + STREAM_CLIENT_CONNECT, $context + ); + if (!$this->socket) { + throw new HTTP_Request2_Exception( + "Unable to connect to {$remote}. Error #{$errno}: {$errstr}" + ); + } + $this->request->setLastEvent('connect', $remote); + self::$sockets[$socketKey] =& $this->socket; + } + return $keepAlive; + } + + /** + * Establishes a tunnel to a secure remote server via HTTP CONNECT request + * + * This method will fail if 'ssl_verify_peer' is enabled. Probably because PHP + * sees that we are connected to a proxy server (duh!) rather than the server + * that presents its certificate. + * + * @link http://tools.ietf.org/html/rfc2817#section-5.2 + * @throws HTTP_Request2_Exception + */ + protected function establishTunnel() + { + $donor = new self; + $connect = new HTTP_Request2( + $this->request->getUrl(), HTTP_Request2::METHOD_CONNECT, + array_merge($this->request->getConfig(), + array('adapter' => $donor)) + ); + $response = $connect->send(); + // Need any successful (2XX) response + if (200 > $response->getStatus() || 300 <= $response->getStatus()) { + throw new HTTP_Request2_Exception( + 'Failed to connect via HTTPS proxy. Proxy response: ' . + $response->getStatus() . ' ' . $response->getReasonPhrase() + ); + } + $this->socket = $donor->socket; + + $modes = array( + STREAM_CRYPTO_METHOD_TLS_CLIENT, + STREAM_CRYPTO_METHOD_SSLv3_CLIENT, + STREAM_CRYPTO_METHOD_SSLv23_CLIENT, + STREAM_CRYPTO_METHOD_SSLv2_CLIENT + ); + + foreach ($modes as $mode) { + if (stream_socket_enable_crypto($this->socket, true, $mode)) { + return; + } + } + throw new HTTP_Request2_Exception( + 'Failed to enable secure connection when connecting through proxy' + ); + } + + /** + * Checks whether current connection may be reused or should be closed + * + * @param boolean whether connection could be persistent + * in the first place + * @param HTTP_Request2_Response response object to check + * @return boolean + */ + protected function canKeepAlive($requestKeepAlive, HTTP_Request2_Response $response) + { + // Do not close socket on successful CONNECT request + if (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus() + ) { + return true; + } + + $lengthKnown = 'chunked' == strtolower($response->getHeader('transfer-encoding')) || + null !== $response->getHeader('content-length'); + $persistent = 'keep-alive' == strtolower($response->getHeader('connection')) || + (null === $response->getHeader('connection') && + '1.1' == $response->getVersion()); + return $requestKeepAlive && $lengthKnown && $persistent; + } + + /** + * Disconnects from the remote server + */ + protected function disconnect() + { + if (is_resource($this->socket)) { + fclose($this->socket); + $this->socket = null; + $this->request->setLastEvent('disconnect'); + } + } + + /** + * Checks whether another request should be performed with server digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 401 + * - auth credentials should be set in the request object + * - response should contain WWW-Authenticate header with digest challenge + * - there is either no challenge stored for this URL or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseServerDigestAuth(HTTP_Request2_Response $response) + { + // no sense repeating a request if we don't have credentials + if (401 != $response->getStatus() || !$this->request->getAuth()) { + return false; + } + if (!$challenge = $this->parseDigestChallenge($response->getHeader('www-authenticate'))) { + return false; + } + + $url = $this->request->getUrl(); + $scheme = $url->getScheme(); + $host = $scheme . '://' . $url->getHost(); + if ($port = $url->getPort()) { + if ((0 == strcasecmp($scheme, 'http') && 80 != $port) || + (0 == strcasecmp($scheme, 'https') && 443 != $port) + ) { + $host .= ':' . $port; + } + } + + if (!empty($challenge['domain'])) { + $prefixes = array(); + foreach (preg_split('/\\s+/', $challenge['domain']) as $prefix) { + // don't bother with different servers + if ('/' == substr($prefix, 0, 1)) { + $prefixes[] = $host . $prefix; + } + } + } + if (empty($prefixes)) { + $prefixes = array($host . '/'); + } + + $ret = true; + foreach ($prefixes as $prefix) { + if (!empty(self::$challenges[$prefix]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + // probably credentials are invalid + $ret = false; + } + self::$challenges[$prefix] =& $challenge; + } + return $ret; + } + + /** + * Checks whether another request should be performed with proxy digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 407 + * - proxy auth credentials should be set in the request object + * - response should contain Proxy-Authenticate header with digest challenge + * - there is either no challenge stored for this proxy or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseProxyDigestAuth(HTTP_Request2_Response $response) + { + if (407 != $response->getStatus() || !$this->request->getConfig('proxy_user')) { + return false; + } + if (!($challenge = $this->parseDigestChallenge($response->getHeader('proxy-authenticate')))) { + return false; + } + + $key = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + + if (!empty(self::$challenges[$key]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + $ret = false; + } else { + $ret = true; + } + self::$challenges[$key] = $challenge; + return $ret; + } + + /** + * Extracts digest method challenge from (WWW|Proxy)-Authenticate header value + * + * There is a problem with implementation of RFC 2617: several of the parameters + * here are defined as quoted-string and thus may contain backslash escaped + * double quotes (RFC 2616, section 2.2). However, RFC 2617 defines unq(X) as + * just value of quoted-string X without surrounding quotes, it doesn't speak + * about removing backslash escaping. + * + * Now realm parameter is user-defined and human-readable, strange things + * happen when it contains quotes: + * - Apache allows quotes in realm, but apparently uses realm value without + * backslashes for digest computation + * - Squid allows (manually escaped) quotes there, but it is impossible to + * authorize with either escaped or unescaped quotes used in digest, + * probably it can't parse the response (?) + * - Both IE and Firefox display realm value with backslashes in + * the password popup and apparently use the same value for digest + * + * HTTP_Request2 follows IE and Firefox (and hopefully RFC 2617) in + * quoted-string handling, unfortunately that means failure to authorize + * sometimes + * + * @param string value of WWW-Authenticate or Proxy-Authenticate header + * @return mixed associative array with challenge parameters, false if + * no challenge is present in header value + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function parseDigestChallenge($headerValue) + { + $authParam = '(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')'; + $challenge = "!(?<=^|\\s|,)Digest ({$authParam}\\s*(,\\s*|$))+!"; + if (!preg_match($challenge, $headerValue, $matches)) { + return false; + } + + preg_match_all('!' . $authParam . '!', $matches[0], $params); + $paramsAry = array(); + $knownParams = array('realm', 'domain', 'nonce', 'opaque', 'stale', + 'algorithm', 'qop'); + for ($i = 0; $i < count($params[0]); $i++) { + // section 3.2.1: Any unrecognized directive MUST be ignored. + if (in_array($params[1][$i], $knownParams)) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + } + // we only support qop=auth + if (!empty($paramsAry['qop']) && + !in_array('auth', array_map('trim', explode(',', $paramsAry['qop']))) + ) { + throw new HTTP_Request2_Exception( + "Only 'auth' qop is currently supported in digest authentication, " . + "server requested '{$paramsAry['qop']}'" + ); + } + // we only support algorithm=MD5 + if (!empty($paramsAry['algorithm']) && 'MD5' != $paramsAry['algorithm']) { + throw new HTTP_Request2_Exception( + "Only 'MD5' algorithm is currently supported in digest authentication, " . + "server requested '{$paramsAry['algorithm']}'" + ); + } + + return $paramsAry; + } + + /** + * Parses [Proxy-]Authentication-Info header value and updates challenge + * + * @param array challenge to update + * @param string value of [Proxy-]Authentication-Info header + * @todo validate server rspauth response + */ + protected function updateChallenge(&$challenge, $headerValue) + { + $authParam = '!(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')!'; + $paramsAry = array(); + + preg_match_all($authParam, $headerValue, $params); + for ($i = 0; $i < count($params[0]); $i++) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + // for now, just update the nonce value + if (!empty($paramsAry['nextnonce'])) { + $challenge['nonce'] = $paramsAry['nextnonce']; + $challenge['nc'] = 1; + } + } + + /** + * Creates a value for [Proxy-]Authorization header when using digest authentication + * + * @param string user name + * @param string password + * @param string request URL + * @param array digest challenge parameters + * @return string value of [Proxy-]Authorization request header + * @link http://tools.ietf.org/html/rfc2617#section-3.2.2 + */ + protected function createDigestResponse($user, $password, $url, &$challenge) + { + if (false !== ($q = strpos($url, '?')) && + $this->request->getConfig('digest_compat_ie') + ) { + $url = substr($url, 0, $q); + } + + $a1 = md5($user . ':' . $challenge['realm'] . ':' . $password); + $a2 = md5($this->request->getMethod() . ':' . $url); + + if (empty($challenge['qop'])) { + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $a2); + } else { + $challenge['cnonce'] = 'Req2.' . rand(); + if (empty($challenge['nc'])) { + $challenge['nc'] = 1; + } + $nc = sprintf('%08x', $challenge['nc']++); + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $nc . ':' . + $challenge['cnonce'] . ':auth:' . $a2); + } + return 'Digest username="' . str_replace(array('\\', '"'), array('\\\\', '\\"'), $user) . '", ' . + 'realm="' . $challenge['realm'] . '", ' . + 'nonce="' . $challenge['nonce'] . '", ' . + 'uri="' . $url . '", ' . + 'response="' . $digest . '"' . + (!empty($challenge['opaque'])? + ', opaque="' . $challenge['opaque'] . '"': + '') . + (!empty($challenge['qop'])? + ', qop="auth", nc=' . $nc . ', cnonce="' . $challenge['cnonce'] . '"': + ''); + } + + /** + * Adds 'Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request host (needed for digest authentication) + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addAuthorizationHeader(&$headers, $requestHost, $requestUrl) + { + if (!($auth = $this->request->getAuth())) { + return; + } + switch ($auth['scheme']) { + case HTTP_Request2::AUTH_BASIC: + $headers['authorization'] = + 'Basic ' . base64_encode($auth['user'] . ':' . $auth['password']); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->serverChallenge); + $fullUrl = ('/' == $requestUrl[0])? + $this->request->getUrl()->getScheme() . '://' . + $requestHost . $requestUrl: + $requestUrl; + foreach (array_keys(self::$challenges) as $key) { + if ($key == substr($fullUrl, 0, strlen($key))) { + $headers['authorization'] = $this->createDigestResponse( + $auth['user'], $auth['password'], + $requestUrl, self::$challenges[$key] + ); + $this->serverChallenge =& self::$challenges[$key]; + break; + } + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '{$auth['scheme']}'" + ); + } + } + + /** + * Adds 'Proxy-Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addProxyAuthorizationHeader(&$headers, $requestUrl) + { + if (!$this->request->getConfig('proxy_host') || + !($user = $this->request->getConfig('proxy_user')) || + (0 == strcasecmp('https', $this->request->getUrl()->getScheme()) && + HTTP_Request2::METHOD_CONNECT != $this->request->getMethod()) + ) { + return; + } + + $password = $this->request->getConfig('proxy_password'); + switch ($this->request->getConfig('proxy_auth_scheme')) { + case HTTP_Request2::AUTH_BASIC: + $headers['proxy-authorization'] = + 'Basic ' . base64_encode($user . ':' . $password); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->proxyChallenge); + $proxyUrl = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + if (!empty(self::$challenges[$proxyUrl])) { + $headers['proxy-authorization'] = $this->createDigestResponse( + $user, $password, + $requestUrl, self::$challenges[$proxyUrl] + ); + $this->proxyChallenge =& self::$challenges[$proxyUrl]; + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '" . + $this->request->getConfig('proxy_auth_scheme') . "'" + ); + } + } + + + /** + * Creates the string with the Request-Line and request headers + * + * @return string + * @throws HTTP_Request2_Exception + */ + protected function prepareHeaders() + { + $headers = $this->request->getHeaders(); + $url = $this->request->getUrl(); + $connect = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $host = $url->getHost(); + + $defaultPort = 0 == strcasecmp($url->getScheme(), 'https')? 443: 80; + if (($port = $url->getPort()) && $port != $defaultPort || $connect) { + $host .= ':' . (empty($port)? $defaultPort: $port); + } + // Do not overwrite explicitly set 'Host' header, see bug #16146 + if (!isset($headers['host'])) { + $headers['host'] = $host; + } + + if ($connect) { + $requestUrl = $host; + + } else { + if (!$this->request->getConfig('proxy_host') || + 0 == strcasecmp($url->getScheme(), 'https') + ) { + $requestUrl = ''; + } else { + $requestUrl = $url->getScheme() . '://' . $host; + } + $path = $url->getPath(); + $query = $url->getQuery(); + $requestUrl .= (empty($path)? '/': $path) . (empty($query)? '': '?' . $query); + } + + if ('1.1' == $this->request->getConfig('protocol_version') && + extension_loaded('zlib') && !isset($headers['accept-encoding']) + ) { + $headers['accept-encoding'] = 'gzip, deflate'; + } + + $this->addAuthorizationHeader($headers, $host, $requestUrl); + $this->addProxyAuthorizationHeader($headers, $requestUrl); + $this->calculateRequestLength($headers); + + $headersStr = $this->request->getMethod() . ' ' . $requestUrl . ' HTTP/' . + $this->request->getConfig('protocol_version') . "\r\n"; + foreach ($headers as $name => $value) { + $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); + $headersStr .= $canonicalName . ': ' . $value . "\r\n"; + } + return $headersStr . "\r\n"; + } + + /** + * Sends the request body + * + * @throws HTTP_Request2_Exception + */ + protected function writeBody() + { + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength + ) { + return; + } + + $position = 0; + $bufferSize = $this->request->getConfig('buffer_size'); + while ($position < $this->contentLength) { + if (is_string($this->requestBody)) { + $str = substr($this->requestBody, $position, $bufferSize); + } elseif (is_resource($this->requestBody)) { + $str = fread($this->requestBody, $bufferSize); + } else { + $str = $this->requestBody->read($bufferSize); + } + if (false === @fwrite($this->socket, $str, strlen($str))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // Provide the length of written string to the observer, request #7630 + $this->request->setLastEvent('sentBodyPart', strlen($str)); + $position += strlen($str); + } + } + + /** + * Reads the remote server's response + * + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + protected function readResponse() + { + $bufferSize = $this->request->getConfig('buffer_size'); + + do { + $response = new HTTP_Request2_Response($this->readLine($bufferSize), true); + do { + $headerLine = $this->readLine($bufferSize); + $response->parseHeaderLine($headerLine); + } while ('' != $headerLine); + } while (in_array($response->getStatus(), array(100, 101))); + + $this->request->setLastEvent('receivedHeaders', $response); + + // No body possible in such responses + if (HTTP_Request2::METHOD_HEAD == $this->request->getMethod() || + (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus()) || + in_array($response->getStatus(), array(204, 304)) + ) { + return $response; + } + + $chunked = 'chunked' == $response->getHeader('transfer-encoding'); + $length = $response->getHeader('content-length'); + $hasBody = false; + if ($chunked || null === $length || 0 < intval($length)) { + // RFC 2616, section 4.4: + // 3. ... If a message is received with both a + // Transfer-Encoding header field and a Content-Length header field, + // the latter MUST be ignored. + $toRead = ($chunked || null === $length)? null: $length; + $this->chunkLength = 0; + + while (!feof($this->socket) && (is_null($toRead) || 0 < $toRead)) { + if ($chunked) { + $data = $this->readChunked($bufferSize); + } elseif (is_null($toRead)) { + $data = $this->fread($bufferSize); + } else { + $data = $this->fread(min($toRead, $bufferSize)); + $toRead -= strlen($data); + } + if ('' == $data && (!$this->chunkLength || feof($this->socket))) { + break; + } + + $hasBody = true; + if ($this->request->getConfig('store_body')) { + $response->appendBody($data); + } + if (!in_array($response->getHeader('content-encoding'), array('identity', null))) { + $this->request->setLastEvent('receivedEncodedBodyPart', $data); + } else { + $this->request->setLastEvent('receivedBodyPart', $data); + } + } + } + + if ($hasBody) { + $this->request->setLastEvent('receivedBody', $response); + } + return $response; + } + + /** + * Reads until either the end of the socket or a newline, whichever comes first + * + * Strips the trailing newline from the returned data, handles global + * request timeout. Method idea borrowed from Net_Socket PEAR package. + * + * @param int buffer size to use for reading + * @return Available data up to the newline (not including newline) + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function readLine($bufferSize) + { + $line = ''; + while (!feof($this->socket)) { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $line .= @fgets($this->socket, $bufferSize); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + if (substr($line, -1) == "\n") { + return rtrim($line, "\r\n"); + } + } + return $line; + } + + /** + * Wrapper around fread(), handles global request timeout + * + * @param int Reads up to this number of bytes + * @return Data read from socket + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function fread($length) + { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $data = fread($this->socket, $length); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + return $data; + } + + /** + * Reads a part of response body encoded with chunked Transfer-Encoding + * + * @param int buffer size to use for reading + * @return string + * @throws HTTP_Request2_Exception + */ + protected function readChunked($bufferSize) + { + // at start of the next chunk? + if (0 == $this->chunkLength) { + $line = $this->readLine($bufferSize); + if (!preg_match('/^([0-9a-f]+)/i', $line, $matches)) { + throw new HTTP_Request2_Exception( + "Cannot decode chunked response, invalid chunk length '{$line}'" + ); + } else { + $this->chunkLength = hexdec($matches[1]); + // Chunk with zero length indicates the end + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); + return ''; + } + } + } + $data = $this->fread(min($this->chunkLength, $bufferSize)); + $this->chunkLength -= strlen($data); + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); // Trailing CRLF + } + return $data; + } +} + ?> \ No newline at end of file diff --git a/extlib/MIME/Type.php b/extlib/MIME/Type.php index 8653362d3..c335f8d92 100644 --- a/extlib/MIME/Type.php +++ b/extlib/MIME/Type.php @@ -478,7 +478,7 @@ class MIME_Type // Don't return an empty string if (!$type || !strlen($type)) { - return PEAR::raiseError("Sorry. Could not determine file type."); + return PEAR::raiseError("Sorry, couldn't determine file type."); } // Strip parameters if present & requested @@ -510,7 +510,7 @@ class MIME_Type $fileCmd = PEAR::getStaticProperty('MIME_Type', 'fileCmd'); if (!$cmd->which($fileCmd)) { unset($cmd); - return PEAR::raiseError("Cannot find file command \"{$fileCmd}\""); + return PEAR::raiseError("Can't find file command \"{$fileCmd}\""); } $cmd->pushCommand($fileCmd, "-bi " . escapeshellarg($file)); diff --git a/extlib/MIME/Type/Extension.php b/extlib/MIME/Type/Extension.php index 2ffdee9a9..1987e2a10 100644 --- a/extlib/MIME/Type/Extension.php +++ b/extlib/MIME/Type/Extension.php @@ -265,7 +265,7 @@ class MIME_Type_Extension } if (!isset($this->extensionToType[$extension])) { - return PEAR::raiseError("Sorry. Could not determine file type."); + return PEAR::raiseError("Sorry, couldn't determine file type."); } return $this->extensionToType[$extension]; @@ -288,7 +288,7 @@ class MIME_Type_Extension $extension = array_search($type, $this->extensionToType); if ($extension === false) { - return PEAR::raiseError("Sorry. Could not determine extension."); + return PEAR::raiseError("Sorry, couldn't determine extension."); } return $extension; } diff --git a/extlib/Mail/mail.php b/extlib/Mail/mail.php index 112ff940c..b13d69565 100644 --- a/extlib/Mail/mail.php +++ b/extlib/Mail/mail.php @@ -51,7 +51,7 @@ class Mail_mail extends Mail { } /* Because the mail() function may pass headers as command - * line arguments, we cannot guarantee the use of the standard + * line arguments, we can't guarantee the use of the standard * "\r\n" separator. Instead, we use the system's native line * separator. */ if (defined('PHP_EOL')) { diff --git a/extlib/Mail/sendmail.php b/extlib/Mail/sendmail.php index aea52081a..cd248e61d 100644 --- a/extlib/Mail/sendmail.php +++ b/extlib/Mail/sendmail.php @@ -67,7 +67,7 @@ class Mail_sendmail extends Mail { /* * Because we need to pass message headers to the sendmail program on - * the commandline, we cannot guarantee the use of the standard "\r\n" + * the commandline, we can't guarantee the use of the standard "\r\n" * separator. Instead, we use the system's native line separator. */ if (defined('PHP_EOL')) { diff --git a/extlib/Net/LDAP2/Entry.php b/extlib/Net/LDAP2/Entry.php index 5531bfa13..66de96678 100644 --- a/extlib/Net/LDAP2/Entry.php +++ b/extlib/Net/LDAP2/Entry.php @@ -665,7 +665,7 @@ class Net_LDAP2_Entry extends PEAR * To force replace mode instead of add, you can set $force to true. * * @param array $attr Attributes to replace - * @param bool $force Force replacing mode in case we cannot read the attr value but are allowed to replace it + * @param bool $force Force replacing mode in case we can't read the attr value but are allowed to replace it * * @access public * @return true|Net_LDAP2_Error diff --git a/extlib/Net/LDAP2/Filter.php b/extlib/Net/LDAP2/Filter.php index bd13d1ee4..0723edab2 100644 --- a/extlib/Net/LDAP2/Filter.php +++ b/extlib/Net/LDAP2/Filter.php @@ -439,7 +439,7 @@ class Net_LDAP2_Filter extends PEAR * * This method is only for compatibility to the perl interface. * However, the original method was called "print" but due to PHP language restrictions, - * we cannot have a print() method. + * we can't have a print() method. * * @param resource $FH (optional) A filehandle resource * diff --git a/extlib/System/Command.php b/extlib/System/Command.php index d2001a975..f5c3ec6b9 100644 --- a/extlib/System/Command.php +++ b/extlib/System/Command.php @@ -376,7 +376,7 @@ class System_Command { return $this->_initError; } - // if the command is empty or if the last element was a control operator, we cannot continue + // if the command is empty or if the last element was a control operator, we can't continue if (is_null($this->previousElement) || $this->commandStatus == -1 || in_array($this->previousElement, $this->controlOperators)) { return PEAR::raiseError(null, SYSTEM_COMMAND_INVALID_COMMAND, null, E_USER_WARNING, $this->systemCommand, 'System_Command_Error', true); } diff --git a/extlib/markdown.php b/extlib/markdown.php index 1bb1b6ce4..8179b568b 100644 --- a/extlib/markdown.php +++ b/extlib/markdown.php @@ -1348,7 +1348,7 @@ class Markdown_Parser { // { // list(, $div_open, , $div_content, $div_close) = $matches; // -// # We cannot call Markdown(), because that resets the hash; +// # We can't call Markdown(), because that resets the hash; // # that initialization code should be pulled into its own sub, though. // $div_content = $this->hashHTMLBlocks($div_content); // diff --git a/install.php b/install.php index 78a4b8763..e7f7cf318 100644 --- a/install.php +++ b/install.php @@ -391,7 +391,7 @@ function showLibs() libraries instead, as they tend to provide security updates faster, and may offer improved performance.

    On Debian based distributions, such as Ubuntu, use a package manager (such as "aptitude", "apt-get", and "synaptic") to install the package listed.

    On RPM based distributions, such as Red Hat, Fedora, CentOS, Scientific Linux, Yellow Dog Linux and Oracle Enterprise Linux, use a package manager (such as "yum", "apt-rpm", and "up2date") to install the package listed.

    -

    On servers without a package manager (such as Windows), or if the library is not packaged for your distribution, you can use PHP PEAR to install the library. Simply run "pear install <name>".

    +

    On servers without a package manager (such as Windows), or if the library is not packaged for your distribution, you can use PHP's PEAR to install the library. Simply run "pear install <name>".

    Absent Libraries

      @@ -570,7 +570,7 @@ STR; $res = writeConf($sitename, $server, $path, $fancy, $db); if (!$res) { - updateStatus("Cannot write config file.", true); + updateStatus("Can't write config file.", true); showForm(); return; } @@ -616,7 +616,7 @@ function Pgsql_Db_installer($host, $database, $username, $password) $res = runDbScript(INSTALLDIR.'/db/statusnet_pg.sql', $conn, 'pgsql'); if ($res === false) { - updateStatus("Cannot run database script.", true); + updateStatus("Can't run database script.", true); showForm(); return false; } @@ -627,7 +627,7 @@ function Pgsql_Db_installer($host, $database, $username, $password) updateStatus(sprintf("Adding %s data to database...", $name)); $res = runDbScript(INSTALLDIR.'/db/'.$scr.'.sql', $conn, 'pgsql'); if ($res === false) { - updateStatus(sprintf("Cannot run %d script.", $name), true); + updateStatus(sprintf("Can't run %d script.", $name), true); showForm(); return false; } @@ -652,21 +652,21 @@ function Mysql_Db_installer($host, $database, $username, $password) $conn = mysql_connect($host, $username, $password); if (!$conn) { - updateStatus("Cannot connect to server '$host' as '$username'.", true); + updateStatus("Can't connect to server '$host' as '$username'.", true); showForm(); return false; } updateStatus("Changing to database..."); $res = mysql_select_db($database, $conn); if (!$res) { - updateStatus("Cannot change to database.", true); + updateStatus("Can't change to database.", true); showForm(); return false; } updateStatus("Running database script..."); $res = runDbScript(INSTALLDIR.'/db/statusnet.sql', $conn); if ($res === false) { - updateStatus("Cannot run database script.", true); + updateStatus("Can't run database script.", true); showForm(); return false; } @@ -677,7 +677,7 @@ function Mysql_Db_installer($host, $database, $username, $password) updateStatus(sprintf("Adding %s data to database...", $name)); $res = runDbScript(INSTALLDIR.'/db/'.$scr.'.sql', $conn); if ($res === false) { - updateStatus(sprintf("Cannot run %d script.", $name), true); + updateStatus(sprintf("Can't run %d script.", $name), true); showForm(); return false; } diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php index 60095dace..51ceca857 100644 --- a/lib/attachmentlist.php +++ b/lib/attachmentlist.php @@ -71,7 +71,7 @@ class AttachmentList extends Widget /** * show the list of notices * - * "Uses up" the stream by looping through it. So, probably cannot + * "Uses up" the stream by looping through it. So, probably can't * be called twice on the same list. * * @return int count of notices listed. diff --git a/lib/noticelist.php b/lib/noticelist.php index 027db2b3e..bf12bb73c 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -75,7 +75,7 @@ class NoticeList extends Widget /** * show the list of notices * - * "Uses up" the stream by looping through it. So, probably cannot + * "Uses up" the stream by looping through it. So, probably can't * be called twice on the same list. * * @return int count of notices listed. diff --git a/lib/profilelist.php b/lib/profilelist.php index f3eb66658..bbb722701 100644 --- a/lib/profilelist.php +++ b/lib/profilelist.php @@ -269,7 +269,7 @@ class ProfileListItem extends Widget $usf = new UnsubscribeForm($this->out, $this->profile); $usf->show(); } else { - // Is it a local user? cannot remote sub from a list + // Is it a local user? can't remote sub from a list // XXX: make that possible! $other = User::staticGet('id', $this->profile->id); if (!empty($other)) { diff --git a/lib/serverexception.php b/lib/serverexception.php index 6b2d55a0b..7dc9765ad 100644 --- a/lib/serverexception.php +++ b/lib/serverexception.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { /** * Class for server exceptions * - * Subclass of PHP Exception for server errors. The user typically cannot fix these. + * Subclass of PHP Exception for server errors. The user typically can't fix these. * * @category Exception * @package StatusNet diff --git a/lib/settingsaction.php b/lib/settingsaction.php index 4193ea521..c3669868d 100644 --- a/lib/settingsaction.php +++ b/lib/settingsaction.php @@ -72,7 +72,7 @@ class SettingsAction extends CurrentUserDesignAction $this->clientError(_('Not logged in.')); return; } else if (!common_is_real_login()) { - // Cookie theft means that automatic logins cannot + // Cookie theft means that automatic logins can't // change important settings or see private info, and // _all_ our settings are important common_set_returnto($this->selfUrl()); diff --git a/lib/util.php b/lib/util.php index dde3fb48f..a4865c46c 100644 --- a/lib/util.php +++ b/lib/util.php @@ -576,7 +576,7 @@ function common_linkify($url) { } elseif (is_string($longurl_data)) { $longurl = $longurl_data; } else { - throw new ServerException("Cannot linkify url '$url'"); + throw new ServerException("Can't linkify url '$url'"); } } $attrs = array('href' => $canon, 'title' => $longurl, 'rel' => 'external'); diff --git a/lib/xmppqueuehandler.php b/lib/xmppqueuehandler.php index 8acdcafe7..f28fc9088 100644 --- a/lib/xmppqueuehandler.php +++ b/lib/xmppqueuehandler.php @@ -43,7 +43,7 @@ class XmppQueueHandler extends QueueHandler $this->conn = jabber_connect($this->_id.$this->transport()); if (empty($this->conn)) { - $this->log(LOG_ERR, "Could not connect to server."); + $this->log(LOG_ERR, "Couldn't connect to server."); return false; } diff --git a/locale/statusnet.po b/locale/statusnet.po index 3ea314f34..4331b906e 100644 --- a/locale/statusnet.po +++ b/locale/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 22:12+0000\n" +"POT-Creation-Date: 2009-11-08 11:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,4442 +16,7310 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -msgid "No such page" -msgstr "" - -#: actions/all.php:74 actions/allrss.php:68 actions/avatarbynickname.php:75 -#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 -#: actions/remotesubscribe.php:145 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 -#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 -#: lib/command.php:364 lib/command.php:411 lib/command.php:466 -#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 -msgid "No such user." -msgstr "" - -#: actions/all.php:84 +#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format -msgid "%s and friends, page %d" +msgid " Search Stream for \"%s\"" msgstr "" -#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 -#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 -#, php-format -msgid "%s and friends" +#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 +#: actions/finishopenidlogin.php:88 actions/register.php:205 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 +msgid "" +" except this private data: password, email address, IM address, phone number." msgstr "" -#: actions/all.php:99 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 +msgid " from " msgstr "" -#: actions/all.php:107 +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format -msgid "Feed for friends of %s (RSS 2.0)" +msgid "%1$s / Updates replying to %2$s" msgstr "" -#: actions/all.php:115 +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format -msgid "Feed for friends of %s (Atom)" +msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/all.php:127 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -#: actions/all.php:132 +#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format -msgid "" -"Try subscribing to more users, [join a group](%%action.groups%%) or post " -"something yourself." +msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: actions/all.php:134 +#: ../lib/mail.php:126 #, php-format msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" msgstr "" -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/all.php:165 -msgid "You and friends" +#: ../actions/shownotice.php:45 actions/shownotice.php:45 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" msgstr "" -#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format -msgid "Updates from %1$s and friends on %2$s!" +msgid "%s (%s)" msgstr "" -#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 -#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 -#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 -#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 -#: actions/apigroupshow.php:105 actions/apihelptest.php:88 -#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 -#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 -#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 -#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 -#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 -#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 -#: actions/apiusershow.php:101 -msgid "API method not found!" +#: ../actions/publicrss.php:62 actions/publicrss.php:48 +#: actions/publicrss.php:90 actions/publicrss.php:89 +#, php-format +msgid "%s Public Stream" msgstr "" -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 -#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 -#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 -msgid "This method requires a POST." +#: ../actions/all.php:47 ../actions/allrss.php:60 +#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 +#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 +#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 +#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 +#, php-format +msgid "%s and friends" msgstr "" -#: actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +msgid "%s public timeline" msgstr "" -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 -#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -msgid "No such user!" +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 +#, php-format +msgid "%s status" msgstr "" -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -msgid "User has no profile." +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" msgstr "" -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: actions/apidirectmessagenew.php:126 -msgid "No message text!" +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format -msgid "That's too long. Max message size is %d chars." +msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 +#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 +#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" -#: actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" +#: ../actions/password.php:42 actions/profilesettings.php:181 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 +msgid "6 or more characters" msgstr "" -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" +#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" msgstr "" -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 +#: actions/register.php:429 +msgid "6 or more characters. Required." msgstr "" -#: actions/apidirectmessage.php:105 +#: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "All the direct messages sent to %s" +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 -#: actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +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 "" -#: actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 -msgid "Could not create favorite." +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapidirect_messages.php:49 +#: ../actions/twitapidirect_messages.php:56 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 +msgid "API method under construction." msgstr "" -#: actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 +msgid "About" msgstr "" -#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 -msgid "Could not delete favorite." +#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 +msgid "Accept" msgstr "" -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 +#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 +#: actions/emailsettings.php:63 actions/imsettings.php:64 +#: actions/openidsettings.php:58 actions/smssettings.php:71 +#: actions/twittersettings.php:85 actions/emailsettings.php:120 +#: actions/imsettings.php:127 actions/openidsettings.php:111 +#: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" msgstr "" -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." +#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 +#: actions/openidsettings.php:93 +msgid "Add OpenID" msgstr "" -#: actions/apifriendshipsdestroy.php:109 -msgid "Could not unfollow user: User not found." +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 +msgid "Add or remove OpenIDs" msgstr "" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 +#: ../actions/smssettings.php:39 actions/emailsettings.php:39 +#: actions/imsettings.php:40 actions/smssettings.php:39 +#: actions/emailsettings.php:94 actions/imsettings.php:94 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 +msgid "Address" msgstr "" -#: actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" msgstr "" -#: actions/apifriendshipsshow.php:135 -msgid "Could not determine source user." +#: ../actions/showstream.php:273 actions/showstream.php:288 +#: actions/showstream.php:422 lib/profileaction.php:126 +msgid "All subscriptions" msgstr "" -#: actions/apifriendshipsshow.php:143 -msgid "Could not find target user." +#: ../actions/publicrss.php:64 actions/publicrss.php:50 +#: actions/publicrss.php:92 actions/publicrss.php:91 +#, php-format +msgid "All updates for %s" msgstr "" -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." +#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#, php-format +msgid "All updates matching search term \"%s\"" msgstr "" -#: actions/apigroupcreate.php:147 actions/editgroup.php:259 -#: actions/newgroup.php:210 -msgid "Could not create aliases." +#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 +#: ../actions/openidlogin.php:29 ../actions/register.php:30 +#: actions/finishopenidlogin.php:29 actions/login.php:31 +#: actions/openidlogin.php:29 actions/register.php:30 +#: actions/finishopenidlogin.php:34 actions/login.php:77 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." msgstr "" -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 +msgid "Already subscribed!." msgstr "" -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" msgstr "" -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:208 -msgid "Nickname already in use. Try another one." +#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 +msgid "Authorize subscription" msgstr "" -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:210 -msgid "Not a valid nickname." +#: ../actions/login.php:104 ../actions/register.php:178 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" msgstr "" -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:217 -msgid "Homepage is not a valid URL." +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:220 -msgid "Full name is too long (max 255 chars)." +#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 +#: actions/profilesettings.php:34 actions/avatarsettings.php:65 +#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" msgstr "" -#: actions/apigroupcreate.php:261 -#, php-format -msgid "Description is too long (max %d chars)." +#: ../actions/avatar.php:113 actions/profilesettings.php:350 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 +#: actions/avatarsettings.php:360 +msgid "Avatar updated." msgstr "" -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:227 -msgid "Location is too long (max 255 chars)." +#: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, php-format -msgid "Alias \"%s\" already in use. Try another one." +#: ../lib/util.php:1318 lib/util.php:1452 +msgid "Before »" msgstr "" -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: ../actions/profilesettings.php:49 ../actions/register.php:170 +#: actions/profilesettings.php:82 actions/register.php:184 +#: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 actions/register.php:465 +msgid "Bio" msgstr "" -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." +#: ../actions/profilesettings.php:101 ../actions/register.php:82 +#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 +#: actions/register.php:89 actions/updateprofile.php:104 +#: actions/profilesettings.php:205 actions/register.php:174 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 +msgid "Bio is too long (max 140 chars)." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." msgstr "" -#: actions/apigroupjoin.php:138 +#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format -msgid "Could not join user %s to group %s." +msgid "Can't read avatar URL '%s'" msgstr "" -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." +#: ../actions/password.php:85 ../actions/recoverpassword.php:300 +#: actions/profilesettings.php:404 actions/recoverpassword.php:313 +#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 +#: actions/passwordsettings.php:185 +msgid "Can't save new password." msgstr "" -#: actions/apigroupleave.php:124 -#, php-format -msgid "Could not remove user %s to group %s." +#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 +#: ../actions/smssettings.php:62 actions/emailsettings.php:58 +#: actions/imsettings.php:59 actions/smssettings.php:62 +#: actions/emailsettings.php:111 actions/imsettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 +msgid "Cancel" msgstr "" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 -#, php-format -msgid "%s groups" +#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 +msgid "Cannot instantiate OpenID consumer object." msgstr "" -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" +#: ../actions/imsettings.php:163 actions/imsettings.php:171 +#: actions/imsettings.php:286 actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" msgstr "" -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" msgstr "" -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." +#: ../actions/password.php:45 actions/profilesettings.php:184 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 +msgid "Change" msgstr "" -#: actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." +#: ../actions/password.php:32 actions/profilesettings.php:36 +#: actions/passwordsettings.php:58 +msgid "Change password" msgstr "" -#: actions/apistatusesshow.php:144 -msgid "No status with that ID found." +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 +msgid "Change your password" msgstr "" -#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 -#, php-format -msgid "That's too long. Max notice size is %d chars." +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 +msgid "Change your profile settings" msgstr "" -#: actions/apistatusesupdate.php:193 -msgid "Not found" +#: ../actions/password.php:43 ../actions/recoverpassword.php:181 +#: ../actions/register.php:155 ../actions/smssettings.php:65 +#: actions/profilesettings.php:182 actions/recoverpassword.php:187 +#: actions/register.php:169 actions/smssettings.php:65 +#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 +#: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 +#: actions/register.php:432 +msgid "Confirm" msgstr "" -#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." +#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 +#: actions/confirmaddress.php:144 +msgid "Confirm Address" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." +#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 +#: ../actions/smssettings.php:245 actions/emailsettings.php:256 +#: actions/imsettings.php:230 actions/smssettings.php:253 +#: actions/emailsettings.php:379 actions/imsettings.php:361 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." msgstr "" -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 +msgid "Confirmation code" msgstr "" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." msgstr "" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 actions/register.php:537 #, php-format -msgid "%s timeline" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" +#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 +msgid "Connect" msgstr "" -#: actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" +#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 +msgid "Connect existing account" msgstr "" -#: actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 +msgid "Contact" msgstr "" -#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format -msgid "%s public timeline" +msgid "Could not create OpenID form: %s" msgstr "" -#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "%s updates from everyone!" +msgid "Could not follow user: %s is already on your list." msgstr "" -#: actions/apitimelinetag.php:101 actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." msgstr "" -#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format -msgid "Updates tagged with %1$s on %2$s!" +msgid "Could not redirect to server: %s" msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." +#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 +msgid "Could not save avatar info" msgstr "" -#: actions/attachment.php:73 -msgid "No such attachment." +#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 +msgid "Could not save new profile info" msgstr "" -#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 -msgid "No nickname." +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: actions/avatarbynickname.php:64 -msgid "No size." +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: actions/avatarbynickname.php:69 -msgid "Invalid size." +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" -#: actions/avatarsettings.php:67 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" +#: ../actions/finishremotesubscribe.php:99 +#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 +msgid "Couldn't convert request tokens to access tokens." msgstr "" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 +#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 +#: actions/confirmaddress.php:84 actions/emailsettings.php:252 +#: actions/imsettings.php:226 actions/smssettings.php:249 +#: actions/confirmaddress.php:126 actions/emailsettings.php:375 +#: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." msgstr "" -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:103 -msgid "User without matching profile" +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 +msgid "Couldn't delete subscription." msgstr "" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 -#: actions/grouplogo.php:251 -msgid "Avatar settings" +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 +msgid "Couldn't find any statuses." msgstr "" -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 +#: actions/remotesubscribe.php:178 +msgid "Couldn't get a request token." msgstr "" -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 +#: ../actions/smssettings.php:206 actions/emailsettings.php:223 +#: actions/imsettings.php:195 actions/smssettings.php:214 +#: actions/emailsettings.php:337 actions/imsettings.php:311 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 -msgid "Delete" +#: ../actions/finishremotesubscribe.php:180 +#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." msgstr "" -#: actions/avatarsettings.php:165 actions/grouplogo.php:233 -msgid "Upload" +#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 +#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 +#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 +msgid "Couldn't save profile." msgstr "" -#: actions/avatarsettings.php:228 actions/grouplogo.php:286 -msgid "Crop" +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 -#: actions/emailsettings.php:237 actions/favor.php:75 -#: actions/groupblock.php:66 actions/grouplogo.php:309 -#: actions/groupunblock.php:66 actions/imsettings.php:206 -#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." msgstr "" -#: actions/avatarsettings.php:277 actions/emailsettings.php:255 -#: actions/grouplogo.php:319 actions/imsettings.php:220 -#: actions/recoverpassword.php:44 actions/smssettings.php:248 -#: lib/designsettings.php:304 -msgid "Unexpected form submission." +#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 +#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 +#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 +#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 +#: actions/confirmaddress.php:72 actions/emailsettings.php:174 +#: actions/emailsettings.php:277 actions/imsettings.php:146 +#: actions/imsettings.php:251 actions/profilesettings.php:256 +#: actions/smssettings.php:165 actions/smssettings.php:277 +#: actions/confirmaddress.php:114 actions/emailsettings.php:280 +#: actions/emailsettings.php:411 actions/imsettings.php:252 +#: actions/imsettings.php:395 actions/othersettings.php:162 +#: actions/profilesettings.php:259 actions/smssettings.php:266 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." msgstr "" -#: actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 +msgid "Create" msgstr "" -#: actions/avatarsettings.php:337 actions/grouplogo.php:377 -msgid "Lost our file data." +#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 +msgid "Create a new user with this nickname." msgstr "" -#: actions/avatarsettings.php:360 -msgid "Avatar updated." +#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 +msgid "Create new account" msgstr "" -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." +#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 +msgid "Creating new account for OpenID that already has a user." msgstr "" -#: actions/avatarsettings.php:387 -msgid "Avatar deleted." +#: ../actions/imsettings.php:45 actions/imsettings.php:46 +#: actions/imsettings.php:100 actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." msgstr "" -#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 -#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 -#: actions/groupmembers.php:76 actions/grouprss.php:91 -#: actions/joingroup.php:76 actions/showgroup.php:121 -msgid "No nickname" +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 -#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 -#: actions/grouplogo.php:99 actions/groupmembers.php:83 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 +msgid "Current confirmed email address." msgstr "" -#: actions/blockedfromgroup.php:90 +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format -msgid "%s blocked profiles" +msgid "DB error inserting hashtag: %s" msgstr "" -#: actions/blockedfromgroup.php:93 +#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 +#: classes/Notice.php:1120 #, php-format -msgid "%s blocked profiles, page %d" +msgid "DB error inserting reply: %s" msgstr "" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" msgstr "" -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" +#: ../actions/profilesettings.php:51 ../actions/register.php:172 +#: actions/profilesettings.php:84 actions/register.php:186 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 +msgid "Describe yourself and your interests in 140 chars" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 -msgid "Unblock" +#: ../actions/register.php:158 ../actions/register.php:161 +#: ../lib/settingsaction.php:87 actions/register.php:172 +#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 +#: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 actions/register.php:437 +#: actions/register.php:441 +msgid "Email" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 -msgid "Unblock this user" +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 +msgid "Email Address" msgstr "" -#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 +#: actions/emailsettings.php:60 +msgid "Email Settings" msgstr "" -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." +#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 actions/register.php:212 +msgid "Email address already exists." msgstr "" -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 +msgid "Email address confirmation" msgstr "" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: actions/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:176 -msgid "No" +#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." msgstr "" -#: actions/block.php:149 -msgid "Do not block this user from this group" +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:177 -msgid "Yes" +#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 +msgid "Error authorizing token" msgstr "" -#: actions/block.php:150 -msgid "Block this user from this group" +#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 +msgid "Error connecting user to OpenID." msgstr "" -#: actions/block.php:165 -msgid "You have already blocked this user." +#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 +#: actions/finishaddopenid.php:126 +msgid "Error connecting user." msgstr "" -#: actions/block.php:170 -msgid "Failed to save block information." +#: ../actions/finishremotesubscribe.php:151 +#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" msgstr "" -#: actions/bookmarklet.php:50 -msgid "Post to " +#: ../actions/finishremotesubscribe.php:143 +#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" msgstr "" -#: actions/confirmaddress.php:75 -msgid "No confirmation code." +#: ../actions/finishremotesubscribe.php:167 +#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" msgstr "" -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." +#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." msgstr "" -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" +#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 +msgid "Error saving remote profile" msgstr "" -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 +msgid "Error saving the profile." msgstr "" -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." +#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 +msgid "Error saving the user." msgstr "" -#: actions/confirmaddress.php:114 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." +#: ../actions/password.php:80 actions/profilesettings.php:399 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 +msgid "Error saving user; invalid." msgstr "" -#: actions/confirmaddress.php:126 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." +#: ../actions/login.php:47 ../actions/login.php:73 +#: ../actions/recoverpassword.php:307 ../actions/register.php:98 +#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 +#: actions/register.php:108 actions/login.php:112 actions/login.php:138 +#: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 +#: actions/login.php:149 actions/register.php:248 +msgid "Error setting user." msgstr "" -#: actions/confirmaddress.php:144 -msgid "Confirm Address" +#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 +#: actions/finishaddopenid.php:131 +msgid "Error updating profile" msgstr "" -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." +#: ../actions/finishremotesubscribe.php:161 +#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" msgstr "" -#: actions/conversation.php:99 -msgid "Conversation" +#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." msgstr "" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:206 -msgid "Notices" +#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 +msgid "Existing nickname" msgstr "" -#: actions/deletenotice.php:52 actions/shownotice.php:92 -msgid "No such notice." +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 +msgid "FAQ" msgstr "" -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." +#: ../actions/avatar.php:115 actions/profilesettings.php:352 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." msgstr "" -#: actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 +#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 +#, php-format +msgid "Feed for friends of %s" msgstr "" -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" +#: ../actions/replies.php:65 ../actions/repliesrss.php:80 +#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 +#, php-format +msgid "Feed for replies to %s" msgstr "" -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" msgstr "" -#: actions/deletenotice.php:145 -msgid "Do not delete this notice" +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" -#: actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: ../actions/profilesettings.php:44 ../actions/register.php:164 +#: actions/profilesettings.php:77 actions/register.php:178 +#: actions/profilesettings.php:103 actions/register.php:391 +#: actions/showgroup.php:235 actions/showstream.php:262 +#: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 +#: actions/register.php:447 lib/userprofile.php:149 +msgid "Full name" msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" +#: ../actions/profilesettings.php:98 ../actions/register.php:79 +#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 +#: actions/register.php:86 actions/updateprofile.php:94 +#: actions/editgroup.php:195 actions/newgroup.php:146 +#: actions/profilesettings.php:202 actions/register.php:171 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 actions/register.php:220 +msgid "Full name is too long (max 255 chars)." msgstr "" -#: actions/doc.php:69 -msgid "No such document." +#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 +msgid "Help" msgstr "" -#: actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" +#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 +msgid "Home" msgstr "" -#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: ../actions/profilesettings.php:46 ../actions/register.php:167 +#: actions/profilesettings.php:79 actions/register.php:181 +#: actions/profilesettings.php:107 actions/register.php:396 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 actions/register.php:452 +msgid "Homepage" msgstr "" -#: actions/editgroup.php:103 actions/editgroup.php:168 -#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: ../actions/profilesettings.php:95 ../actions/register.php:76 +#: actions/profilesettings.php:210 actions/register.php:83 +#: actions/editgroup.php:192 actions/newgroup.php:143 +#: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 actions/register.php:217 +msgid "Homepage is not a valid URL." msgstr "" -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: actions/editgroup.php:253 -msgid "Could not update group." +#: ../actions/imsettings.php:60 actions/imsettings.php:61 +#: actions/imsettings.php:118 actions/imsettings.php:124 +msgid "IM Address" msgstr "" -#: actions/editgroup.php:269 -msgid "Options saved." +#: ../actions/imsettings.php:33 actions/imsettings.php:33 +#: actions/imsettings.php:59 +msgid "IM Settings" msgstr "" -#: actions/emailsettings.php:60 -msgid "Email Settings" +#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." msgstr "" -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." msgstr "" -#: actions/emailsettings.php:100 -msgid "Address" +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" msgstr "" -#: actions/emailsettings.php:105 -msgid "Current confirmed email address." +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 -msgid "Remove" +#: ../actions/password.php:69 actions/profilesettings.php:388 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "" + +#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 +msgid "Incorrect username or password." msgstr "" -#: actions/emailsettings.php:113 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 -msgid "Cancel" +#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 +#, php-format +msgid "Invalid avatar URL '%s'" msgstr "" -#: actions/emailsettings.php:121 -msgid "Email Address" +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" msgstr "" -#: actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" +#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 +#, php-format +msgid "Invalid homepage '%s'" msgstr "" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" +#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 +#, php-format +msgid "Invalid license URL '%s'" msgstr "" -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" +#: ../actions/postnotice.php:61 actions/postnotice.php:62 +#: actions/postnotice.php:66 actions/postnotice.php:84 +msgid "Invalid notice content" msgstr "" -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." +#: ../actions/postnotice.php:67 actions/postnotice.php:68 +#: actions/postnotice.php:72 +msgid "Invalid notice uri" msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: ../actions/postnotice.php:72 actions/postnotice.php:73 +#: actions/postnotice.php:77 +msgid "Invalid notice url" msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" +#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 +#, php-format +msgid "Invalid profile URL '%s'." msgstr "" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" msgstr "" -#: actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." +#: ../actions/finishremotesubscribe.php:77 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 +msgid "Invalid profile URL returned by server." msgstr "" -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 +#: actions/avatarbynickname.php:69 +msgid "Invalid size." msgstr "" -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 +#: ../actions/register.php:111 actions/finishopenidlogin.php:241 +#: actions/register.php:103 actions/register.php:121 +#: actions/finishopenidlogin.php:279 actions/register.php:193 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." msgstr "" -#: actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" msgstr "" -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 +msgid "Invite" msgstr "" -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" msgstr "" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#: ../actions/imsettings.php:173 actions/imsettings.php:181 +#: actions/imsettings.php:296 actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/emailsettings.php:319 -msgid "No email address." +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 +msgid "Language" msgstr "" -#: actions/emailsettings.php:330 -msgid "Not a valid email address" +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: actions/emailsettings.php:333 -msgid "That is already your email address." +#: ../actions/profilesettings.php:52 ../actions/register.php:173 +#: actions/profilesettings.php:85 actions/register.php:187 +#: actions/profilesettings.php:117 actions/register.php:408 +#: actions/showgroup.php:244 actions/showstream.php:271 +#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 +msgid "Location" msgstr "" -#: actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: ../actions/profilesettings.php:104 ../actions/register.php:85 +#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 +#: actions/register.php:92 actions/updateprofile.php:109 +#: actions/editgroup.php:201 actions/newgroup.php:152 +#: actions/profilesettings.php:208 actions/register.php:177 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 actions/register.php:227 +msgid "Location is too long (max 255 chars)." msgstr "" -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." +#: ../actions/login.php:97 ../actions/login.php:106 +#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 +#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 +#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 +#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 +#: actions/login.php:204 actions/login.php:257 +#, php-format +msgid "Login" +msgstr "" + +#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "" -#: actions/emailsettings.php:358 +#: ../actions/login.php:126 actions/login.php:251 +#, php-format 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." +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " msgstr "" -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 +msgid "Logout" msgstr "" -#: actions/emailsettings.php:382 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 +msgid "Lost or forgotten password?" msgstr "" -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." +#: ../actions/showstream.php:300 actions/showstream.php:315 +#: actions/showstream.php:480 lib/profileaction.php:182 +msgid "Member since" msgstr "" -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." +#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 +#, php-format +msgid "Microblog by %s" msgstr "" -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +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 "" -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 actions/register.php:493 +msgid "My text and files are available under " msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:87 -#: lib/publicgroupnav.php:93 -msgid "Popular notices" +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" msgstr "" -#: actions/favorited.php:67 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format -msgid "Popular notices, page %d" +msgid "New email address for posting to %s" msgstr "" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." msgstr "" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 +msgid "New nickname" 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." +#: ../actions/newnotice.php:87 actions/newnotice.php:96 +#: actions/newnotice.php:68 actions/newnotice.php:69 +msgid "New notice" msgstr "" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +#: ../actions/password.php:41 ../actions/recoverpassword.php:179 +#: actions/profilesettings.php:180 actions/recoverpassword.php:185 +#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 +msgid "New password" msgstr "" -#: actions/favoritesrss.php:111 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 -#, php-format -msgid "%s's favorite notices" +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." msgstr "" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" +#: ../actions/login.php:101 ../actions/profilesettings.php:41 +#: ../actions/register.php:151 actions/login.php:101 +#: actions/profilesettings.php:74 actions/register.php:165 +#: actions/login.php:228 actions/profilesettings.php:98 +#: actions/register.php:367 actions/showgroup.php:224 +#: actions/showstream.php:251 actions/tagother.php:95 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 +#: actions/register.php:423 lib/userprofile.php:131 +msgid "Nickname" msgstr "" -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 +#: ../actions/register.php:69 actions/finishopenidlogin.php:181 +#: actions/profilesettings.php:225 actions/register.php:76 +#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 +#: actions/newgroup.php:134 actions/profilesettings.php:214 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 actions/register.php:208 +msgid "Nickname already in use. Try another one." msgstr "" -#: actions/favor.php:92 lib/disfavorform.php:140 -msgid "Disfavor favorite" +#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 +#: ../actions/register.php:67 ../actions/updateprofile.php:77 +#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 +#: actions/register.php:74 actions/updateprofile.php:78 +#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:87 -#: lib/publicgroupnav.php:89 -msgid "Featured users" +#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 +msgid "Nickname not allowed." msgstr "" -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" +#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" msgstr "" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" +#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 +msgid "Nickname or email" msgstr "" -#: actions/file.php:34 -msgid "No notice id" +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 +msgid "No" msgstr "" -#: actions/file.php:38 -msgid "No notice" +#: ../actions/imsettings.php:156 actions/imsettings.php:164 +#: actions/imsettings.php:279 actions/imsettings.php:285 +msgid "No Jabber ID." msgstr "" -#: actions/file.php:42 -msgid "No attachments" +#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 +msgid "No authorization request!" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." +#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 +#: actions/confirmaddress.php:75 +msgid "No confirmation code." msgstr "" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" +#: ../actions/newnotice.php:44 actions/newmessage.php:53 +#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 +#: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 +msgid "No content!" msgstr "" -#: actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." +#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 +msgid "No id." msgstr "" -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: ../actions/finishremotesubscribe.php:65 +#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 +msgid "No nickname provided by remote server." msgstr "" -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/leavegroup.php:83 -#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 -msgid "No such group." +#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 +#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 +msgid "No nickname." msgstr "" -#: actions/getfile.php:75 -msgid "No such file." +#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 +#: ../actions/smssettings.php:229 actions/emailsettings.php:240 +#: actions/imsettings.php:214 actions/smssettings.php:237 +#: actions/emailsettings.php:363 actions/imsettings.php:345 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." msgstr "" -#: actions/getfile.php:79 -msgid "Cannot read file." +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." +#: ../actions/finishremotesubscribe.php:72 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 +msgid "No profile URL returned by server." msgstr "" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." msgstr "" -#: actions/groupblock.php:95 -msgid "User is already blocked from group." +#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 +#: actions/userauthorization.php:57 +msgid "No request found!" msgstr "" -#: actions/groupblock.php:100 -msgid "User is not a member of group." +#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 +#: actions/noticesearch.php:69 actions/peoplesearch.php:69 +#: actions/groupsearch.php:81 actions/noticesearch.php:104 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 +msgid "No results" msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:314 -msgid "Block user from group" +#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 +#: actions/avatarbynickname.php:64 +msgid "No size." msgstr "" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." msgstr "" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: actions/groupbyid.php:74 -msgid "No ID" +#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 +#: actions/openidsettings.php:222 +msgid "No such OpenID." msgstr "" -#: actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." +#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 +msgid "No such document." msgstr "" -#: actions/groupdesignsettings.php:141 -msgid "Group design" +#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 +#: ../lib/deleteaction.php:30 actions/shownotice.php:32 +#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 +msgid "No such notice." msgstr "" -#: actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 +#: actions/recoverpassword.php:62 +msgid "No such recovery code." msgstr "" -#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 -#: lib/designsettings.php:434 lib/designsettings.php:464 -msgid "Couldn't update your design." +#: ../actions/postnotice.php:56 actions/postnotice.php:57 +#: actions/postnotice.php:60 +msgid "No such subscription" +msgstr "" + +#: ../actions/all.php:34 ../actions/allrss.php:35 +#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 +#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 +#: ../actions/replies.php:57 ../actions/repliesrss.php:35 +#: ../actions/showstream.php:110 ../actions/userbyid.php:36 +#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 +#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 +#: actions/allrss.php:35 actions/avatarbynickname.php:43 +#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 +#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 +#: actions/replies.php:57 actions/repliesrss.php:35 +#: actions/showfavorites.php:34 actions/showstream.php:110 +#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 +#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 +#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 +#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 +#: actions/foaf.php:41 actions/remotesubscribe.php:123 +#: actions/remotesubscribe.php:130 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/showstream.php:100 actions/userbyid.php:74 +#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 +#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 +#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 +msgid "No such user." msgstr "" -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -msgid "Unable to save your design settings!" +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 -msgid "Design preferences saved." +#: ../lib/gallery.php:80 lib/gallery.php:85 +msgid "Nobody to show!" msgstr "" -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" +#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." msgstr "" -#: actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." msgstr "" -#: actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." msgstr "" -#: actions/grouplogo.php:396 -msgid "Logo updated." +#: ../actions/imsettings.php:167 actions/imsettings.php:175 +#: actions/imsettings.php:290 actions/imsettings.php:296 +msgid "Not a valid Jabber ID" msgstr "" -#: actions/grouplogo.php:398 -msgid "Failed updating logo." +#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 +msgid "Not a valid OpenID." msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" +#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 actions/register.php:201 +msgid "Not a valid email address." msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: ../actions/profilesettings.php:91 ../actions/register.php:71 +#: actions/profilesettings.php:206 actions/register.php:78 +#: actions/editgroup.php:186 actions/newgroup.php:137 +#: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 actions/register.php:210 +msgid "Not a valid nickname." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 +#: actions/remotesubscribe.php:159 +msgid "Not a valid profile URL (incorrect services)." msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 -msgid "Block" +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 +#: actions/remotesubscribe.php:152 +msgid "Not a valid profile URL (no XRDS defined)." msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 -msgid "Block this user" +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 +#: actions/remotesubscribe.php:143 +msgid "Not a valid profile URL (no YADIS document)." msgstr "" -#: actions/groupmembers.php:441 -msgid "Make user an admin of the group" +#: ../actions/avatar.php:95 actions/profilesettings.php:332 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." msgstr "" -#: actions/groupmembers.php:473 -msgid "Make Admin" +#: ../actions/finishremotesubscribe.php:51 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 +msgid "Not authorized." msgstr "" -#: actions/groupmembers.php:473 -msgid "Make this user an admin" +#: ../actions/finishremotesubscribe.php:38 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" msgstr "" -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 +#: actions/apistatusesupdate.php:193 +msgid "Not found" msgstr "" -#: actions/groupsearch.php:52 -#, php-format -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." +#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 +#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 +#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 +#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 +#: actions/finishaddopenid.php:29 actions/logout.php:33 +#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 +#: actions/unsubscribe.php:25 lib/deleteaction.php:38 +#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 +#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 +#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 +#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 +#: actions/unsubscribe.php:27 lib/deleteaction.php:66 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 +msgid "Not logged in." msgstr "" -#: actions/groupsearch.php:58 -msgid "Group search" +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 +msgid "Not subscribed!." msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" -#: actions/groupsearch.php:82 +#: ../actions/showstream.php:82 actions/showstream.php:82 +#: actions/showstream.php:180 actions/showstream.php:187 +#: actions/showstream.php:192 #, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +msgid "Notice feed for %s" msgstr "" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: ../actions/showstream.php:316 actions/showstream.php:331 +#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 +msgid "Notices" msgstr "" -#: actions/groups.php:64 +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format -msgid "Groups, page %d" +msgid "Notices tagged with %s" msgstr "" -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with users of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Are you not seeing any groups you like? Try " -"[searching for one](%%%%action.groupsearch%%%%) or [start your own](%%%%" -"action.newgroup%%%%)!" +#: ../actions/password.php:39 actions/profilesettings.php:178 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 +msgid "Old password" msgstr "" -#: actions/groups.php:108 actions/usergroups.php:124 lib/groupeditform.php:122 -msgid "Create a new group" +#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 +#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 +#: lib/logingroupnav.php:81 lib/action.php:418 +msgid "OpenID" msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 +msgid "OpenID Account Setup" msgstr "" -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 +msgid "OpenID Auto-Submit" msgstr "" -#: actions/groupunblock.php:128 actions/unblock.php:108 -msgid "Error removing the block." +#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 +#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 +#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 +#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 +msgid "OpenID Login" msgstr "" -#: actions/imsettings.php:59 -msgid "IM Settings" +#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 +#: actions/openidlogin.php:74 actions/openidsettings.php:50 +#: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 +msgid "OpenID URL" msgstr "" -#: actions/imsettings.php:70 +#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 +#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 +#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 +msgid "OpenID authentication cancelled." +msgstr "" + +#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 +#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 +#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your instant messages address and settings below." +msgid "OpenID authentication failed: %s" msgstr "" -#: actions/imsettings.php:89 -msgid "IM is not available." +#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 +#, php-format +msgid "OpenID failure: %s" msgstr "" -#: actions/imsettings.php:100 -msgid "IM address" +#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 +#: actions/openidsettings.php:231 +msgid "OpenID removed." msgstr "" -#: actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." +#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 +#: actions/openidsettings.php:59 +msgid "OpenID settings" msgstr "" -#: actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this IM address. Check your Jabber/GTalk account " -"for a message with further instructions. (Did you add %s to your buddy list?)" +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/imsettings.php:124 -msgid "IM Address" +#: ../actions/avatar.php:84 actions/profilesettings.php:321 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 +msgid "Partial upload." msgstr "" -#: actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 +#: ../actions/register.php:153 ../lib/settingsaction.php:93 +#: actions/finishopenidlogin.php:96 actions/login.php:102 +#: actions/register.php:167 actions/finishopenidlogin.php:118 +#: actions/login.php:231 actions/register.php:372 +#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 actions/login.php:249 +#: actions/register.php:428 +msgid "Password" msgstr "" -#: actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." +#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." msgstr "" -#: actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." +#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." msgstr "" -#: actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from users I am not subscribed to." +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" msgstr "" -#: actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." +#: ../actions/password.php:89 ../actions/recoverpassword.php:313 +#: actions/profilesettings.php:408 actions/recoverpassword.php:326 +#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 +#: actions/passwordsettings.php:191 +msgid "Password saved." msgstr "" -#: actions/imsettings.php:285 -msgid "No Jabber ID." +#: ../actions/password.php:61 ../actions/register.php:88 +#: actions/profilesettings.php:380 actions/register.php:98 +#: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 +#: actions/register.php:233 +msgid "Passwords don't match." msgstr "" -#: actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/imsettings.php:296 -msgid "Not a valid Jabber ID" +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" msgstr "" -#: actions/imsettings.php:299 -msgid "That is already your Jabber ID." +#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 +#: actions/peoplesearch.php:58 +msgid "People search" msgstr "" -#: actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." +#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 +msgid "Personal" msgstr "" -#: actions/imsettings.php:327 -#, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" msgstr "" -#: actions/imsettings.php:387 -msgid "That is not your Jabber ID." +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" +#: ../actions/userauthorization.php:78 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." msgstr "" -#: actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 +#: ../actions/smssettings.php:94 actions/emailsettings.php:86 +#: actions/imsettings.php:68 actions/smssettings.php:94 +#: actions/twittersettings.php:70 actions/emailsettings.php:147 +#: actions/imsettings.php:133 actions/smssettings.php:157 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" msgstr "" -#: actions/invite.php:39 -msgid "Invites have been disabled." +#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 +#: ../actions/smssettings.php:163 actions/emailsettings.php:180 +#: actions/imsettings.php:152 actions/smssettings.php:171 +#: actions/emailsettings.php:286 actions/imsettings.php:258 +#: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." msgstr "" -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 +msgid "Privacy" msgstr "" -#: actions/invite.php:110 -msgid "Invitation(s) sent" +#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 +#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 +msgid "Problem saving notice." msgstr "" -#: actions/invite.php:112 -msgid "Invite new users" +#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 +#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 +msgid "Profile" msgstr "" -#: actions/invite.php:128 -msgid "You are already subscribed to these users:" +#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 +msgid "Profile URL" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 -#, php-format -msgid "%s (%s)" +#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 +msgid "Profile settings" msgstr "" -#: actions/invite.php:136 -msgid "These are already users and you were automatically subscribed to them:" +#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 +#: actions/postnotice.php:52 actions/updateprofile.php:53 +#: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 +msgid "Profile unknown" msgstr "" -#: actions/invite.php:144 -msgid "Invitation(s) sent to the following e-mail addresses:" +#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 +msgid "Public Stream Feed" msgstr "" -#: actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 +msgid "Public timeline" msgstr "" -#: actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/invite.php:187 -msgid "Email addresses" +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" msgstr "" -#: actions/invite.php:192 -msgid "Personal message" +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" msgstr "" -#: actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 +msgid "Recover password" msgstr "" -#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 -msgid "Send" +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." msgstr "" -#: actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" +#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 +#: actions/register.php:152 actions/register.php:207 lib/util.php:328 +#: actions/register.php:69 actions/register.php:436 lib/action.php:338 +#: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 +msgid "Register" msgstr "" -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with those " -"you know and those who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with users who know about you. It is also great for meeting others who share " -"your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" +#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 +msgid "Reject" msgstr "" -#: actions/joingroup.php:128 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" +#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 +#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" msgstr "" -#: actions/joingroup.php:135 lib/command.php:239 -#, php-format -msgid "%s joined group %s" +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 +msgid "Remote profile with no matching profile" msgstr "" -#: actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 +msgid "Remote subscribe" msgstr "" -#: actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." +#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 +#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 +#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 +#: actions/emailsettings.php:48 actions/emailsettings.php:76 +#: actions/imsettings.php:49 actions/openidsettings.php:108 +#: actions/smssettings.php:50 actions/smssettings.php:84 +#: actions/twittersettings.php:59 actions/emailsettings.php:101 +#: actions/emailsettings.php:134 actions/imsettings.php:102 +#: actions/openidsettings.php:166 actions/smssettings.php:103 +#: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 +msgid "Remove" msgstr "" -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 +#: actions/openidsettings.php:123 +msgid "Remove OpenID" msgstr "" -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." msgstr "" -#: actions/leavegroup.php:134 lib/command.php:289 +#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" + +#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 +#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 +#: actions/replies.php:116 actions/repliesrss.php:67 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format -msgid "%s left group %s" +msgid "Replies to %s" msgstr "" -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 +msgid "Reset" msgstr "" -#: actions/login.php:110 actions/login.php:120 -msgid "Invalid or expired token." +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 +msgid "Reset password" msgstr "" -#: actions/login.php:143 -msgid "Incorrect username or password." +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/login.php:149 actions/recoverpassword.php:375 -#: actions/register.php:248 -msgid "Error setting user." +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 -#: lib/logingroupnav.php:79 -msgid "Login" +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: actions/login.php:243 -msgid "Login to site" +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: actions/login.php:246 actions/profilesettings.php:106 -#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 -#: lib/groupeditform.php:152 lib/userprofile.php:131 -msgid "Nickname" +#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 +msgid "Same as password above" msgstr "" -#: actions/login.php:249 actions/register.php:428 -#: lib/accountsettingsaction.php:114 -msgid "Password" +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" +#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 +#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 +#: actions/emailsettings.php:104 actions/imsettings.php:82 +#: actions/profilesettings.php:101 actions/smssettings.php:100 +#: actions/twittersettings.php:83 actions/emailsettings.php:182 +#: actions/facebooksettings.php:114 actions/imsettings.php:157 +#: actions/othersettings.php:117 actions/profilesettings.php:150 +#: actions/smssettings.php:169 actions/subscriptions.php:124 +#: actions/tagother.php:152 actions/twittersettings.php:161 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 +msgid "Save" msgstr "" -#: actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" +#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 +msgid "Search" msgstr "" -#: actions/login.php:263 -msgid "Lost or forgotten password?" +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 +#: actions/noticesearch.php:127 +msgid "Search Stream Feed" msgstr "" -#: actions/login.php:282 +#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#, php-format msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -#: actions/login.php:286 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 +#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 +msgid "Send" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/microsummary.php:62 actions/newmessage.php:116 -#: actions/remotesubscribe.php:154 -msgid "No such user" +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: actions/newgroup.php:53 -msgid "New group" +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 +msgid "Settings" msgstr "" -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" +#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 +msgid "Settings saved." msgstr "" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 -msgid "You can't send a message to this user." +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" msgstr "" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 -#: lib/command.php:424 -msgid "No content!" +#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 +#: actions/finishaddopenid.php:114 +msgid "Someone else already has this OpenID." msgstr "" -#: actions/newmessage.php:158 -msgid "No recipient specified." +#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 +#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 +#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 +msgid "Something weird happened." msgstr "" -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." msgstr "" -#: actions/newmessage.php:181 -msgid "Message sent" +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." msgstr "" -#: actions/newmessage.php:185 lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 +msgid "Source" msgstr "" -#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 -msgid "Ajax Error" +#: ../actions/showstream.php:296 actions/showstream.php:311 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 +msgid "Statistics" msgstr "" -#: actions/newnotice.php:69 -msgid "New notice" +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 +msgid "Stored OpenID not found." msgstr "" -#: actions/newnotice.php:199 -msgid "Notice posted" +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 +#: lib/userprofile.php:321 +msgid "Subscribe" msgstr "" -#: actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +#: ../actions/showstream.php:313 ../actions/subscribers.php:27 +#: actions/showstream.php:328 actions/subscribers.php:27 +#: actions/showstream.php:436 actions/showstream.php:498 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 +msgid "Subscribers" msgstr "" -#: actions/noticesearch.php:78 -msgid "Text search" +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 +msgid "Subscription authorized" msgstr "" -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%s\" on %s" +#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 +msgid "Subscription rejected" msgstr "" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +#: ../actions/showstream.php:230 ../actions/showstream.php:307 +#: ../actions/subscriptions.php:27 actions/showstream.php:240 +#: actions/showstream.php:322 actions/subscriptions.php:27 +#: actions/showstream.php:407 actions/showstream.php:489 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 +msgid "Subscriptions" msgstr "" -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." msgstr "" -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +#: lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: actions/noticesearchrss.php:91 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 +msgid "Text search" msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" +#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 +#: actions/openidsettings.php:227 +msgid "That OpenID does not belong to you." msgstr "" -#: actions/nudge.php:97 -msgid "Nudge sent!" +#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." msgstr "" -#: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" msgstr "" -#: actions/oembed.php:86 actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: actions/oembed.php:157 -msgid "content type " +#: ../actions/avatar.php:80 actions/profilesettings.php:317 +#: lib/imagefile.php:71 +msgid "That file is too big." msgstr "" -#: actions/oembed.php:160 -msgid "Only " +#: ../actions/imsettings.php:170 actions/imsettings.php:178 +#: actions/imsettings.php:293 actions/imsettings.php:299 +msgid "That is already your Jabber ID." msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." msgstr "" -#: actions/opensearch.php:64 -msgid "User Search" +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: actions/opensearch.php:67 -msgid "Notice Search" +#: ../actions/imsettings.php:233 actions/imsettings.php:241 +#: actions/imsettings.php:381 actions/imsettings.php:387 +msgid "That is not your Jabber ID." msgstr "" -#: actions/othersettings.php:60 -msgid "Other Settings" +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: actions/othersettings.php:71 -msgid "Manage various other options." +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/othersettings.php:117 -msgid "Shorten URLs with" +#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 +#: actions/emailsettings.php:244 actions/imsettings.php:218 +#: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 +msgid "That is the wrong IM address." msgstr "" -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/othersettings.php:122 -msgid "View profile designs" +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 +#: actions/newnotice.php:49 actions/twitapistatuses.php:330 +#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 +msgid "That's too long. Max notice size is 140 chars." msgstr "" -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." msgstr "" -#: actions/outbox.php:58 +#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format -msgid "Outbox for %s - page %d" +msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" +#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 +#: ../actions/smssettings.php:274 actions/emailsettings.php:282 +#: actions/imsettings.php:258 actions/smssettings.php:282 +#: actions/emailsettings.php:416 actions/imsettings.php:402 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." msgstr "" -#: actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -#: actions/passwordsettings.php:58 -msgid "Change password" +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." msgstr "" -#: actions/passwordsettings.php:69 -msgid "Change your password." +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." msgstr "" -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." msgstr "" -#: actions/passwordsettings.php:103 -msgid "Old password" +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 -msgid "New password" +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." msgstr "" -#: actions/passwordsettings.php:108 -msgid "6 or more characters" +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "" -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:432 actions/smssettings.php:134 -msgid "Confirm" +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." msgstr "" -#: actions/passwordsettings.php:112 -msgid "same as password above" +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." msgstr "" -#: actions/passwordsettings.php:116 -msgid "Change" +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#, 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 "" + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." msgstr "" -#: actions/passwordsettings.php:153 actions/register.php:230 -msgid "Password must be 6 or more characters." +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +#: actions/apiaccountupdateprofileimage.php:84 +msgid "This method requires a POST." msgstr "" -#: actions/passwordsettings.php:156 actions/register.php:233 -msgid "Passwords don't match." +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" msgstr "" -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: actions/passwordsettings.php:180 -msgid "Error saving user; invalid." +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 -msgid "Can't save new password." +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 -msgid "Password saved." +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for users on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +#: ../actions/profilesettings.php:48 ../actions/register.php:169 +#: actions/profilesettings.php:81 actions/register.php:183 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: actions/peoplesearch.php:58 -msgid "People search" +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/peopletag.php:70 -#, php-format -msgid "Not a valid user tag: %s" +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 +#: actions/avatarsettings.php:277 lib/designsettings.php:304 +msgid "Unexpected form submission." msgstr "" -#: actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." msgstr "" -#: actions/postnotice.php:84 -msgid "Invalid notice content" +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +#: ../actions/finishremotesubscribe.php:58 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 +msgid "Unknown version of OMB protocol." msgstr "" -#: actions/profilesettings.php:60 -msgid "Profile settings" +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " msgstr "" -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so readers know more about " -"you." +#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" msgstr "" -#: actions/profilesettings.php:99 -msgid "Profile information" +#: ../actions/showstream.php:209 actions/showstream.php:219 +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" msgstr "" -#: actions/profilesettings.php:108 lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 +msgid "Unsupported OMB version" msgstr "" -#: actions/profilesettings.php:111 actions/register.php:447 -#: actions/showgroup.php:247 actions/tagother.php:104 -#: lib/groupeditform.php:157 lib/userprofile.php:149 -msgid "Full name" +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 +msgid "Unsupported image file format." msgstr "" -#: actions/profilesettings.php:115 actions/register.php:452 -#: lib/groupeditform.php:161 -msgid "Homepage" +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/profilesettings.php:117 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/profilesettings.php:122 actions/register.php:460 +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format -msgid "Describe yourself and your interests in %d chars" +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: actions/profilesettings.php:125 actions/register.php:463 -msgid "Describe yourself and your interests" +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" msgstr "" -#: actions/profilesettings.php:127 actions/register.php:465 -msgid "Bio" +#: ../actions/avatar.php:68 actions/profilesettings.php:161 +#: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 +msgid "Upload" msgstr "" -#: actions/profilesettings.php:132 actions/register.php:470 -#: actions/showgroup.php:256 actions/tagother.php:112 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/userprofile.php:164 -msgid "Location" +#: ../actions/avatar.php:27 +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." msgstr "" -#: actions/profilesettings.php:134 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" msgstr "" -#: actions/profilesettings.php:138 actions/tagother.php:149 -#: actions/tagother.php:209 lib/subscriptionlist.php:106 -#: lib/subscriptionlist.php:108 lib/userprofile.php:209 -msgid "Tags" +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +#: ../actions/register.php:159 ../actions/register.php:162 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" msgstr "" -#: actions/profilesettings.php:144 -msgid "Language" +#: ../actions/finishremotesubscribe.php:86 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 +msgid "User being listened to doesn't exist." +msgstr "" + +#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 +#: ../actions/foaf.php:47 ../actions/replies.php:41 +#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 +#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 +#: ../actions/twitapiusers.php:82 actions/all.php:41 +#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 +#: actions/showfavorites.php:41 actions/showstream.php:44 +#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 +#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 +#: actions/twitapiusers.php:87 lib/mailbox.php:50 +#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 +#: actions/showstream.php:107 actions/twitapiaccount.php:70 +#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 +#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 +#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 +#: actions/apiaccountupdateprofileimage.php:130 +msgid "User has no profile." msgstr "" -#: actions/profilesettings.php:145 -msgid "Preferred language" +#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 +msgid "User nickname" msgstr "" -#: actions/profilesettings.php:154 -msgid "Timezone" +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." msgstr "" +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 #: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "" + +#: ../actions/profilesettings.php:54 ../actions/register.php:175 +#: actions/profilesettings.php:87 actions/register.php:189 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" -#: actions/profilesettings.php:221 actions/register.php:223 +#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format -msgid "Bio is too long (max %d chars)." +msgid "Wrong image type for '%s'" msgstr "" -#: actions/profilesettings.php:228 -msgid "Timezone not selected." +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#, php-format +msgid "Wrong size image at '%s'" msgstr "" -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 +msgid "Yes" msgstr "" -#: actions/profilesettings.php:246 actions/tagother.php:178 -#, php-format -msgid "Invalid tag: \"%s\"" +#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 +#: actions/finishaddopenid.php:112 +msgid "You already have this OpenID!" msgstr "" -#: actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: actions/profilesettings.php:328 -msgid "Couldn't save profile." +#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" msgstr "" -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: actions/profilesettings.php:344 -msgid "Settings saved." +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + +#: ../actions/password.php:27 +msgid "You can change your password here. Choose a good one!" msgstr "" -#: actions/public.php:83 +#: ../actions/register.php:135 actions/register.php:145 +msgid "You can create a new account to start posting notices." +msgstr "" + +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 #, php-format -msgid "Beyond the page limit (%s)" +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." msgstr "" -#: actions/public.php:129 +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format -msgid "Public timeline, page %d" +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." msgstr "" -#: actions/public.php:131 lib/publicgroupnav.php:79 -msgid "Public timeline" +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." msgstr "" -#: actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" msgstr "" -#: actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -#: actions/public.php:159 -msgid "Public Stream Feed (Atom)" +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 +msgid "You did not send us that profile" msgstr "" -#: actions/public.php:179 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: actions/public.php:182 -msgid "Be the first to post!" +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: actions/public.php:186 +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: actions/public.php:233 -#, php-format +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 +msgid "Your OpenID URL" msgstr "" -#: actions/public.php:238 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" + +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." msgstr "" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 lib/util.php:844 +msgid "a few seconds ago" msgstr "" -#: actions/publictagcloud.php:63 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 lib/util.php:856 #, php-format -msgid "These are most popular recent tags on %s " +msgid "about %d days ago" msgstr "" -#: actions/publictagcloud.php:69 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 lib/util.php:852 #, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgid "about %d hours ago" msgstr "" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 lib/util.php:848 +#, php-format +msgid "about %d minutes ago" msgstr "" -#: actions/publictagcloud.php:75 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 lib/util.php:860 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +msgid "about %d months ago" msgstr "" -#: actions/publictagcloud.php:135 -msgid "Tag cloud" +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 lib/util.php:854 +msgid "about a day ago" msgstr "" -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 lib/util.php:846 +msgid "about a minute ago" msgstr "" -#: actions/recoverpassword.php:62 -msgid "No such recovery code." +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 lib/util.php:858 +msgid "about a month ago" msgstr "" -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 lib/util.php:862 +msgid "about a year ago" msgstr "" -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 lib/util.php:850 +msgid "about an hour ago" msgstr "" -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 +msgid "delete" msgstr "" -#: actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." +#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 +#: ../lib/stream.php:117 actions/noticesearch.php:136 +#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 +msgid "in reply to..." msgstr "" -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." +#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 +#: ../lib/stream.php:124 actions/noticesearch.php:143 +#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 +msgid "reply" msgstr "" -#: actions/recoverpassword.php:152 -msgid "" -"If you have forgotten or lost your password, you can get a new one sent to " -"the email address you have stored in your account." +#: ../actions/password.php:44 actions/profilesettings.php:183 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 +msgid "same as password above" msgstr "" -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + +#: ../lib/util.php:1309 lib/util.php:1443 +msgid "« After" +msgstr "" + +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 actions/login.php:131 +#: actions/register.php:165 actions/avatarsettings.php:265 +#: lib/designsettings.php:294 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/recoverpassword.php:188 -msgid "Password recovery" +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: actions/recoverpassword.php:191 -msgid "Nickname or email address" +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." msgstr "" -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" msgstr "" -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/recoverpassword.php:208 -msgid "Reset password" +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/recoverpassword.php:209 -msgid "Recover password" +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." msgstr "" -#: actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/favor.php:70 +msgid "Disfavor" msgstr "" -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" msgstr "" -#: actions/recoverpassword.php:240 -msgid "Same as password above" +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" msgstr "" -#: actions/recoverpassword.php:243 -msgid "Reset" +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" msgstr "" -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" msgstr "" -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " msgstr "" -#: actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " msgstr "" -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " msgstr "" -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." msgstr "" -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: actions/register.php:85 actions/register.php:189 actions/register.php:404 -msgid "Sorry. Only those invited can register." +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" msgstr "" -#: actions/register.php:92 -msgid "Sorry. This is an invalid invitation code." +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" msgstr "" -#: actions/register.php:112 -msgid "Registration successful" +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" msgstr "" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 -#: lib/logingroupnav.php:85 -msgid "Register" +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " msgstr "" -#: actions/register.php:135 -msgid "Registration not allowed." +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " msgstr "" -#: actions/register.php:198 -msgid "You can't register if you don't agree to the license." +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " msgstr "" -#: actions/register.php:201 -msgid "Not a valid email address." +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " msgstr "" -#: actions/register.php:212 -msgid "Email address already exists." +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" msgstr "" -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: actions/register.php:342 +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +"Search for people on %%site.name%% by their name, location, or interests. " msgstr "" -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " msgstr "" -#: actions/register.php:429 -msgid "6 or more characters. Required." +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" msgstr "" -#: actions/register.php:433 -msgid "Same as password above. Required." +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " msgstr "" -#: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:117 -msgid "Email" +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" msgstr "" -#: actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " msgstr "" -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " msgstr "" -#: actions/register.php:493 -msgid "My text and files are available under " +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " msgstr "" -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " msgstr "" -#: actions/register.php:496 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +#: actions/register.php:230 +msgid "Password must be 6 or more characters." msgstr "" -#: actions/register.php:537 +#: actions/register.php:216 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for users](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +"want to..." msgstr "" -#: actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " msgstr "" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" -#: actions/remotesubscribe.php:112 -msgid "Remote subscribe" +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" msgstr "" -#: actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: actions/remotesubscribe.php:129 -msgid "User nickname" +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." msgstr "" -#: actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: actions/remotesubscribe.php:133 -msgid "Profile URL" +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" msgstr "" -#: actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 -msgid "Subscribe" +#: actions/showstream.php:154 +msgid "Send a message" msgstr "" -#: actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " msgstr "" -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" msgstr "" -#: actions/replies.php:125 actions/repliesrss.php:68 -#: lib/personalgroupnav.php:105 +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format -msgid "Replies to %s" +msgid "All the direct messages sent from %s" msgstr "" -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." msgstr "" -#: actions/replies.php:151 +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "Replies feed for %s (RSS 2.0)" +msgid "%s / Favorites from %s" msgstr "" -#: actions/replies.php:158 +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format -msgid "Replies feed for %s (Atom)" +msgid "%s updates favorited by %s / %s." msgstr "" -#: actions/replies.php:198 +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format -msgid "" -"This is the timeline showing replies to %s but %s has not received a notice " -"to his attention yet." +msgid "%s added your notice as a favorite" msgstr "" -#: actions/replies.php:203 +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 #, php-format msgid "" -"You can engage other users in a conversation, subscribe to more users or " -"[join groups](%%action.groups%%)." +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" msgstr "" -#: actions/replies.php:205 -#, php-format +#: actions/twittersettings.php:27 msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +"Add your Twitter account to automatically send your notices to Twitter, " msgstr "" -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s's favorite notices, page %d" +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" msgstr "" -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." msgstr "" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" +#: actions/twittersettings.php:63 +msgid "Twitter Username" msgstr "" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." msgstr "" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" +#: actions/twittersettings.php:67 +msgid "Twitter Password" msgstr "" -#: actions/showfavorites.php:205 -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." +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." msgstr "" -#: actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." msgstr "" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:85 -#, php-format -msgid "%s group" +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" msgstr "" -#: actions/showgroup.php:84 +#: actions/twittersettings.php:137 #, php-format -msgid "%s group, page %d" +msgid "Unable to retrieve account information for \"%s\" from Twitter." msgstr "" -#: actions/showgroup.php:218 -msgid "Group profile" +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" msgstr "" -#: actions/showgroup.php:263 actions/tagother.php:118 -#: actions/userauthorization.php:167 lib/userprofile.php:177 -msgid "URL" +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." msgstr "" -#: actions/showgroup.php:274 actions/tagother.php:128 -#: actions/userauthorization.php:179 lib/userprofile.php:194 -msgid "Note" +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." msgstr "" -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." msgstr "" -#: actions/showgroup.php:293 -msgid "Group actions" +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." msgstr "" -#: actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." msgstr "" -#: actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." msgstr "" -#: actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " msgstr "" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " msgstr "" -#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 -msgid "Members" +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " msgstr "" -#: actions/showgroup.php:386 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 -#: lib/tagcloudsection.php:71 -msgid "(None)" +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/showgroup.php:392 -msgid "All members" +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/showgroup.php:429 lib/profileaction.php:173 -msgid "Statistics" +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/showgroup.php:432 -msgid "Created" +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/showgroup.php:448 +#: classes/Command.php:96 classes/Command.php:113 #, 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%%%%))" +msgid "Subscriptions: %1$s\n" msgstr "" -#: actions/showgroup.php:454 -#, 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. " +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/showgroup.php:482 -msgid "Admins" +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/showmessage.php:81 -msgid "No such message." +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" msgstr "" -#: actions/showmessage.php:108 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format -msgid "Message to %1$s on %2$s" +msgid "Location: %s" msgstr "" -#: actions/showmessage.php:113 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format -msgid "Message from %1$s on %2$s" +msgid "Homepage: %s" msgstr "" -#: actions/shownotice.php:90 -msgid "Notice deleted." +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 +#, php-format +msgid "About: %s" msgstr "" -#: actions/showstream.php:73 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format -msgid " tagged %s" +msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: actions/showstream.php:79 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format -msgid "%s, page %d" +msgid "Direct message to %s sent" msgstr "" -#: actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/showstream.php:129 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/showstream.php:136 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Subscribed to %s" msgstr "" -#: actions/showstream.php:143 -#, php-format -msgid "Notice feed for %s (Atom)" +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/showstream.php:148 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format -msgid "FOAF for %s" +msgid "Unsubscribed from %s" msgstr "" -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/showstream.php:198 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 #, php-format msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +"You have a new posting address on %1$s.\n" +"\n" msgstr "" -#: actions/showstream.php:234 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgid "New private message from %s" msgstr "" -#: actions/showstream.php:239 +#: lib/mail.php:253 lib/mail.php:512 #, php-format msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"%1$s (%2$s) sent you a private message:\n" +"\n" msgstr "" -#: actions/smssettings.php:58 -msgid "SMS Settings" +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." msgstr "" -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " msgstr "" -#: actions/smssettings.php:91 -msgid "SMS is not available." +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" msgstr "" -#: actions/smssettings.php:104 -msgid "SMS address" +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" msgstr "" -#: actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/smssettings.php:130 -msgid "Confirmation code" +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/smssettings.php:131 -msgid "Enter the code you received on your phone." +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/smssettings.php:138 -msgid "SMS Phone number" +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" msgstr "" -#: actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" msgstr "" -#: actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" msgstr "" -#: actions/smssettings.php:306 -msgid "No phone number." +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" msgstr "" -#: actions/smssettings.php:311 -msgid "No carrier selected." +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." msgstr "" -#: actions/smssettings.php:318 -msgid "That is already your phone number." +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 +#, php-format +msgid "%s and friends, page %d" msgstr "" -#: actions/smssettings.php:321 -msgid "That phone number already belongs to another user." +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." msgstr "" -#: actions/smssettings.php:347 -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." +#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 +msgid "Avatar settings" msgstr "" -#: actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: actions/smssettings.php:465 -msgid "Mobile carrier" +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: actions/smssettings.php:469 -msgid "Select a carrier" +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " msgstr "" -#: actions/smssettings.php:476 -#, php-format -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." +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/smssettings.php:498 -msgid "No code entered" +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 actions/avatarsettings.php:337 +msgid "Lost our file data." msgstr "" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." +#: actions/avatarsettings.php:334 actions/grouplogo.php:391 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 +msgid "Lost our file." msgstr "" -#: actions/subedit.php:83 -msgid "Could not save subscription." +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: actions/subscribe.php:55 -msgid "Not a local user." +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." msgstr "" -#: actions/subscribe.php:69 -msgid "Subscribed" +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." msgstr "" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " msgstr "" -#: actions/subscribers.php:63 -msgid "These are the users who have subscribed to your notices." +#: actions/block.php:162 actions/block.php:165 +msgid "You have already blocked this user." msgstr "" -#: actions/subscribers.php:67 +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + +#: actions/confirmaddress.php:159 #, php-format -msgid "These are the users who have subscribed to %s's notices." +msgid "The address \"%s\" has been " msgstr "" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to users you know and they might " -"return the favor" +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: actions/subscribers.php:114 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +msgid "Edit %s group" msgstr "" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" msgstr "" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: actions/subscriptions.php:65 -msgid "These are the users whose notices you have subscribed to." +#: actions/editgroup.php:87 actions/grouplogo.php:87 +#: actions/groupmembers.php:76 actions/joingroup.php:81 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +msgid "No nickname" msgstr "" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the users whose notices %s has subscribed to." +#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 +#: actions/groupmembers.php:83 actions/joingroup.php:88 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" msgstr "" -#: actions/subscriptions.php:121 -#, php-format -msgid "" -"You have not subscribed to anyone's notices right now. Try subscribing to " -"users you know. Try [user search](%%action.peoplesearch%%), look for members " -"in groups you're interested in and in our [featured users](%%action.featured%" -"%). If you are a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to users you already follow there." +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: actions/subscriptions.php:194 -msgid "Jabber" +#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +msgid "Nickname must have only lowercase letters " msgstr "" -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" +#: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 +msgid "description is too long (max 140 chars)." msgstr "" -#: actions/tagother.php:33 -msgid "Not logged in" +#: actions/editgroup.php:218 actions/editgroup.php:253 +msgid "Could not update group." msgstr "" -#: actions/tagother.php:39 -msgid "No id argument." +#: actions/editgroup.php:226 actions/editgroup.php:269 +msgid "Options saved." msgstr "" -#: actions/tagother.php:65 +#: actions/emailsettings.php:107 actions/imsettings.php:108 #, php-format -msgid "Tag %s" +msgid "Awaiting confirmation on this address. " msgstr "" -#: actions/tagother.php:77 lib/userprofile.php:75 -msgid "User profile" +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " msgstr "" -#: actions/tagother.php:81 lib/userprofile.php:102 -msgid "Photo" +#: actions/emailsettings.php:157 +msgid "Send me email when someone " msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: actions/emailsettings.php:321 +msgid "That email address already belongs " msgstr "" -#: actions/tagother.php:193 -msgid "" -"You can only tag users you are subscribed to or who are subscribed to you." +#: actions/emailsettings.php:343 +msgid "A confirmation code was sent to the email address you added. " msgstr "" -#: actions/tagother.php:200 -msgid "Could not save tags." +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" msgstr "" -#: actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " msgstr "" -#: actions/tag.php:68 +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format -msgid "Notices tagged with %s, page %d" +msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" msgstr "" -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 +msgid "No notice content!" msgstr "" -#: actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/tagrss.php:35 -msgid "No such tag." +#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 +msgid "After" msgstr "" -#: actions/twitapitrends.php:87 -msgid "API method under construction." +#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 +msgid "Before" msgstr "" -#: actions/unsubscribe.php:77 -msgid "No profile id in request." +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/unsubscribe.php:84 -msgid "No profile with that id." +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/unsubscribe.php:98 -msgid "Unsubscribed" +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgid "Invite your friends to use %s" msgstr "" -#: actions/userauthorization.php:105 -msgid "Authorize subscription" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" msgstr "" -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" msgstr "" -#: actions/userauthorization.php:188 -msgid "License" +#: actions/facebookremove.php:56 +msgid "Couldn't remove Facebook user." msgstr "" -#: actions/userauthorization.php:209 -msgid "Accept" +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" msgstr "" -#: actions/userauthorization.php:210 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" +#: actions/facebooksettings.php:67 +msgid "Sync preferences saved." msgstr "" -#: actions/userauthorization.php:211 -msgid "Reject" +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." msgstr "" -#: actions/userauthorization.php:212 -msgid "Reject this subscription" +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." msgstr "" -#: actions/userauthorization.php:225 -msgid "No authorization request!" +#: actions/facebooksettings.php:106 +msgid "Prefix" msgstr "" -#: actions/userauthorization.php:247 -msgid "Subscription authorized" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." msgstr "" -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " msgstr "" -#: actions/userauthorization.php:259 -msgid "Subscription rejected" +#: actions/facebooksettings.php:147 +msgid "Sync preferences" msgstr "" -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" msgstr "" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" +#: actions/favorited.php:65 lib/popularnoticesection.php:76 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 +msgid "Popular notices" msgstr "" -#: actions/userauthorization.php:301 +#: actions/favorited.php:67 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Popular notices, page %d" msgstr "" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." msgstr "" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" msgstr "" -#: actions/userauthorization.php:338 +#: actions/featured.php:71 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Featured users, page %d" msgstr "" -#: actions/userauthorization.php:343 +#: actions/featured.php:99 #, php-format -msgid "Can’t read avatar URL ‘%s’." +msgid "A selection of some of the great users on %s" msgstr "" -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: actions/userbyid.php:70 -msgid "No id." +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" msgstr "" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." msgstr "" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 +msgid "Logo updated." msgstr "" -#: actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 +msgid "Failed updating logo." msgstr "" -#: actions/usergroups.php:130 -msgid "Search for more groups" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: actions/usergroups.php:153 +#: actions/groupmembers.php:96 #, php-format -msgid "%s is not a member of any group." +msgid "%s group members, page %d" msgstr "" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: classes/File.php:147 +#: actions/groups.php:64 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." +msgid "Groups, page %d" msgstr "" -#: classes/File.php:154 +#: actions/groups.php:90 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." +msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" -#: classes/Message.php:55 -msgid "Could not insert message." +#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 +msgid "Create a new group" msgstr "" -#: classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/groupsearch.php:57 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" +#: actions/groupsearch.php:63 actions/groupsearch.php:58 +msgid "Group search" msgstr "" -#: classes/Notice.php:179 -msgid "Problem saving notice. Too long." +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " msgstr "" -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " msgstr "" -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: actions/imsettings.php:147 +msgid "Send me replies through Jabber/GTalk " msgstr "" -#: classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +#: actions/imsettings.php:321 +#, php-format +msgid "A confirmation code was sent " msgstr "" -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 -msgid "Problem saving notice." +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" msgstr "" -#: classes/Notice.php:1120 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format -msgid "DB error inserting reply: %s" +msgid "Could not join user %s to group %s" msgstr "" -#: classes/User.php:333 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format -msgid "Welcome to %1$s, @%2$s!" +msgid "%s joined group %s" msgstr "" -#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 -msgid "Profile" +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." msgstr "" -#: lib/accountsettingsaction.php:109 -msgid "Change your profile settings" +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: lib/accountsettingsaction.php:112 -msgid "Upload an avatar" +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 +msgid "No such group." msgstr "" -#: lib/accountsettingsaction.php:115 -msgid "Change your password" +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." msgstr "" -#: lib/accountsettingsaction.php:118 -msgid "Change email handling" +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." msgstr "" -#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 -msgid "Design" +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." msgstr "" -#: lib/accountsettingsaction.php:121 -msgid "Design your profile" +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" msgstr "" -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" msgstr "" -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 actions/login.php:243 +msgid "Login to site" msgstr "" -#: lib/action.php:144 -#, php-format -msgid "%s - %s" +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: lib/action.php:159 -msgid "Untitled page" +#: actions/newgroup.php:53 +msgid "New group" msgstr "" -#: lib/action.php:424 -msgid "Primary site navigation" +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: lib/action.php:430 -msgid "Home" +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." msgstr "" -#: lib/action.php:430 -msgid "Personal profile and friends timeline" +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." msgstr "" -#: lib/action.php:432 -msgid "Account" +#: actions/newmessage.php:119 actions/newnotice.php:132 +msgid "That's too long. " msgstr "" -#: lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " msgstr "" -#: lib/action.php:435 -msgid "Connect" +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 +msgid "Notice posted" msgstr "" -#: lib/action.php:435 -msgid "Connect to services" +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" msgstr "" -#: lib/action.php:439 lib/subgroupnav.php:105 -msgid "Invite" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -#: lib/action.php:440 lib/subgroupnav.php:106 -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: lib/action.php:445 -msgid "Logout" +#: actions/nudge.php:97 +msgid "Nudge sent!" msgstr "" -#: lib/action.php:445 -msgid "Logout from the site" +#: actions/openidlogin.php:97 actions/openidlogin.php:106 +msgid "OpenID login" msgstr "" -#: lib/action.php:450 -msgid "Create an account" +#: actions/openidsettings.php:128 +msgid "Removing your only OpenID " msgstr "" -#: lib/action.php:453 -msgid "Login to the site" +#: actions/othersettings.php:60 +msgid "Other Settings" msgstr "" -#: lib/action.php:456 lib/action.php:719 -msgid "Help" +#: actions/othersettings.php:71 +msgid "Manage various other options." msgstr "" -#: lib/action.php:456 -msgid "Help me!" +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" msgstr "" -#: lib/action.php:459 -msgid "Search" +#: actions/othersettings.php:112 +msgid "Service" msgstr "" -#: lib/action.php:459 -msgid "Search for users or text" +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: lib/action.php:480 -msgid "Site notice" +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." msgstr "" -#: lib/action.php:546 -msgid "Local views" +#: actions/passwordsettings.php:69 +msgid "Change your password." msgstr "" -#: lib/action.php:612 -msgid "Page notice" +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" msgstr "" -#: lib/action.php:714 -msgid "Secondary site navigation" +#: actions/peopletag.php:35 actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" msgstr "" -#: lib/action.php:721 -msgid "About" +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" msgstr "" -#: lib/action.php:723 -msgid "FAQ" +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: lib/action.php:727 -msgid "TOS" +#: actions/profilesettings.php:91 actions/profilesettings.php:99 +msgid "Profile information" msgstr "" -#: lib/action.php:730 -msgid "Privacy" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: lib/action.php:732 -msgid "Source" +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " msgstr "" -#: lib/action.php:734 -msgid "Contact" +#: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 +#, php-format +msgid "Invalid tag: \"%s\"" msgstr "" -#: lib/action.php:736 -msgid "Badge" +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." msgstr "" -#: lib/action.php:764 -msgid "StatusNet software license" +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "" + +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: lib/action.php:767 +#: actions/public.php:220 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " msgstr "" -#: lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" msgstr "" -#: lib/action.php:771 +#: actions/publictagcloud.php:63 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +msgid "These are most popular recent tags on %s " msgstr "" -#: lib/action.php:785 -msgid "Site content license" +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: lib/action.php:794 -msgid "All " +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 actions/register.php:85 actions/register.php:189 +#: actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: lib/action.php:799 -msgid "license." +#: actions/register.php:149 +msgid "You can't register if you don't " msgstr "" -#: lib/action.php:1053 -msgid "Pagination" +#: actions/register.php:286 +msgid "With this form you can create " msgstr "" -#: lib/action.php:1062 -msgid "After" +#: actions/register.php:368 +msgid "1-64 lowercase letters or numbers, " msgstr "" -#: lib/action.php:1070 -msgid "Before" +#: actions/register.php:382 actions/register.php:386 +msgid "Used only for updates, announcements, " msgstr "" -#: lib/attachmentlist.php:87 -msgid "Attachments" +#: actions/register.php:398 +msgid "URL of your homepage, blog, " msgstr "" -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" +#: actions/register.php:404 +msgid "Describe yourself and your " msgstr "" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" +#: actions/register.php:410 +msgid "Where you are, like \"City, " msgstr "" -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" +#: actions/register.php:432 +msgid " except this private data: password, " msgstr "" -#: lib/channel.php:210 -msgid "Command complete" +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "" -#: lib/channel.php:221 -msgid "Command failed" +#: actions/register.php:495 +msgid "(You should receive a message by email " msgstr "" -#: lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." msgstr "" -#: lib/command.php:88 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format -msgid "Could not find a user with nickname %s" +msgid "Replies to %s, page %d" msgstr "" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" msgstr "" -#: lib/command.php:99 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format -msgid "Nudge sent to %s" +msgid "%s group" msgstr "" -#: lib/command.php:126 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +msgid "%s group, page %d" msgstr "" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 +msgid "Group profile" msgstr "" -#: lib/command.php:168 lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: lib/command.php:190 -msgid "Notice marked as fave." +#: actions/showgroup.php:262 actions/showstream.php:289 +#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 lib/userprofile.php:194 +msgid "Note" msgstr "" -#: lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: lib/command.php:318 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format -msgid "Fullname: %s" +msgid "Notice feed for %s group" msgstr "" -#: lib/command.php:321 -#, php-format -msgid "Location: %s" +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 +msgid "Members" msgstr "" -#: lib/command.php:324 -#, php-format -msgid "Homepage: %s" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" msgstr "" -#: lib/command.php:327 -#, php-format -msgid "About: %s" +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" msgstr "" -#: lib/command.php:358 scripts/xmppdaemon.php:321 +#: actions/showgroup.php:378 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " msgstr "" -#: lib/command.php:377 -msgid "Error sending direct message." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " msgstr "" -#: lib/command.php:431 +#: actions/showstream.php:73 actions/showstream.php:78 +#: actions/showstream.php:79 #, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" +msgid "%s, page %d" msgstr "" -#: lib/command.php:439 -#, php-format -msgid "Reply to %s sent" +#: actions/showstream.php:143 +msgid "'s profile" msgstr "" -#: lib/command.php:441 -msgid "Error saving notice." +#: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 lib/userprofile.php:75 +msgid "User profile" msgstr "" -#: lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: lib/command.php:502 -#, php-format -msgid "Subscribed to %s" +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 lib/userprofile.php:273 +msgid "Message" msgstr "" -#: lib/command.php:548 lib/command.php:571 -msgid "Command not yet implemented." +#: actions/showstream.php:451 lib/profileaction.php:157 +msgid "All subscribers" msgstr "" -#: lib/command.php:551 -msgid "Notification off." +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: lib/command.php:553 -msgid "Can't turn off notification." +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " msgstr "" -#: lib/command.php:574 -msgid "Notification on." +#: actions/smssettings.php:128 +msgid "Phone number, no punctuation or spaces, " msgstr "" -#: lib/command.php:576 -msgid "Can't turn on notification." +#: actions/smssettings.php:162 +msgid "Send me notices through SMS; " msgstr "" -#: lib/command.php:597 -#, php-format -msgid "Could not create login token for %s" +#: actions/smssettings.php:335 +msgid "A confirmation code was sent to the phone number you added. " msgstr "" -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." msgstr "" -#: lib/common.php:191 -msgid "No configuration file found. " +#: actions/subedit.php:83 +msgid "Could not save subscription." msgstr "" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " +#: actions/subscribe.php:55 +msgid "Not a local user." msgstr "" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: actions/subscribe.php:69 +msgid "Subscribed" msgstr "" -#: lib/common.php:194 -msgid "Go to the installer." +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" msgstr "" -#: lib/connectsettingsaction.php:110 -msgid "IM" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" msgstr "" -#: lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/subscribers.php:63 +msgid "These are the people who listen to " msgstr "" -#: lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who " msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" msgstr "" -#: lib/designsettings.php:105 -msgid "Upload file" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices " msgstr "" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose " msgstr "" -#: lib/designsettings.php:139 -msgid "On" +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 +msgid "Jabber" msgstr "" -#: lib/designsettings.php:155 -msgid "Off" +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" msgstr "" -#: lib/designsettings.php:156 -msgid "Turn background image on or off." +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" msgstr "" -#: lib/designsettings.php:161 -msgid "Tile background image" +#: actions/tagother.php:33 +msgid "Not logged in" msgstr "" -#: lib/designsettings.php:170 -msgid "Change colours" +#: actions/tagother.php:39 +msgid "No id argument." msgstr "" -#: lib/designsettings.php:178 -msgid "Background" +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" msgstr "" -#: lib/designsettings.php:191 -msgid "Content" +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: lib/designsettings.php:204 -msgid "Sidebar" +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: lib/designsettings.php:217 -msgid "Text" +#: actions/tagother.php:164 +msgid "There was a problem with your session token." msgstr "" -#: lib/designsettings.php:230 -msgid "Links" +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: actions/tagother.php:198 actions/tagother.php:200 +msgid "Could not save tags." msgstr "" -#: lib/designsettings.php:248 -msgid "Restore default designs" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: actions/tagrss.php:35 +msgid "No such tag." msgstr "" -#: lib/designsettings.php:257 -msgid "Save design" +#: actions/tagrss.php:66 actions/tagrss.php:64 +#, php-format +msgid "Microblog tagged with %s" msgstr "" -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -#: lib/designsettings.php:468 -msgid "Design defaults restored." +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 +msgid "Not found." msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " msgstr "" -#: lib/favorform.php:140 -msgid "Favor" +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" msgstr "" -#: lib/feedlist.php:64 -msgid "Export data" +#: actions/twittersettings.php:126 actions/twittersettings.php:129 +msgid "Twitter password" msgstr "" -#: lib/feed.php:85 -msgid "RSS 1.0" +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/twittersettings.php:341 +#, php-format +msgid "Unable to retrieve account information " msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/unblock.php:108 actions/groupunblock.php:128 +msgid "Error removing the block." msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +msgid "No profile id in request." msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +msgid "No profile with that id." msgstr "" -#: lib/galleryaction.php:139 -msgid "Select tag to filter" +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +msgid "Unsubscribed" msgstr "" -#: lib/galleryaction.php:140 -msgid "Tag" +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" msgstr "" -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" msgstr "" -#: lib/galleryaction.php:143 -msgid "Go" +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." msgstr "" -#: lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 +msgid "Upload an avatar" msgstr "" -#: lib/groupeditform.php:172 -msgid "Description" +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: lib/groupeditform.php:187 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "%s - %s" msgstr "" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" msgstr "" -#: lib/groupnav.php:100 -msgid "Blocked" +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: lib/groupnav.php:112 -msgid "Logo" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Account" msgstr "" -#: lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" msgstr "" -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +msgid "Create an account" msgstr "" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" +#: lib/action.php:341 lib/action.php:418 +msgid "Login with OpenID" msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %s." +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +msgid "Help me!" msgstr "" -#: lib/imagefile.php:80 -msgid "Partial upload." +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +msgid "Site notice" msgstr "" -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" msgstr "" -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +msgid "Page notice" msgstr "" -#: lib/imagefile.php:105 -msgid "Unsupported image file format." +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +msgid "Secondary site navigation" msgstr "" -#: lib/imagefile.php:118 -msgid "Lost our file." +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " msgstr "" -#: lib/jabber.php:192 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block this user" +msgstr "" + +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 #, php-format -msgid "notice id: %s" +msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/joinform.php:114 -msgid "Join" +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 +msgid " a new account." msgstr "" -#: lib/leaveform.php:114 -msgid "Leave" +#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 +msgid "Published" msgstr "" -#: lib/logingroupnav.php:80 -msgid "Login with a username and password" +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" msgstr "" -#: lib/logingroupnav.php:86 -msgid "Sign up for a new account" +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: lib/mailbox.php:89 -msgid "Only the user can read their own mailboxes." +#: lib/galleryaction.php:121 +msgid "Filter tags" msgstr "" -#: lib/mailbox.php:139 +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + +#: lib/groupeditform.php:148 lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "" + +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "" + +#: lib/groupeditform.php:153 lib/groupeditform.php:168 +msgid "Describe the group or topic in 140 chars" +msgstr "" + +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 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." +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" msgstr "" -#: lib/mail.php:172 -msgid "Email address confirmation" +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" msgstr "" -#: lib/mail.php:174 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Edit %s group properties" +msgstr "" + +#: lib/groupnav.php:106 lib/groupnav.php:112 +msgid "Logo" msgstr "" -#: lib/mail.php:235 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format -msgid "%1$s is now listening to your notices on %2$s." +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + +#: lib/htmloutputter.php:104 +msgid "This page is not available in a " +msgstr "" + +#: lib/joinform.php:114 +msgid "Join" +msgstr "" + +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "" + +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "" + +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "" + +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" msgstr "" -#: lib/mail.php:240 +#: lib/mail.php:175 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" +"Hey, %s.\n" "\n" -"----\n" -"Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:253 +#: lib/mail.php:236 +#, php-format +msgid "%1$s is now listening to " +msgstr "" + +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:255 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:257 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:461 lib/mail.php:462 #, php-format -msgid "New email address for posting to %s" +msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:288 +#: lib/mail.php:465 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +msgid "%1$s (%2$s) is wondering what you are up to " msgstr "" -#: lib/mail.php:412 +#: lib/mail.php:555 #, php-format -msgid "%s status" +msgid "%1$s just added your notice from %2$s" msgstr "" -#: lib/mail.php:438 -msgid "SMS confirmation" +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +msgid "From" msgstr "" -#: lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +msgid "Send a notice" msgstr "" -#: lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 +msgid "Available characters" msgstr "" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" +#: lib/noticelist.php:426 lib/noticelist.php:429 +msgid "in reply to" msgstr "" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +msgid "Reply to this notice" msgstr "" -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 +msgid "Reply" msgstr "" -#: lib/mediafile.php:98 lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" msgstr "" -#: lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +msgid "Delete" msgstr "" -#: lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/nudgeform.php:116 +msgid "Nudge this user" msgstr "" -#: lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -#: lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" msgstr "" -#: lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" msgstr "" -#: lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +msgid "Public" msgstr "" -#: lib/mediafile.php:196 lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" msgstr "" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" msgstr "" -#: lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +msgid "Popular" msgstr "" -#: lib/messageform.php:120 -msgid "Send a direct notice" +#: lib/searchgroupnav.php:82 +msgid "Notice" msgstr "" -#: lib/messageform.php:146 -msgid "To" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" msgstr "" -#: lib/messageform.php:162 lib/noticeform.php:173 -msgid "Available characters" +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: lib/noticeform.php:145 -msgid "Send a notice" +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" msgstr "" -#: lib/noticeform.php:158 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format -msgid "What's up, %s?" +msgid "People subscribed to %s" msgstr "" -#: lib/noticeform.php:180 -msgid "Attach" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" msgstr "" -#: lib/noticeform.php:184 -msgid "Attach a file" +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/noticelist.php:478 -msgid "in context" +#: lib/subs.php:53 lib/subs.php:52 +msgid "User has blocked you." msgstr "" -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 +msgid "Subscribe to this user" msgstr "" -#: lib/noticelist.php:499 -msgid "Reply" +#: lib/tagcloudsection.php:56 +msgid "None" msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 +msgid "Unblock this user" msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" msgstr "" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, php-format +msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: lib/oauthstore.php:345 -msgid "Duplicate notice" +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, php-format +msgid "Feed for friends of %s (Atom)" msgstr "" -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +msgid "You and friends" msgstr "" -#: lib/personalgroupnav.php:99 -msgid "Personal" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: lib/personalgroupnav.php:104 -msgid "Replies" +#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +msgid "Avatar deleted." msgstr "" -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, 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 "" -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" msgstr "" -#: lib/personaltagcloudsection.php:56 +#: actions/facebooksettings.php:124 #, php-format -msgid "Tags in %s's notices" +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 -msgid "Subscriptions" +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: lib/profileaction.php:126 -msgid "All subscriptions" +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 -msgid "Subscribers" +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, php-format +msgid "Microblog by %s group" msgstr "" -#: lib/profileaction.php:157 -msgid "All subscribers" +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +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 "" -#: lib/profileaction.php:177 -msgid "User ID" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: lib/profileaction.php:182 -msgid "Member since" +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." msgstr "" -#: lib/profileaction.php:235 -msgid "All groups" +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" msgstr "" -#: lib/publicgroupnav.php:78 -msgid "Public" +#: actions/openidlogin.php:66 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." msgstr "" -#: lib/publicgroupnav.php:82 -msgid "User groups" +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: lib/publicgroupnav.php:88 -msgid "Featured" +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +msgid "Public Stream Feed (Atom)" msgstr "" -#: lib/publicgroupnav.php:92 -msgid "Popular" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: lib/searchaction.php:120 -msgid "Search site" +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" msgstr "" -#: lib/searchaction.php:162 -msgid "Search help" +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: lib/searchgroupnav.php:80 -msgid "People" +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#: actions/register.php:496 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +msgid "Created" msgstr "" -#: lib/searchgroupnav.php:82 -msgid "Notice" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, 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 "" -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" +#: actions/showstream.php:147 +msgid "Your profile" msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: actions/showstream.php:149 +#, php-format +msgid "%s's profile" msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: actions/showstream.php:163 actions/showstream.php:128 +#: actions/showstream.php:129 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" msgstr "" -#: lib/section.php:106 -msgid "More..." +#: actions/showstream.php:170 actions/showstream.php:135 +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" msgstr "" -#: lib/subgroupnav.php:83 +#: actions/showstream.php:177 actions/showstream.php:142 +#: actions/showstream.php:143 #, php-format -msgid "People %s subscribes to" +msgid "Notice feed for %s (Atom)" msgstr "" -#: lib/subgroupnav.php:91 +#: actions/showstream.php:182 actions/showstream.php:147 +#: actions/showstream.php:148 #, php-format -msgid "People subscribed to %s" +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 lib/userprofile.php:116 +msgid "Edit Avatar" +msgstr "" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 lib/userprofile.php:248 +msgid "Edit profile settings" msgstr "" -#: lib/subgroupnav.php:99 +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 lib/userprofile.php:249 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 actions/showstream.php:234 #, php-format -msgid "Groups %s is a member of" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: actions/smssettings.php:335 actions/smssettings.php:347 +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 "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" msgstr "" -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/apiaccountupdateprofileimage.php:91 +#: actions/apiaccountupdateprofileimage.php:105 +#: actions/apistatusesupdate.php:139 +msgid "No such user!" msgstr "" -#: lib/subs.php:48 -msgid "Already subscribed!" +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." msgstr "" -#: lib/subs.php:52 -msgid "User has blocked you." +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "" -#: lib/subs.php:56 -msgid "Could not subscribe." +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." msgstr "" -#: lib/subs.php:75 -msgid "Could not subscribe other to you." +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: lib/subs.php:124 -msgid "Not subscribed!." +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: lib/subs.php:136 -msgid "Couldn't delete subscription." +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, 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 "" -#: lib/userprofile.php:116 -msgid "Edit Avatar" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: lib/userprofile.php:236 -msgid "User actions" +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: lib/userprofile.php:248 -msgid "Edit profile settings" +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: lib/userprofile.php:249 -msgid "Edit" +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -#: lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." msgstr "" -#: lib/userprofile.php:273 -msgid "Message" +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/util.php:844 -msgid "a few seconds ago" +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" -#: lib/util.php:846 -msgid "about a minute ago" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/util.php:848 +#: lib/mail.php:513 #, php-format -msgid "about %d minutes ago" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/util.php:850 -msgid "about an hour ago" +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" msgstr "" -#: lib/util.php:852 +#: lib/mail.php:600 lib/mail.php:602 #, php-format -msgid "about %d hours ago" +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" msgstr "" -#: lib/util.php:854 -msgid "about a day ago" +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." msgstr "" -#: lib/util.php:856 +#: actions/all.php:80 actions/all.php:127 #, php-format -msgid "about %d days ago" +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: lib/util.php:858 -msgid "about a month ago" +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: lib/util.php:860 +#: actions/all.php:87 actions/all.php:134 #, php-format -msgid "about %d months ago" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/util.php:862 -msgid "about a year ago" +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#: actions/showstream.php:202 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: lib/webcolor.php:82 +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 #, php-format -msgid "%s is not a valid color!" +msgid "%s blocked profiles" msgstr "" -#: lib/webcolor.php:123 +#: actions/blockedfromgroup.php:93 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid "%s blocked profiles, page %d" msgstr "" -#: scripts/maildaemon.php:48 -msgid "Could not parse message." +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: scripts/maildaemon.php:53 -msgid "Not a registered user." +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" msgstr "" -#: scripts/maildaemon.php:57 -msgid "Sorry, that is not your incoming email address." +#: actions/conversation.php:99 +msgid "Conversation" msgstr "" -#: scripts/maildaemon.php:61 -msgid "Sorry, no incoming email allowed." +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "" + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +msgid "Could not create aliases." +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 +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +msgid "No notice id" +msgstr "" + +#: actions/file.php:38 +msgid "No notice" +msgstr "" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +msgid "Not a valid invitation code." +msgstr "" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 lib/designsettings.php:434 +#: lib/designsettings.php:464 +msgid "Couldn't update your design." +msgstr "" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: lib/designsettings.php:283 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +msgid "Couldn't save file." +msgstr "" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recover" +msgstr "" + +#: actions/register.php:86 actions/register.php:92 +msgid "Sorry, invalid invitation code." +msgstr "" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%s's favorite notices, page %d" +msgstr "" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +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:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, 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 "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +msgid "Not a local notice" +msgstr "" + +#: actions/showstream.php:72 actions/showstream.php:73 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 actions/showstream.php:122 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +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 "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +msgid "Could not determine source user." +msgstr "" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +msgid "Could not find target user." +msgstr "" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +msgid "Reject this subscription" +msgstr "" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +msgid "Change colours" +msgstr "" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +msgid "Content" +msgstr "" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: lib/designsettings.php:230 +msgid "Links" +msgstr "" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %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 %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +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/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" +msgstr "" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." +msgstr "" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "" + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, php-format +msgid "Could not join user %s to group %s." +msgstr "" + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, php-format +msgid "Could not remove user %s to group %s." +msgstr "" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +#: actions/apiaccountupdateprofileimage.php:99 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#: actions/apistatusesupdate.php:216 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." +msgstr "" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +msgid "No such file." +msgstr "" + +#: actions/getfile.php:79 +msgid "Cannot read file." +msgstr "" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "" + +#: actions/login.php:259 actions/login.php:286 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#: actions/register.php:460 +#, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "" + +#: actions/profilesettings.php:125 actions/register.php:457 +#: actions/register.php:463 +msgid "Describe yourself and your interests" +msgstr "" + +#: actions/profilesettings.php:221 actions/register.php:217 +#: actions/register.php:223 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "" + +#: actions/register.php:336 actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "" + +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "" + +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" + +#: lib/action.php:785 +msgid "Site content license" +msgstr "" + +#: lib/command.php:88 +#, php-format +msgid "Could not find a user with nickname %s" +msgstr "" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/common.php:191 +msgid "No configuration file found. " +msgstr "" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "" + +#: actions/login.php:110 actions/login.php:120 +msgid "Invalid or expired token." +msgstr "" + +#: lib/command.php:597 +#, php-format +msgid "Could not create login token for %s" +msgstr "" + +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "" + +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" diff --git a/plugins/Facebook/facebook/facebookapi_php5_restlib.php b/plugins/Facebook/facebook/facebookapi_php5_restlib.php index e2a6fe88b..55cb7fb86 100755 --- a/plugins/Facebook/facebook/facebookapi_php5_restlib.php +++ b/plugins/Facebook/facebook/facebookapi_php5_restlib.php @@ -2951,7 +2951,7 @@ function toggleDisplay(id, type) { /** - * Bans a list of users from the app. Banned users cannot + * Bans a list of users from the app. Banned users can't * access the app's canvas page and forums. * * @param array $uids an array of user ids diff --git a/plugins/Facebook/facebook/jsonwrapper/JSON/JSON.php b/plugins/Facebook/facebook/jsonwrapper/JSON/JSON.php index 92542b47d..0cddbddb4 100644 --- a/plugins/Facebook/facebook/jsonwrapper/JSON/JSON.php +++ b/plugins/Facebook/facebook/jsonwrapper/JSON/JSON.php @@ -124,7 +124,7 @@ class Services_JSON * "{...}" syntax creates associative arrays * instead of objects in decode(). * - SERVICES_JSON_SUPPRESS_ERRORS: error suppression. - * Values which cannot be encoded (e.g. resources) + * Values which can't be encoded (e.g. resources) * appear as NULL instead of throwing errors. * By default, a deeply-nested resource will * bubble up with an error, so all return values diff --git a/plugins/Facebook/facebookaction.php b/plugins/Facebook/facebookaction.php index 1d8b5217b..a10fdf90d 100644 --- a/plugins/Facebook/facebookaction.php +++ b/plugins/Facebook/facebookaction.php @@ -513,7 +513,7 @@ class FacebookNoticeList extends NoticeList /** * show the list of notices * - * "Uses up" the stream by looping through it. So, probably cannot + * "Uses up" the stream by looping through it. So, probably can't * be called twice on the same list. * * @return int count of notices listed. diff --git a/plugins/Facebook/facebookhome.php b/plugins/Facebook/facebookhome.php index ee6e6620b..91c0cc6b8 100644 --- a/plugins/Facebook/facebookhome.php +++ b/plugins/Facebook/facebookhome.php @@ -108,7 +108,7 @@ class FacebookhomeAction extends FacebookAction $user = User::staticGet('nickname', $nickname); if (!$user) { - $this->showLoginForm(_("Server error. Could not get user.")); + $this->showLoginForm(_("Server error - couldn't get user!")); } $flink = DB_DataObject::factory('foreign_link'); diff --git a/plugins/LinkbackPlugin.php b/plugins/LinkbackPlugin.php index bc433b896..915d15c07 100644 --- a/plugins/LinkbackPlugin.php +++ b/plugins/LinkbackPlugin.php @@ -125,7 +125,7 @@ class LinkbackPlugin extends Plugin if (!extension_loaded('xmlrpc')) { if (!dl('xmlrpc.so')) { - common_log(LOG_ERR, "Cannot pingback; xmlrpc extension not available."); + common_log(LOG_ERR, "Can't pingback; xmlrpc extension not available."); } } diff --git a/plugins/Meteor/MeteorPlugin.php b/plugins/Meteor/MeteorPlugin.php index f3cbc3eea..5b345d7c2 100644 --- a/plugins/Meteor/MeteorPlugin.php +++ b/plugins/Meteor/MeteorPlugin.php @@ -85,7 +85,7 @@ class MeteorPlugin extends RealtimePlugin // May throw an exception. $this->_socket = stream_socket_client("tcp://{$controlserver}:{$this->controlport}"); if (!$this->_socket) { - throw new Exception("Could not connect to {$controlserver} on {$this->controlport}"); + throw new Exception("Couldn't connect to {$controlserver} on {$this->controlport}"); } } diff --git a/plugins/OpenID/openid.php b/plugins/OpenID/openid.php index cd042226b..ff7a93899 100644 --- a/plugins/OpenID/openid.php +++ b/plugins/OpenID/openid.php @@ -36,7 +36,7 @@ function oid_store() { static $store = null; if (!$store) { - # Cannot be called statically + # Can't be called statically $user = new User(); $conn = $user->getDatabaseConnection(); $store = new Auth_OpenID_MySQLStore($conn); @@ -192,7 +192,7 @@ function oid_authenticate($openid_url, $returnto, $immediate=false) $form_html = preg_replace('/&/', '&', $form_html); - // Display an error if the form markup could not be generated; + // Display an error if the form markup couldn't be generated; // otherwise, render the HTML. if (Auth_OpenID::isFailure($form_html)) { common_server_error(sprintf(_('Could not create OpenID form: %s'), $form_html->message)); diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index 6a155b301..671e3c7af 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -126,7 +126,7 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon $conn->disconnect(); - // XXX: Could not find a less brutal way to blow + // XXX: Couldn't find a less brutal way to blow // away a cached connection global $_DB_DATAOBJECT; @@ -188,7 +188,7 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon if (empty($more_friends)) { common_log(LOG_WARNING, $this->name() . - " - Could not retrieve page $i " . + " - Couldn't retrieve page $i " . "of Twitter user $flink->foreign_id friends."); continue; } else { @@ -222,11 +222,11 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon if (!save_twitter_user($friend_id, $friend_name)) { common_log(LOG_WARNING, $this-name() . - " - Could not save $screen_name's friend, $friend_name."); + " - Couldn't save $screen_name's friend, $friend_name."); continue; } - // Check to see if there is a related local user + // Check to see if there's a related local user $friend_flink = Foreign_link::getByForeignID($friend_id, TWITTER_SERVICE); diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index ab610e553..b5428316b 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -147,7 +147,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $conn->disconnect(); - // XXX: Could not find a less brutal way to blow + // XXX: Couldn't find a less brutal way to blow // away a cached connection global $_DB_DATAOBJECT; @@ -158,7 +158,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon { if (empty($flink)) { common_log(LOG_WARNING, $this->name() . - " - Cannot retrieve Foreign_link for foreign ID $fid"); + " - Can't retrieve Foreign_link for foreign ID $fid"); return; } @@ -458,7 +458,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $profile = Profile::staticGet($profile_id); if (empty($profile)) { - common_debug($this->name() . " - Could not get profile: $profile_id!"); + common_debug($this->name() . " - Couldn't get profile: $profile_id!"); return; } @@ -537,7 +537,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $ok = file_put_contents($avatarfile, $response->getBody()); if (!$ok) { common_log(LOG_WARNING, $this->name() . - " - Could not open file $filename"); + " - Couldn't open file $filename"); return false; } } else { diff --git a/plugins/UserFlag/flagprofile.php b/plugins/UserFlag/flagprofile.php index 84c343c48..c72b74c6a 100644 --- a/plugins/UserFlag/flagprofile.php +++ b/plugins/UserFlag/flagprofile.php @@ -135,7 +135,7 @@ class FlagprofileAction extends Action $ufp->created = common_sql_now(); if (!$ufp->insert()) { - throw new ServerException(sprintf(_("Could not flag profile '%s' with flag '%s'."), + throw new ServerException(sprintf(_("Couldn't flag profile '%s' with flag '%s'."), $this->profile->nickname, $this->flag)); } diff --git a/scripts/console.php b/scripts/console.php index 2413f5079..41dd43f28 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -90,7 +90,7 @@ function readline_emulation($prompt) if ($retval == 0) { return $line; } elseif ($retval == 127) { - // Could not execute bash even though we thought we saw it. + // Couldn't execute bash even though we thought we saw it. // Shell probably spit out an error message, sorry :( // Fall through to fgets()... } else { diff --git a/scripts/createsim.php b/scripts/createsim.php index 592853f86..1266a9700 100644 --- a/scripts/createsim.php +++ b/scripts/createsim.php @@ -85,7 +85,7 @@ function newSub($i) $from = User::staticGet('nickname', $fromnick); if (empty($from)) { - throw new Exception("Cannot find user '$fromnick'."); + throw new Exception("Can't find user '$fromnick'."); } $t = rand(0, $i - 1); @@ -102,7 +102,7 @@ function newSub($i) $to = User::staticGet('nickname', $tunic); if (empty($to)) { - throw new Exception("Cannot find user '$tunic'."); + throw new Exception("Can't find user '$tunic'."); } subs_subscribe_to($from, $to); diff --git a/scripts/deleteuser.php b/scripts/deleteuser.php index 39331f1a8..52389123c 100644 --- a/scripts/deleteuser.php +++ b/scripts/deleteuser.php @@ -39,14 +39,14 @@ if (have_option('i', 'id')) { $id = get_option_value('i', 'id'); $user = User::staticGet('id', $id); if (empty($user)) { - print "Cannot find user with ID $id\n"; + print "Can't find user with ID $id\n"; exit(1); } } else if (have_option('n', 'nickname')) { $nickname = get_option_value('n', 'nickname'); $user = User::staticGet('nickname', $nickname); if (empty($user)) { - print "Cannot find user with nickname '$nickname'\n"; + print "Can't find user with nickname '$nickname'\n"; exit(1); } } else { diff --git a/scripts/fixup_utf8.php b/scripts/fixup_utf8.php index 5581633ec..5a9fba7c3 100755 --- a/scripts/fixup_utf8.php +++ b/scripts/fixup_utf8.php @@ -76,7 +76,7 @@ class UTF8FixerUpper $succ = mysqli_set_charset($conn, $charset); if (!$succ) { - echo "ERROR: Could not set charset\n"; + echo "ERROR: couldn't set charset\n"; $db->disconnect(); return NULL; } diff --git a/scripts/makegroupadmin.php b/scripts/makegroupadmin.php index 07f980d58..a68798451 100644 --- a/scripts/makegroupadmin.php +++ b/scripts/makegroupadmin.php @@ -67,7 +67,7 @@ try { $member->created = common_sql_now(); if (!$member->insert()) { - throw new Exception("Cannot add '$nickname' to '$groupname'."); + throw new Exception("Can't add '$nickname' to '$groupname'."); } } @@ -80,7 +80,7 @@ try { $member->is_admin = 1; if (!$member->update($orig)) { - throw new Exception("Cannot make '$nickname' admin of '$groupname'."); + throw new Exception("Can't make '$nickname' admin of '$groupname'."); } } catch (Exception $e) { diff --git a/scripts/registeruser.php b/scripts/registeruser.php index 8aab325b7..5d9c8862d 100644 --- a/scripts/registeruser.php +++ b/scripts/registeruser.php @@ -60,7 +60,7 @@ try { 'fullname' => $fullname)); if (empty($user)) { - throw new Exception("Cannot register user '$nickname' with password '$password' and fullname '$fullname'."); + throw new Exception("Can't register user '$nickname' with password '$password' and fullname '$fullname'."); } if (!empty($email)) { @@ -71,7 +71,7 @@ try { if (!$user->updateKeys($orig)) { print "Failed!\n"; - throw new Exception("Cannot update email address."); + throw new Exception("Can't update email address."); } } diff --git a/scripts/showcache.php b/scripts/showcache.php index 6b00a8f7b..f17979572 100644 --- a/scripts/showcache.php +++ b/scripts/showcache.php @@ -58,7 +58,7 @@ print "Checking key '$k'...\n"; $c = common_memcache(); if (empty($c)) { - die("Cannot initialize cache object!\n"); + die("Can't initialize cache object!\n"); } $obj = $c->get($k); diff --git a/scripts/sitemap.php b/scripts/sitemap.php index ee5d33e1e..f8c392146 100755 --- a/scripts/sitemap.php +++ b/scripts/sitemap.php @@ -377,11 +377,11 @@ function write_file($path, $data) } if (($fh_out = fopen($path,'w')) === false) { - error("Could not open $path for writing."); + error("couldn't open $path for writing."); } if (fwrite($fh_out, $data) === false) { - error("Could not write to $path."); + error("couldn't write to $path."); } } diff --git a/scripts/update_translations.php b/scripts/update_translations.php index 8d4c9d3d2..580c472ee 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -98,7 +98,7 @@ foreach ($languages as $language) { $new_file = curl_get_file($file_url); if ($new_file === FALSE) { - echo "Could not retrieve .po file for $code: $file_url\n"; + echo "Couldn't retrieve .po file for $code: $file_url\n"; continue; } -- cgit v1.2.3-54-g00ecf From 5ab709b73977131813884558bf56d97172a7aa26 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 8 Nov 2009 23:32:15 +0100 Subject: Remove more contractions * doesn't * won't * isn't * don't --- actions/allrss.php | 2 +- actions/apiaccountratelimitstatus.php | 2 +- actions/apifriendshipsdestroy.php | 2 +- actions/attachment.php | 4 ++-- actions/avatarbynickname.php | 2 +- actions/groupblock.php | 2 +- actions/login.php | 2 +- actions/logout.php | 2 +- actions/newmessage.php | 2 +- actions/newnotice.php | 2 +- actions/opensearch.php | 2 +- actions/passwordsettings.php | 2 +- actions/register.php | 2 +- actions/showgroup.php | 2 +- actions/showmessage.php | 8 ++++---- actions/shownotice.php | 6 +++--- actions/showstream.php | 2 +- actions/sup.php | 2 +- actions/twitapisearchatom.php | 2 +- actions/twitapitrends.php | 2 +- classes/File_redirection.php | 8 ++++---- classes/Notice.php | 6 +++--- classes/Profile.php | 4 ++-- classes/User.php | 6 +++--- lib/api.php | 14 +++++++------- lib/apiauth.php | 2 +- lib/dberroraction.php | 6 +++--- lib/error.php | 4 ++-- lib/htmloutputter.php | 2 +- lib/imagefile.php | 2 +- lib/jabber.php | 2 +- lib/mail.php | 6 +++--- lib/noticelist.php | 4 ++-- lib/queuehandler.php | 12 ++++++------ lib/rssaction.php | 2 +- lib/search_engines.php | 2 +- lib/util.php | 12 ++++++------ lib/xmloutputter.php | 2 +- lib/xmppqueuehandler.php | 2 +- plugins/Autocomplete/autocomplete.php | 2 +- plugins/BlogspamNetPlugin.php | 2 +- plugins/Facebook/FBConnectAuth.php | 4 ++-- plugins/Facebook/FacebookPlugin.php | 4 ++-- plugins/Facebook/facebook/facebook.php | 8 ++++---- plugins/Facebook/facebook/facebook_desktop.php | 2 +- plugins/Facebook/facebook/facebookapi_php5_restlib.php | 6 +++--- plugins/Facebook/facebook/jsonwrapper/jsonwrapper.php | 2 +- plugins/Facebook/facebookaction.php | 6 +++--- plugins/GeonamesPlugin.php | 8 ++++---- plugins/OpenID/finishopenidlogin.php | 4 ++-- plugins/OpenID/openid.php | 2 +- plugins/PiwikAnalyticsPlugin.php | 2 +- plugins/Realtime/RealtimePlugin.php | 2 +- plugins/TwitterBridge/daemons/synctwitterfriends.php | 2 +- plugins/TwitterBridge/daemons/twitterstatusfetcher.php | 4 ++-- plugins/TwitterBridge/twitter.php | 2 +- scripts/console.php | 4 ++-- scripts/maildaemon.php | 2 +- scripts/xmppconfirmhandler.php | 2 +- 59 files changed, 110 insertions(+), 110 deletions(-) diff --git a/actions/allrss.php b/actions/allrss.php index 28b1be27d..4a5d15c7b 100644 --- a/actions/allrss.php +++ b/actions/allrss.php @@ -56,7 +56,7 @@ class AllrssAction extends Rss10Action * * @param array $args Web and URL arguments * - * @return boolean false if user doesn't exist + * @return boolean false if user does not exist */ function prepare($args) { diff --git a/actions/apiaccountratelimitstatus.php b/actions/apiaccountratelimitstatus.php index 96179f175..c7c0e7c00 100644 --- a/actions/apiaccountratelimitstatus.php +++ b/actions/apiaccountratelimitstatus.php @@ -36,7 +36,7 @@ if (!defined('STATUSNET')) { require_once INSTALLDIR . '/lib/apibareauth.php'; /** - * We don't have a rate limit, but some clients check this method. + * We do not have a rate limit, but some clients check this method. * It always returns the same thing: 150 hits left. * * @category API diff --git a/actions/apifriendshipsdestroy.php b/actions/apifriendshipsdestroy.php index 3d9b7e001..fb73624c9 100644 --- a/actions/apifriendshipsdestroy.php +++ b/actions/apifriendshipsdestroy.php @@ -113,7 +113,7 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction return; } - // Don't allow unsubscribing from yourself! + // Do not allow unsubscribing from yourself! if ($this->user->id == $this->other->id) { $this->clientError( diff --git a/actions/attachment.php b/actions/attachment.php index 6981354d1..ca9e57845 100644 --- a/actions/attachment.php +++ b/actions/attachment.php @@ -146,7 +146,7 @@ class AttachmentAction extends Action } /** - * Don't show local navigation + * Do not show local navigation * * @return void */ @@ -170,7 +170,7 @@ class AttachmentAction extends Action } /** - * Don't show page notice + * Do not show page notice * * @return void */ diff --git a/actions/avatarbynickname.php b/actions/avatarbynickname.php index 537950792..1a6925e11 100644 --- a/actions/avatarbynickname.php +++ b/actions/avatarbynickname.php @@ -49,7 +49,7 @@ class AvatarbynicknameAction extends Action * * @param array $args query arguments * - * @return boolean false if nickname or user isn't found + * @return boolean false if nickname or user is not found */ function handle($args) { diff --git a/actions/groupblock.php b/actions/groupblock.php index 979a56a81..133101eb7 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -95,7 +95,7 @@ class GroupblockAction extends Action $this->clientError(_('User is already blocked from group.')); return false; } - // XXX: could have proactive blocks, but we don't have UI for it. + // XXX: could have proactive blocks, but we do not have UI for it. if (!$this->profile->isMember($this->group)) { $this->clientError(_('User is not a member of group.')); return false; diff --git a/actions/login.php b/actions/login.php index ad57dd667..679817520 100644 --- a/actions/login.php +++ b/actions/login.php @@ -159,7 +159,7 @@ class LoginAction extends Action $url = common_get_returnto(); if ($url) { - // We don't have to return to it again + // We do not have to return to it again common_set_returnto(null); } else { $url = common_local_url('all', diff --git a/actions/logout.php b/actions/logout.php index 1e0adae57..7e768fca6 100644 --- a/actions/logout.php +++ b/actions/logout.php @@ -81,7 +81,7 @@ class LogoutAction extends Action { common_set_user(null); common_real_login(false); // not logged in - common_forgetme(); // don't log back in! + common_forgetme(); // do not log back in! } } diff --git a/actions/newmessage.php b/actions/newmessage.php index 0db2e7181..73307fdfc 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -61,7 +61,7 @@ class NewmessageAction extends Action /** * Title of the page * - * Note that this usually doesn't get called unless something went wrong + * Note that this usually does not get called unless something went wrong * * @return string page title */ diff --git a/actions/newnotice.php b/actions/newnotice.php index fbd7ab6bc..fc06e5c98 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -59,7 +59,7 @@ class NewnoticeAction extends Action /** * Title of the page * - * Note that this usually doesn't get called unless something went wrong + * Note that this usually does not get called unless something went wrong * * @return string page title */ diff --git a/actions/opensearch.php b/actions/opensearch.php index 8ebb5fc82..3136380b0 100644 --- a/actions/opensearch.php +++ b/actions/opensearch.php @@ -52,7 +52,7 @@ class OpensearchAction extends Action * * @param array $args query arguments * - * @return boolean false if user doesn't exist + * @return boolean false if user does not exist */ function handle($args) { diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php index 87eb45a7d..6658d279f 100644 --- a/actions/passwordsettings.php +++ b/actions/passwordsettings.php @@ -97,7 +97,7 @@ class PasswordsettingsAction extends AccountSettingsAction $this->elementStart('ul', 'form_data'); - // Users who logged in with OpenID won't have a pwd + // Users who logged in with OpenID will not have a pwd if ($user->password) { $this->elementStart('li'); $this->password('oldpassword', _('Old password')); diff --git a/actions/register.php b/actions/register.php index 584ad3ead..69c50faca 100644 --- a/actions/register.php +++ b/actions/register.php @@ -174,7 +174,7 @@ class RegisterAction extends Action $bio = $this->trimmed('bio'); $location = $this->trimmed('location'); - // We don't trim these... whitespace is OK in a password! + // We do not trim these... whitespace is OK in a password! $password = $this->arg('password'); $confirm = $this->arg('confirm'); diff --git a/actions/showgroup.php b/actions/showgroup.php index a4af29391..ae956befa 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -418,7 +418,7 @@ class ShowgroupAction extends GroupDesignAction // XXX: WORM cache this $members = $this->group->getMembers(); $members_count = 0; - /** $member->count() doesn't work. */ + /** $member->count() does not work. */ while ($members->fetch()) { $members_count++; } diff --git a/actions/showmessage.php b/actions/showmessage.php index db757948b..cf3a819c1 100644 --- a/actions/showmessage.php +++ b/actions/showmessage.php @@ -137,7 +137,7 @@ class ShowmessageAction extends MailboxAction } /** - * Don't show local navigation + * Do not show local navigation * * @return void */ @@ -147,7 +147,7 @@ class ShowmessageAction extends MailboxAction } /** - * Don't show page notice + * Do not show page notice * * @return void */ @@ -157,7 +157,7 @@ class ShowmessageAction extends MailboxAction } /** - * Don't show aside + * Do not show aside * * @return void */ @@ -167,7 +167,7 @@ class ShowmessageAction extends MailboxAction } /** - * Don't show any instructions + * Do not show any instructions * * @return string */ diff --git a/actions/shownotice.php b/actions/shownotice.php index 5d16fdad9..688089f02 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -208,7 +208,7 @@ class ShownoticeAction extends OwnerDesignAction } /** - * Don't show local navigation + * Do not show local navigation * * @return void */ @@ -234,7 +234,7 @@ class ShownoticeAction extends OwnerDesignAction } /** - * Don't show page notice + * Do not show page notice * * @return void */ @@ -244,7 +244,7 @@ class ShownoticeAction extends OwnerDesignAction } /** - * Don't show aside + * Do not show aside * * @return void */ diff --git a/actions/showstream.php b/actions/showstream.php index 663638c18..4952ebdb7 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -253,7 +253,7 @@ class ShowstreamAction extends ProfileAction } } -// We don't show the author for a profile, since we already know who it is! +// We do not show the author for a profile, since we already know who it is! class ProfileNoticeList extends NoticeList { diff --git a/actions/sup.php b/actions/sup.php index 5daf0a1c1..a199f247e 100644 --- a/actions/sup.php +++ b/actions/sup.php @@ -61,7 +61,7 @@ class SupAction extends Action $notice = new Notice(); # XXX: cache this. Depends on how big this protocol becomes; - # Re-doing this query every 15 seconds isn't the end of the world. + # Re-doing this query every 15 seconds is not the end of the world. $divider = common_sql_date(time() - $seconds); diff --git a/actions/twitapisearchatom.php b/actions/twitapisearchatom.php index 7d618c471..511d7cdc6 100644 --- a/actions/twitapisearchatom.php +++ b/actions/twitapisearchatom.php @@ -250,7 +250,7 @@ class TwitapisearchatomAction extends ApiAction } // FIXME: this alternate link is not quite right because our - // web-based notice search doesn't support a rpp (responses per + // web-based notice search does not support a rpp (responses per // page) param yet $this->element('link', array('type' => 'text/html', diff --git a/actions/twitapitrends.php b/actions/twitapitrends.php index 779405e6d..2d17e77cc 100644 --- a/actions/twitapitrends.php +++ b/actions/twitapitrends.php @@ -55,7 +55,7 @@ class TwitapitrendsAction extends ApiAction * * @param array $args Web and URL arguments * - * @return boolean false if user doesn't exist + * @return boolean false if user does not exist */ function prepare($args) { diff --git a/classes/File_redirection.php b/classes/File_redirection.php index 08a6e8d8b..c951c1ee7 100644 --- a/classes/File_redirection.php +++ b/classes/File_redirection.php @@ -53,7 +53,7 @@ class File_redirection extends Memcached_DataObject 'connect_timeout' => 10, // # seconds to wait 'max_redirs' => $redirs, // # max number of http redirections to follow 'follow_redirects' => true, // Follow redirects - 'store_body' => false, // We won't need body content here. + 'store_body' => false, // We will not need body content here. )); return $request; } @@ -81,12 +81,12 @@ class File_redirection extends Memcached_DataObject } try { $request = self::_commonHttp($short_url, $redirs); - // Don't include body in output + // Do not include body in output $request->setMethod(HTTP_Request2::METHOD_HEAD); $response = $request->send(); if (405 == $response->getStatus()) { - // Server doesn't support HEAD method? Can this really happen? + // Server does not support HEAD method? Can this really happen? // We'll try again as a GET and ignore the response data. $request = self::_commonHttp($short_url, $redirs); $response = $request->send(); @@ -178,7 +178,7 @@ class File_redirection extends Memcached_DataObject case 'aim': case 'jabber': case 'xmpp': - // don't touch anything + // do not touch anything break; default: diff --git a/classes/Notice.php b/classes/Notice.php index 862d4c762..0c54b6b67 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -146,7 +146,7 @@ class Notice extends Memcached_DataObject /* Add them to the database */ foreach(array_unique($hashtags) as $hashtag) { - /* elide characters we don't want in the tag */ + /* elide characters we do not want in the tag */ $this->saveTag($hashtag); } return true; @@ -1105,7 +1105,7 @@ class Notice extends Memcached_DataObject if (empty($recipient)) { continue; } - // Don't save replies from blocked profile to local user + // Do not save replies from blocked profile to local user $recipient_user = User::staticGet('id', $recipient->id); if (!empty($recipient_user) && $recipient_user->hasBlocked($sender)) { continue; @@ -1131,7 +1131,7 @@ class Notice extends Memcached_DataObject $tagged = Profile_tag::getTagged($sender->id, $tag); foreach ($tagged as $t) { if (!$replied[$t->id]) { - // Don't save replies from blocked profile to local user + // Do not save replies from blocked profile to local user $t_user = User::staticGet('id', $t->id); if ($t_user && $t_user->hasBlocked($sender)) { continue; diff --git a/classes/Profile.php b/classes/Profile.php index 7c1e9db33..a50f4951d 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -101,7 +101,7 @@ class Profile extends Memcached_DataObject } foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) { - # We don't do a scaled one if original is our scaled size + # We do not do a scaled one if original is our scaled size if (!($avatar->width == $size && $avatar->height == $size)) { $scaled_filename = $imagefile->resize($size); @@ -174,7 +174,7 @@ class Profile extends Memcached_DataObject function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0, $since=null) { - // XXX: I'm not sure this is going to be any faster. It probably isn't. + // XXX: I'm not sure this is going to be any faster. It probably is not. $ids = Notice::stream(array($this, '_streamDirect'), array(), 'profile:notice_ids:' . $this->id, diff --git a/classes/User.php b/classes/User.php index 9b90ce61b..c529b82e0 100644 --- a/classes/User.php +++ b/classes/User.php @@ -87,7 +87,7 @@ class User extends Memcached_DataObject return (is_null($sub)) ? false : true; } - // 'update' won't write key columns, so we have to do it ourselves. + // 'update' will not write key columns, so we have to do it ourselves. function updateKeys(&$orig) { @@ -384,7 +384,7 @@ class User extends Memcached_DataObject return false; } - // Otherwise, cache doesn't have all faves; + // Otherwise, cache does not have all faves; // fall through to the default } @@ -463,7 +463,7 @@ class User extends Memcached_DataObject { $cache = common_memcache(); if ($cache) { - // Faves don't happen chronologically, so we need to blow + // Faves do not happen chronologically, so we need to blow // ;last cache, too $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id)); $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last')); diff --git a/lib/api.php b/lib/api.php index a1236ab7e..fb4c4289b 100644 --- a/lib/api.php +++ b/lib/api.php @@ -66,7 +66,7 @@ class ApiAction extends Action * * @param array $args Web and URL arguments * - * @return boolean false if user doesn't exist + * @return boolean false if user does not exist */ function prepare($args) @@ -138,7 +138,7 @@ class ApiAction extends Action $design = null; $user = $profile->getUser(); - // Note: some profiles don't have an associated user + // Note: some profiles do not have an associated user if (!empty($user)) { $design = $user->getDesign(); @@ -203,7 +203,7 @@ class ApiAction extends Action if ($get_notice) { $notice = $profile->getCurrentNotice(); if ($notice) { - # don't get user! + # do not get user! $twitter_user['status'] = $this->twitterStatusArray($notice, false); } } @@ -263,7 +263,7 @@ class ApiAction extends Action } if ($include_user) { - # Don't get notice (recursive!) + # Do not get notice (recursive!) $twitter_user = $this->twitterUserArray($profile, false); $twitter_status['user'] = $twitter_user; } @@ -1074,7 +1074,7 @@ class ApiAction extends Action function initTwitterAtom() { $this->startXML(); - // FIXME: don't hardcode the language here! + // FIXME: do not hardcode the language here! $this->elementStart('feed', array('xmlns' => 'http://www.w3.org/2005/Atom', 'xml:lang' => 'en-US', 'xmlns:thr' => 'http://purl.org/syndication/thread/1.0')); @@ -1116,7 +1116,7 @@ class ApiAction extends Action return User::staticGet('nickname', $nickname); } else if ($this->arg('user_id')) { // This is to ensure that a non-numeric user_id still - // overrides screen_name even if it doesn't get used + // overrides screen_name even if it does not get used if (is_numeric($this->arg('user_id'))) { return User::staticGet('id', $this->arg('user_id')); } @@ -1146,7 +1146,7 @@ class ApiAction extends Action return User_group::staticGet('nickname', $nickname); } else if ($this->arg('group_id')) { // This is to ensure that a non-numeric user_id still - // overrides screen_name even if it doesn't get used + // overrides screen_name even if it does not get used if (is_numeric($this->arg('group_id'))) { return User_group::staticGet('id', $this->arg('group_id')); } diff --git a/lib/apiauth.php b/lib/apiauth.php index 2f2e44a26..b8189f15d 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -87,7 +87,7 @@ class ApiAuthAction extends ApiAction } /** - * Check for a user specified via HTTP basic auth. If there isn't + * Check for a user specified via HTTP basic auth. If there is not * one, try to get one by outputting the basic auth header. * * @return boolean true or false diff --git a/lib/dberroraction.php b/lib/dberroraction.php index 2cb66a022..893797b70 100644 --- a/lib/dberroraction.php +++ b/lib/dberroraction.php @@ -39,7 +39,7 @@ require_once INSTALLDIR.'/lib/servererroraction.php'; * * This only occurs if there's been a DB_DataObject_Error that's * reported through PEAR, so we try to avoid doing anything that connects - * to the DB, so we don't trigger it again. + * to the DB, so we do not trigger it again. * * @category Action * @package StatusNet @@ -62,12 +62,12 @@ class DBErrorAction extends ServerErrorAction function getLanguage() { - // Don't try to figure out user's language; just show the page + // Do not try to figure out user's language; just show the page return common_config('site', 'language'); } function showPrimaryNav() { - // don't show primary nav + // do not show primary nav } } diff --git a/lib/error.php b/lib/error.php index 3162cfe65..5ed5dec1b 100644 --- a/lib/error.php +++ b/lib/error.php @@ -104,11 +104,11 @@ class ErrorAction extends Action { parent::showPage(); - // We don't want to have any more output after this + // We do not want to have any more output after this exit(); } - // Overload a bunch of stuff so the page isn't too bloated + // Overload a bunch of stuff so the page is not too bloated function showBody() { diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index c2ec83c28..73bd9ce81 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -76,7 +76,7 @@ class HTMLOutputter extends XMLOutputter /** * Start an HTML document * - * If $type isn't specified, will attempt to do content negotiation. + * If $type is not specified, will attempt to do content negotiation. * * Attempts to do content negotiation for language, also. * diff --git a/lib/imagefile.php b/lib/imagefile.php index cf1668f20..edc7218d0 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -119,7 +119,7 @@ class ImageFile return; } - // Don't crop/scale if it isn't necessary + // Do not crop/scale if it is not necessary if ($size === $this->width && $size === $this->height && $x === 0 diff --git a/lib/jabber.php b/lib/jabber.php index 73f2ec660..d666fcbb3 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -437,7 +437,7 @@ function jabber_public_notice($notice) $public = common_config('xmpp', 'public'); - // FIXME PRIV don't send out private messages here + // FIXME PRIV do not send out private messages here // XXX: should we send out non-local messages if public,localonly // = false? I think not diff --git a/lib/mail.php b/lib/mail.php index 5218059e9..79630b721 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -467,7 +467,7 @@ function mail_notify_nudge($from, $to) "these days and is inviting you to post some news.\n\n". "So let's hear from you :)\n\n". "%3\$s\n\n". - "Don't reply to this email; it won't get to them.\n\n". + "Do not reply to this email. It will not get to them.\n\n". "With kind regards,\n". "%4\$s\n"), $from_profile->getBestName(), @@ -516,7 +516,7 @@ function mail_notify_message($message, $from=null, $to=null) "------------------------------------------------------\n\n". "You can reply to their message here:\n\n". "%4\$s\n\n". - "Don't reply to this email; it won't get to them.\n\n". + "Do not reply to this email. It will not get to them.\n\n". "With kind regards,\n". "%5\$s\n"), $from_profile->getBestName(), @@ -532,7 +532,7 @@ function mail_notify_message($message, $from=null, $to=null) /** * notify a user that one of their notices has been chosen as a 'fave' * - * Doesn't check that the user has an email address nor if they + * Does not check that the user has an email address nor if they * want to receive notification of faves. Maybe this happens higher * up the stack...? * diff --git a/lib/noticelist.php b/lib/noticelist.php index 027db2b3e..206724676 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -347,7 +347,7 @@ class NoticeListItem extends Widget * show the link to the main page for the notice * * Displays a link to the page for a notice, with "relative" time. Tries to - * get remote notice URLs correct, but doesn't always succeed. + * get remote notice URLs correct, but does not always succeed. * * @return void */ @@ -483,7 +483,7 @@ class NoticeListItem extends Widget * show a link to reply to the current notice * * Should either do the reply in the current notice form (if available), or - * link out to the notice-posting form. A little flakey, doesn't always work. + * link out to the notice-posting form. A little flakey, does not always work. * * @return void */ diff --git a/lib/queuehandler.php b/lib/queuehandler.php index cd43b1e09..7c07ca4f9 100644 --- a/lib/queuehandler.php +++ b/lib/queuehandler.php @@ -96,8 +96,8 @@ class QueueHandler extends Daemon * Initialization, run when the queue handler starts. * If this function indicates failure, the handler run will be aborted. * - * @fixme run() will abort if this doesn't return true, - * but some subclasses don't bother. + * @fixme run() will abort if this does not return true, + * but some subclasses do not bother. * @return boolean true on success, false on failure */ function start() @@ -108,8 +108,8 @@ class QueueHandler extends Daemon * Cleanup, run when the queue handler ends. * If this function indicates failure, a warning will be logged. * - * @fixme run() will throw warnings if this doesn't return true, - * but many subclasses don't bother. + * @fixme run() will throw warnings if this does not return true, + * but many subclasses do not bother. * @return boolean true on success, false on failure */ function finish() @@ -137,7 +137,7 @@ class QueueHandler extends Daemon * method, which passes control back to our handle_notice() method for * each notice that comes in on the queue. * - * Most of the time this won't need to be overridden in a subclass. + * Most of the time this will not need to be overridden in a subclass. * * @return boolean true on success, false on failure */ @@ -173,7 +173,7 @@ class QueueHandler extends Daemon * Called by QueueHandler after each handled item or empty polling cycle. * This is a good time to e.g. service your XMPP connection. * - * Doesn't need to be overridden if there's no maintenance to do. + * Does not need to be overridden if there's no maintenance to do. * * @param int $timeout seconds to sleep if there's nothing to do */ diff --git a/lib/rssaction.php b/lib/rssaction.php index faf6bec7d..0e84a65e9 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -386,7 +386,7 @@ class Rss10Action extends Action return null; } - // FIXME: doesn't handle modified profiles, avatars, deleted notices + // FIXME: does not handle modified profiles, avatars, deleted notices return strtotime($this->notices[0]->created); } diff --git a/lib/search_engines.php b/lib/search_engines.php index 69f6ff468..82713235c 100644 --- a/lib/search_engines.php +++ b/lib/search_engines.php @@ -119,7 +119,7 @@ class MySQLSearch extends SearchEngine return true; } else if ('identica_notices' === $this->table) { - // Don't show imported notices + // Do not show imported notices $this->target->whereAdd('notice.is_local != ' . Notice::GATEWAY); if (strtolower($q) != $q) { diff --git a/lib/util.php b/lib/util.php index dde3fb48f..8f7521e59 100644 --- a/lib/util.php +++ b/lib/util.php @@ -62,7 +62,7 @@ function common_init_language() $locale_set = common_init_locale($language); setlocale(LC_CTYPE, 'C'); - // So we don't have to make people install the gettext locales + // So we do not have to make people install the gettext locales $path = common_config('site','locale_path'); bindtextdomain("statusnet", $path); bind_textdomain_codeset("statusnet", "UTF-8"); @@ -139,7 +139,7 @@ function common_check_user($nickname, $password) } } }else{ - //no handler indicated the credentials were valid, and we know their not valid because the user isn't in the database + //no handler indicated the credentials were valid, and we know their not valid because the user is not in the database return false; } } else { @@ -396,7 +396,7 @@ function common_current_user() } // Logins that are 'remembered' aren't 'real' -- they're subject to -// cookie-stealing. So, we don't let them do certain things. New reg, +// cookie-stealing. So, we do not let them do certain things. New reg, // OpenID, and password logins _are_ real. function common_real_login($real=true) @@ -1147,7 +1147,7 @@ function common_accept_to_prefs($accept, $def = '*/*') $parts = explode(',', $accept); foreach($parts as $part) { - // FIXME: doesn't deal with params like 'text/html; level=1' + // FIXME: does not deal with params like 'text/html; level=1' @list($value, $qpart) = explode(';', trim($part)); $match = array(); if(!isset($qpart)) { @@ -1346,7 +1346,7 @@ function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext) } // FIXME: show error page if we're on the Web - /* Don't execute PHP internal error handler */ + /* Do not execute PHP internal error handler */ return true; } @@ -1448,7 +1448,7 @@ function common_shorten_url($long_url) } global $_shorteners; if (!isset($_shorteners[$svc])) { - //the user selected service doesn't exist, so default to ur1.ca + //the user selected service does not exist, so default to ur1.ca $svc = 'ur1.ca'; } if (!isset($_shorteners[$svc])) { diff --git a/lib/xmloutputter.php b/lib/xmloutputter.php index 5f06e491d..9d862b2d0 100644 --- a/lib/xmloutputter.php +++ b/lib/xmloutputter.php @@ -112,7 +112,7 @@ class XMLOutputter * * Utility for outputting an XML element. A convenient wrapper * for a bunch of longer XMLWriter calls. This is best for - * when an element doesn't have any sub-elements; if that's the + * when an element does not have any sub-elements; if that's the * case, use elementStart() and elementEnd() instead. * * The $content element will be escaped for XML. If you need diff --git a/lib/xmppqueuehandler.php b/lib/xmppqueuehandler.php index 8acdcafe7..29008da64 100644 --- a/lib/xmppqueuehandler.php +++ b/lib/xmppqueuehandler.php @@ -37,7 +37,7 @@ class XmppQueueHandler extends QueueHandler function start() { - # Low priority; we don't want to receive messages + # Low priority; we do not want to receive messages $this->log(LOG_INFO, "INITIALIZE"); $this->conn = jabber_connect($this->_id.$this->transport()); diff --git a/plugins/Autocomplete/autocomplete.php b/plugins/Autocomplete/autocomplete.php index 379390ffd..aeb100cfa 100644 --- a/plugins/Autocomplete/autocomplete.php +++ b/plugins/Autocomplete/autocomplete.php @@ -79,7 +79,7 @@ class AutocompleteAction extends Action function etag() { return '"' . implode(':', array($this->arg('action'), - crc32($this->arg('q')), //the actual string can have funny characters in we don't want showing up in the etag + crc32($this->arg('q')), //the actual string can have funny characters in we do not want showing up in the etag $this->arg('limit'), $this->lastModified())) . '"'; } diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php index 51236001a..bf60fdcaf 100644 --- a/plugins/BlogspamNetPlugin.php +++ b/plugins/BlogspamNetPlugin.php @@ -85,7 +85,7 @@ class BlogspamNetPlugin extends Plugin } else if (preg_match('/^SPAM(:(.*))?$/', $response, $match)) { throw new ClientException(sprintf(_("Spam checker results: %s"), $match[2]), 400); } else if (preg_match('/^OK$/', $response)) { - // don't do anything + // do not do anything } else { throw new ServerException(sprintf(_("Unexpected response from %s: %s"), $this->baseUrl, $response), 500); } diff --git a/plugins/Facebook/FBConnectAuth.php b/plugins/Facebook/FBConnectAuth.php index b909a4977..165477419 100644 --- a/plugins/Facebook/FBConnectAuth.php +++ b/plugins/Facebook/FBConnectAuth.php @@ -71,7 +71,7 @@ class FBConnectauthAction extends Action 'There is already a local user (' . $flink->user_id . ') linked with this Facebook (' . $this->fbuid . ').'); - // We don't want these cookies + // We do not want these cookies getFacebook()->clear_cookie_state(); $this->clientError(_('There is already a local user linked with this Facebook.')); @@ -364,7 +364,7 @@ class FBConnectauthAction extends Action { $url = common_get_returnto(); if ($url) { - // We don't have to return to it again + // We do not have to return to it again common_set_returnto(null); } else { $url = common_local_url('all', diff --git a/plugins/Facebook/FacebookPlugin.php b/plugins/Facebook/FacebookPlugin.php index b68534b24..cd1ad7b45 100644 --- a/plugins/Facebook/FacebookPlugin.php +++ b/plugins/Facebook/FacebookPlugin.php @@ -182,7 +182,7 @@ class FacebookPlugin extends Plugin $login_url = common_local_url('FBConnectAuth'); $logout_url = common_local_url('logout'); - // XXX: Facebook says we don't need this FB_RequireFeatures(), + // XXX: Facebook says we do not need this FB_RequireFeatures(), // but we actually do, for IE and Safari. Gar. $js = '"; } else { diff --git a/plugins/Facebook/facebook/facebook_desktop.php b/plugins/Facebook/facebook/facebook_desktop.php index e79a2ca34..425bb5c7b 100644 --- a/plugins/Facebook/facebook/facebook_desktop.php +++ b/plugins/Facebook/facebook/facebook_desktop.php @@ -93,7 +93,7 @@ class FacebookDesktop extends Facebook { } public function verify_signature($fb_params, $expected_sig) { - // we don't want to verify the signature until we have a valid + // we do not want to verify the signature until we have a valid // session secret if ($this->verify_sig) { return parent::verify_signature($fb_params, $expected_sig); diff --git a/plugins/Facebook/facebook/facebookapi_php5_restlib.php b/plugins/Facebook/facebook/facebookapi_php5_restlib.php index e2a6fe88b..781390002 100755 --- a/plugins/Facebook/facebook/facebookapi_php5_restlib.php +++ b/plugins/Facebook/facebook/facebookapi_php5_restlib.php @@ -46,7 +46,7 @@ class FacebookRestClient { // on canvas pages public $added; public $is_user; - // we don't pass friends list to iframes, but we want to make + // we do not pass friends list to iframes, but we want to make // friends_get really simple in the canvas_user (non-logged in) case. // So we use the canvas_user as default arg to friends_get public $canvas_user; @@ -657,7 +657,7 @@ function toggleDisplay(id, type) { * deleted. * * IMPORTANT: If your application has registered public tags - * that other applications may be using, don't delete those tags! + * that other applications may be using, do not delete those tags! * Doing so can break the FBML ofapplications that are using them. * * @param array $tag_names the names of the tags to delete (optinal) @@ -820,7 +820,7 @@ function toggleDisplay(id, type) { if (is_array($target_ids)) { $target_ids = json_encode($target_ids); - $target_ids = trim($target_ids, "[]"); // we don't want square brackets + $target_ids = trim($target_ids, "[]"); // we do not want square brackets } return $this->call_method('facebook.feed.publishUserAction', diff --git a/plugins/Facebook/facebook/jsonwrapper/jsonwrapper.php b/plugins/Facebook/facebook/jsonwrapper/jsonwrapper.php index 29509deba..9c6c62663 100644 --- a/plugins/Facebook/facebook/jsonwrapper/jsonwrapper.php +++ b/plugins/Facebook/facebook/jsonwrapper/jsonwrapper.php @@ -1,5 +1,5 @@ location_id = $n->geonameId; $location->location_ns = self::NAMESPACE; - // handled, don't continue processing! + // handled, do not continue processing! return false; } } - // Continue processing; we don't have the answer + // Continue processing; we do not have the answer return true; } @@ -217,7 +217,7 @@ class GeonamesPlugin extends Plugin } } - // For some reason we don't know, so pass. + // For some reason we do not know, so pass. return true; } @@ -299,7 +299,7 @@ class GeonamesPlugin extends Plugin $url = 'http://www.geonames.org/' . $location->location_id; - // it's been filled, so don't process further. + // it's been filled, so do not process further. return false; } } diff --git a/plugins/OpenID/finishopenidlogin.php b/plugins/OpenID/finishopenidlogin.php index ff0b451d3..b5d978294 100644 --- a/plugins/OpenID/finishopenidlogin.php +++ b/plugins/OpenID/finishopenidlogin.php @@ -341,7 +341,7 @@ class FinishopenidloginAction extends Action { $url = common_get_returnto(); if ($url) { - # We don't have to return to it again + # We do not have to return to it again common_set_returnto(null); } else { $url = common_local_url('all', @@ -421,7 +421,7 @@ class FinishopenidloginAction extends Action $parts = parse_url($openid); - # If any of these parts exist, this won't work + # If any of these parts exist, this will not work foreach ($bad as $badpart) { if (array_key_exists($badpart, $parts)) { diff --git a/plugins/OpenID/openid.php b/plugins/OpenID/openid.php index cd042226b..4a76a8791 100644 --- a/plugins/OpenID/openid.php +++ b/plugins/OpenID/openid.php @@ -187,7 +187,7 @@ function oid_authenticate($openid_url, $returnto, $immediate=false) $form_html = $auth_request->formMarkup($trust_root, $process_url, $immediate, array('id' => $form_id)); - # XXX: This is cheap, but things choke if we don't escape ampersands + # XXX: This is cheap, but things choke if we do not escape ampersands # in the HTML attributes $form_html = preg_replace('/&/', '&', $form_html); diff --git a/plugins/PiwikAnalyticsPlugin.php b/plugins/PiwikAnalyticsPlugin.php index 54faa0bdb..81ef7c683 100644 --- a/plugins/PiwikAnalyticsPlugin.php +++ b/plugins/PiwikAnalyticsPlugin.php @@ -44,7 +44,7 @@ if (!defined('STATUSNET')) { * 'piwikId' => 'id')); * * Replace 'example.com/piwik/' with the URL to your Piwik installation and - * make sure you don't forget the final /. + * make sure you do not forget the final /. * Replace 'id' with the ID your statusnet installation has in your Piwik * analytics setup - for example '8'. * diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 0c7c1240c..88a87dcf9 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -240,7 +240,7 @@ class RealtimePlugin extends Plugin // FIXME: this code should be abstracted to a neutral third // party, like Notice::asJson(). I'm not sure of the ethics // of refactoring from within a plugin, so I'm just abusing - // the ApiAction method. Don't do this unless you're me! + // the ApiAction method. Do not do this unless you're me! require_once(INSTALLDIR.'/lib/api.php'); diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index 6a155b301..76410c7cb 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -115,7 +115,7 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon // Each child ps needs its own DB connection // Note: DataObject::getDatabaseConnection() creates - // a new connection if there isn't one already + // a new connection if there is not one already $conn = &$flink->getDatabaseConnection(); diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index ab610e553..5d0d83be3 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -136,7 +136,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon // Each child ps needs its own DB connection // Note: DataObject::getDatabaseConnection() creates - // a new connection if there isn't one already + // a new connection if there is not one already $conn = &$flink->getDatabaseConnection(); @@ -499,7 +499,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $avatar->height = 73; } - $avatar->original = 0; // we don't have the original + $avatar->original = 0; // we do not have the original $avatar->mediatype = $mediatype; $avatar->filename = $filename; $avatar->url = Avatar::url($filename); diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 3c6803e49..d48089caa 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -33,7 +33,7 @@ function updateTwitter_user($twitter_id, $screen_name) $fuser->query('BEGIN'); - // Dropping down to SQL because regular DB_DataObject udpate stuff doesn't seem + // Dropping down to SQL because regular DB_DataObject udpate stuff does not seem // to work so good with tables that have multiple column primary keys // Any time we update the uri for a forein user we have to make sure there diff --git a/scripts/console.php b/scripts/console.php index 2413f5079..fecb75b4a 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -60,9 +60,9 @@ function read_input_line($prompt) } /** - * On Unix-like systems where PHP readline extension isn't present, + * On Unix-like systems where PHP readline extension is not present, * -cough- Mac OS X -cough- we can shell out to bash to do it for us. - * This lets us at least handle things like arrow keys, but we don't + * This lets us at least handle things like arrow keys, but we do not * get any entry history. :( * * Shamelessly ripped from when I wrote the same code for MediaWiki. :) diff --git a/scripts/maildaemon.php b/scripts/maildaemon.php index b4e4d9f08..4ec4526ef 100755 --- a/scripts/maildaemon.php +++ b/scripts/maildaemon.php @@ -231,7 +231,7 @@ class MailerDaemon foreach ($parsed->parts as $part) { $this->extract_part($part,$msg,$attachments); } - //we don't want any attachments that are a result of this parsing + //we do not want any attachments that are a result of this parsing return $msg; } diff --git a/scripts/xmppconfirmhandler.php b/scripts/xmppconfirmhandler.php index c7ed15e49..f5f824dee 100755 --- a/scripts/xmppconfirmhandler.php +++ b/scripts/xmppconfirmhandler.php @@ -69,7 +69,7 @@ class XmppConfirmHandler extends XmppQueueHandler continue; } else { $this->log(LOG_INFO, 'Confirmation sent for ' . $confirm->address); - # Mark confirmation sent; need a dupe so we don't have the WHERE clause + # Mark confirmation sent; need a dupe so we do not have the WHERE clause $dupe = Confirm_address::staticGet('code', $confirm->code); if (!$dupe) { common_log(LOG_WARNING, 'Could not refetch confirm', __FILE__); -- cgit v1.2.3-54-g00ecf From 2917fad20966b3d8159b5ff27ce6216801fb7d80 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 8 Nov 2009 23:35:12 +0100 Subject: Revert "More precise field label" This reverts commit 6483fbd8fa4c7bc8da83a9a2e334db9d9a19a77b. "SMS address" header here makes no sense; it would be inconsistent with the other tabs and headings on the same and related pages, and would look very awkward with another giant "SMS" right above it --- actions/smssettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/smssettings.php b/actions/smssettings.php index 9fa7f62fb..672abcef8 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -101,7 +101,7 @@ class SmssettingsAction extends ConnectSettingsAction common_local_url('smssettings'))); $this->elementStart('fieldset', array('id' => 'settings_sms_address')); - $this->element('legend', null, _('SMS address')); + $this->element('legend', null, _('Address')); $this->hidden('token', common_session_token()); if ($user->sms) { -- cgit v1.2.3-54-g00ecf From ccdabf4446a6a5ac0f454a28dee7ced6c05f138d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 8 Nov 2009 23:50:12 +0100 Subject: Rebuild pot file *without* --join-existing to get rid of the cruft. Not sure why "--join-existing" must be in. Only thing I can think of is manual additions, which I could not find. --- locale/statusnet.po | 7831 ++++++++++++++++----------------------------------- 1 file changed, 2477 insertions(+), 5354 deletions(-) diff --git a/locale/statusnet.po b/locale/statusnet.po index 4331b906e..78e1cb51b 100644 --- a/locale/statusnet.po +++ b/locale/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" +"POT-Creation-Date: 2009-11-08 22:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,5288 +16,4119 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" msgstr "" -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." msgstr "" -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " +#: actions/all.php:84 +#, php-format +msgid "%s and friends, page %d" msgstr "" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" +msgid "%s and friends" msgstr "" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:99 #, php-format -msgid "%1$s has invited you to join them on %2$s" +msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 +#: actions/all.php:107 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 +#: actions/all.php:115 #, php-format -msgid "%1$s is now listening to your notices on %2$s." +msgid "Feed for friends of %s (Atom)" msgstr "" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:134 #, php-format -msgid "%1$s's status on %2$s" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s (%s)" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" +#: actions/all.php:165 +msgid "You and friends" msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s and friends" +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s timeline" +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." msgstr "" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." msgstr "" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:101 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "Direct messages to %s" msgstr "" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." msgstr "" -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." msgstr "" -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." msgstr "" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." msgstr "" -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" +#: actions/apifriendshipsshow.php:135 +msgid "Could not determine source user." msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" +#: actions/apifriendshipsshow.php:143 +msgid "Could not find target user." msgstr "" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." msgstr "" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +msgid "Could not create aliases." msgstr "" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." msgstr "" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." msgstr "" -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." msgstr "" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." msgstr "" -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." msgstr "" -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:261 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Description is too long (max %d chars)." msgstr "" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." msgstr "" -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." msgstr "" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." msgstr "" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." +#: actions/apigroupjoin.php:138 +#, php-format +msgid "Could not join user %s to group %s." msgstr "" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." msgstr "" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." +#: actions/apigroupleave.php:124 +#, php-format +msgid "Could not remove user %s to group %s." msgstr "" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" msgstr "" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" msgstr "" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" msgstr "" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." msgstr "" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" +#: actions/apistatusesshow.php:138 +msgid "Status deleted." msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." msgstr "" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#: actions/apistatusesupdate.php:193 +msgid "Not found" msgstr "" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." msgstr "" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +msgid "%s / Favorites from %s" msgstr "" -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" msgstr "" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" msgstr "" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinementions.php:116 #, php-format -msgid "Could not create OpenID form: %s" +msgid "%1$s / Updates mentioning %2$s" msgstr "" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinementions.php:126 #, php-format -msgid "Could not follow user: %s is already on your list." +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" msgstr "" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not redirect to server: %s" +msgid "%s updates from everyone!" msgstr "" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" msgstr "" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." +#: actions/apiusershow.php:96 +msgid "Not found." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." +#: actions/attachment.php:73 +msgid "No such attachment." msgstr "" -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." msgstr "" -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." +#: actions/avatarbynickname.php:64 +msgid "No size." msgstr "" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." msgstr "" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" msgstr "" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" msgstr "" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" msgstr "" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" msgstr "" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." msgstr "" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." msgstr "" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." msgstr "" -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." +#: actions/avatarsettings.php:387 +msgid "Avatar deleted." msgstr "" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" msgstr "" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" msgstr "" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" msgstr "" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" +#: actions/blockedfromgroup.php:93 +#, php-format +msgid "%s blocked profiles, page %d" msgstr "" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" msgstr "" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" msgstr "" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." msgstr "" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" msgstr "" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" msgstr "" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." +#: actions/block.php:149 +msgid "Do not block this user from this group" msgstr "" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" +#: actions/block.php:150 +msgid "Block this user from this group" msgstr "" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" +#: actions/block.php:165 +msgid "You have already blocked this user." msgstr "" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" +#: actions/block.php:170 +msgid "Failed to save block information." msgstr "" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." +#: actions/bookmarklet.php:50 +msgid "Post to " msgstr "" -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." msgstr "" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." msgstr "" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" msgstr "" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" msgstr "" -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." msgstr "" -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." msgstr "" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." msgstr "" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" msgstr "" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" +#: actions/conversation.php:99 +msgid "Conversation" msgstr "" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" msgstr "" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." msgstr "" -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." msgstr "" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" msgstr "" -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" msgstr "" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" msgstr "" -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" msgstr "" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" +#: actions/doc.php:69 +msgid "No such document." msgstr "" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." msgstr "" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +#: actions/editgroup.php:253 +msgid "Could not update group." msgstr "" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +#: actions/editgroup.php:269 +msgid "Options saved." msgstr "" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" +#: actions/emailsettings.php:60 +msgid "Email Settings" msgstr "" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" msgstr "" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." msgstr "" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" msgstr "" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" msgstr "" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" +#: actions/emailsettings.php:121 +msgid "Email Address" msgstr "" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" msgstr "" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" msgstr "" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" msgstr "" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" msgstr "" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" msgstr "" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." msgstr "" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" msgstr "" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." +#: actions/emailsettings.php:333 +msgid "That is already your email address." msgstr "" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." msgstr "" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format +#: actions/emailsettings.php:358 msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +"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 "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." msgstr "" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." msgstr "" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." msgstr "" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." msgstr "" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." msgstr "" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." msgstr "" -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#: actions/favorited.php:67 #, php-format -msgid "New email address for posting to %s" +msgid "Popular notices, page %d" msgstr "" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." msgstr "" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" +#: 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/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" msgstr "" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" msgstr "" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" msgstr "" -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" +#: actions/file.php:34 +msgid "No notice id" msgstr "" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." +#: actions/file.php:38 +msgid "No notice" msgstr "" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" msgstr "" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." msgstr "" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" msgstr "" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." msgstr "" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." msgstr "" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" msgstr "" -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." msgstr "" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." +#: actions/getfile.php:75 +msgid "No such file." msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." +#: actions/getfile.php:79 +msgid "Cannot read file." msgstr "" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" +#: actions/groupblock.php:95 +msgid "User is already blocked from group." msgstr "" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." +#: actions/groupblock.php:100 +msgid "User is not a member of group." msgstr "" -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" msgstr "" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +msgid "Couldn't update your design." msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +msgid "Design preferences saved." msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." +#: actions/grouplogo.php:396 +msgid "Logo updated." msgstr "" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" +#: actions/grouplogo.php:398 +msgid "Failed updating logo." msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" msgstr "" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" +#: actions/groupmembers.php:473 +msgid "Make Admin" msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." +#: actions/groupsearch.php:52 +#, php-format +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 "" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" +#: actions/groupsearch.php:58 +msgid "Group search" msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." msgstr "" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" msgstr "" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" msgstr "" -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." msgstr "" -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." msgstr "" -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." +#: actions/imsettings.php:59 +msgid "IM Settings" msgstr "" -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 +#: actions/imsettings.php:70 #, php-format -msgid "OpenID authentication failed: %s" +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." msgstr "" -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" +#: actions/imsettings.php:89 +msgid "IM is not available." msgstr "" -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." msgstr "" -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: actions/imsettings.php:124 +msgid "IM Address" msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." msgstr "" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." +#: actions/imsettings.php:285 +msgid "No Jabber ID." msgstr "" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" msgstr "" -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" msgstr "" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." msgstr "" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." msgstr "" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" msgstr "" -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" +#: actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." +#: actions/invite.php:112 +msgid "Invite new users" msgstr "" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" msgstr "" -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" msgstr "" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" msgstr "" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" msgstr "" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" msgstr "" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." msgstr "" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." msgstr "" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" msgstr "" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format -msgid "Replies to %s" +msgid "%s left group %s" msgstr "" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." msgstr "" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" +#: actions/login.php:110 actions/login.php:120 +msgid "Invalid or expired token." msgstr "" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" +#: actions/login.php:143 +msgid "Incorrect username or password." msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." msgstr "" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" msgstr "" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" msgstr "" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" msgstr "" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" msgstr "" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" +#: actions/login.php:263 +msgid "Lost or forgotten password?" msgstr "" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format +#: actions/login.php:282 msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/login.php:286 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." msgstr "" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." msgstr "" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" msgstr "" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +#: actions/newgroup.php:53 +msgid "New group" msgstr "" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" msgstr "" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" msgstr "" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." +#: actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" +#: actions/newnotice.php:69 +msgid "New notice" msgstr "" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." +#: actions/newnotice.php:199 +msgid "Notice posted" msgstr "" -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" +#: actions/noticesearch.php:78 +msgid "Text search" msgstr "" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" msgstr "" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" msgstr "" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" +#: actions/noticesearchrss.php:91 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." +#: actions/nudge.php:97 +msgid "Nudge sent!" msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" msgstr "" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" msgstr "" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: actions/oembed.php:157 +msgid "content type " msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." +#: actions/oembed.php:160 +msgid "Only " msgstr "" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." msgstr "" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." +#: actions/opensearch.php:64 +msgid "People Search" msgstr "" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." +#: actions/othersettings.php:60 +msgid "Other Settings" msgstr "" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: actions/othersettings.php:71 +msgid "Manage various other options." msgstr "" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/othersettings.php:122 +msgid "View profile designs" msgstr "" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." msgstr "" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" msgstr "" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/outbox.php:61 #, php-format -msgid "The address \"%s\" has been confirmed for your account." +msgid "Outbox for %s" msgstr "" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +#: actions/passwordsettings.php:58 +msgid "Change password" msgstr "" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +#: actions/passwordsettings.php:69 +msgid "Change your password." msgstr "" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" msgstr "" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." +#: actions/passwordsettings.php:103 +msgid "Old password" msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" msgstr "" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." +#: actions/passwordsettings.php:108 +msgid "6 or more characters" msgstr "" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" msgstr "" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." +#: actions/passwordsettings.php:112 +msgid "same as password above" msgstr "" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/passwordsettings.php:116 +msgid "Change" msgstr "" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." msgstr "" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." msgstr "" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." msgstr "" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" +#: actions/peoplesearch.php:58 +msgid "People search" msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" msgstr "" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" msgstr "" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." +#: actions/postnotice.php:84 +msgid "Invalid notice content" msgstr "" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." +#: actions/profilesettings.php:60 +msgid "Profile settings" msgstr "" -#: ../lib/util.php:269 lib/util.php:285 +#: actions/profilesettings.php:71 msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +"You can update your personal profile info here so people know more about you." msgstr "" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" +#: actions/profilesettings.php:99 +msgid "Profile information" msgstr "" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/profilesettings.php:122 actions/register.php:460 #, php-format -msgid "Updates from %1$s and friends on %2$s!" +msgid "Describe yourself and your interests in %d chars" msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" +#: actions/profilesettings.php:125 actions/register.php:463 +msgid "Describe yourself and your interests" msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" msgstr "" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" msgstr "" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." +#: actions/profilesettings.php:144 +msgid "Language" msgstr "" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 #: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/profilesettings.php:221 actions/register.php:223 #, php-format -msgid "Wrong size image at '%s'" -msgstr "" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" +msgid "Bio is too long (max %d chars)." msgstr "" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" msgstr "" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." msgstr "" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." msgstr "" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." +#: actions/profilesettings.php:344 +msgid "Settings saved." msgstr "" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/public.php:83 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." +msgid "Beyond the page limit (%s)" msgstr "" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/public.php:129 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Public timeline, page %d" msgstr "" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" msgstr "" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" +#: actions/public.php:159 +msgid "Public Stream Feed (Atom)" msgstr "" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/public.php:179 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 +#: actions/public.php:186 #, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/public.php:238 #, php-format msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 +#: actions/publictagcloud.php:63 #, php-format -msgid "about %d days ago" +msgid "These are most popular recent tags on %s " msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 +#: actions/publictagcloud.php:69 #, php-format -msgid "about %d hours ago" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 +#: actions/publictagcloud.php:75 #, php-format -msgid "about %d months ago" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." msgstr "" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." msgstr "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." msgstr "" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/recoverpassword.php:208 +msgid "Reset password" msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/recoverpassword.php:209 +msgid "Recover password" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" +#: actions/recoverpassword.php:240 +msgid "Same as password above" msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/recoverpassword.php:243 +msgid "Reset" msgstr "" -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." msgstr "" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." msgstr "" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." msgstr "" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." msgstr "" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." msgstr "" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/register.php:92 +msgid "Sorry, invalid invitation code." msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" +#: actions/register.php:201 +msgid "Not a valid email address." msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" +#: actions/register.php:212 +msgid "Email address already exists." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/register.php:342 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" +#: actions/register.php:429 +msgid "6 or more characters. Required." msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" msgstr "" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" msgstr "" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/register.php:493 +msgid "My text and files are available under " msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." +#: actions/register.php:496 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" -#: actions/register.php:216 +#: actions/register.php:537 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." +#: actions/remotesubscribe.php:129 +msgid "User nickname" msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" msgstr "" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" msgstr "" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/showstream.php:154 -msgid "Send a message" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" msgstr "" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" msgstr "" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" +msgid "Replies to %s" msgstr "" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 +#: actions/replies.php:151 #, php-format -msgid "%s / Favorites from %s" +msgid "Replies feed for %s (RSS 2.0)" msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 +#: actions/replies.php:158 #, php-format -msgid "%s updates favorited by %s / %s." +msgid "Replies feed for %s (Atom)" msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 +#: actions/replies.php:198 #, php-format -msgid "%s added your notice as a favorite" +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/replies.php:203 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: actions/twittersettings.php:27 +#: actions/replies.php:205 +#, php-format msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s's favorite notices, page %d" msgstr "" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: actions/twittersettings.php:63 -msgid "Twitter Username" +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" msgstr "" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" msgstr "" -#: actions/twittersettings.php:67 -msgid "Twitter Password" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" msgstr "" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." +#: actions/showfavorites.php:205 +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/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" msgstr "" -#: actions/twittersettings.php:137 +#: actions/showgroup.php:84 #, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgid "%s group, page %d" msgstr "" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" +#: actions/showgroup.php:218 +msgid "Group profile" msgstr "" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" msgstr "" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" msgstr "" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/showgroup.php:432 +msgid "Created" msgstr "" -#: classes/Command.php:96 classes/Command.php:113 +#: actions/showgroup.php:448 #, php-format -msgid "Subscriptions: %1$s\n" +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 "" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/showgroup.php:454 +#, 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 "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" +#: actions/showmessage.php:81 +msgid "No such message." msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/showmessage.php:108 #, php-format -msgid "Location: %s" +msgid "Message to %1$s on %2$s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 +#: actions/showmessage.php:113 #, php-format -msgid "Homepage: %s" +msgid "Message from %1$s on %2$s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" +#: actions/shownotice.php:90 +msgid "Notice deleted." msgstr "" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 +#: actions/showstream.php:73 #, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +msgid " tagged %s" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 +#: actions/showstream.php:79 #, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +msgid "%s, page %d" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/showstream.php:122 #, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/showstream.php:129 #, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." +msgid "Notice feed for %s (RSS 1.0)" msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" msgstr "" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/showstream.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/showstream.php:234 #, php-format -msgid "New private message from %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/showstream.php:239 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/smssettings.php:69 #, php-format -msgid "%s's favorite notices" +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +#: actions/smssettings.php:91 +msgid "SMS is not available." msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/smssettings.php:130 +msgid "Confirmation code" msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, php-format -msgid "%s and friends, page %d" +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: actions/smssettings.php:347 +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 "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/smssettings.php:476 +#, php-format +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 "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." msgstr "" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." +#: actions/subedit.php:83 +msgid "Could not save subscription." msgstr "" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/subscribe.php:55 +msgid "Not a local user." msgstr "" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" +#: actions/subscribe.php:69 +msgid "Subscribed" msgstr "" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" msgstr "" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" msgstr "" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." msgstr "" -#: actions/confirmaddress.php:159 +#: actions/subscribers.php:67 #, php-format -msgid "The address \"%s\" has been " +msgid "These are the people who listen to %s's notices." msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/subscribers.php:114 #, php-format -msgid "Edit %s group" +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." msgstr "" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " +#: actions/subscriptions.php:194 +msgid "Jabber" msgstr "" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." +#: actions/tagother.php:33 +msgid "Not logged in" msgstr "" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." +#: actions/tagother.php:39 +msgid "No id argument." msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/tagother.php:65 #, php-format -msgid "Awaiting confirmation on this address. " +msgid "Tag %s" msgstr "" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/tagother.php:200 +msgid "Could not save tags." msgstr "" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/tag.php:68 #, php-format -msgid "Allow %s to update my Facebook status" +msgid "Notices tagged with %s, page %d" msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" +#: actions/tagrss.php:35 +msgid "No such tag." msgstr "" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" +#: actions/twitapitrends.php:87 +msgid "API method under construction." msgstr "" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "Invite your friends to use %s" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/userauthorization.php:209 +msgid "Accept" msgstr "" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" msgstr "" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/userauthorization.php:211 +msgid "Reject" msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/userauthorization.php:212 +msgid "Reject this subscription" msgstr "" -#: actions/facebooksettings.php:106 -msgid "Prefix" +#: actions/userauthorization.php:225 +msgid "No authorization request!" msgstr "" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/userauthorization.php:247 +msgid "Subscription authorized" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -#: actions/facebooksettings.php:147 -msgid "Sync preferences" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/favorited.php:67 +#: actions/userauthorization.php:301 #, php-format -msgid "Popular notices, page %d" +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/featured.php:71 +#: actions/userauthorization.php:338 #, php-format -msgid "Featured users, page %d" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/featured.php:99 +#: actions/userauthorization.php:343 #, php-format -msgid "A selection of some of the great users on %s" +msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/userbyid.php:70 +msgid "No id." msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" msgstr "" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: actions/groupmembers.php:96 +#: actions/usergroups.php:153 #, php-format -msgid "%s group members, page %d" +msgid "%s is not a member of any group." msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/groups.php:64 +#: classes/File.php:147 #, php-format -msgid "Groups, page %d" +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/groups.php:90 +#: classes/File.php:154 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" +#: classes/Message.php:55 +msgid "Could not insert message." msgstr "" -#: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" msgstr "" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: classes/Notice.php:179 +msgid "Problem saving notice. Too long." msgstr "" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/imsettings.php:321 -#, php-format -msgid "A confirmation code was sent " +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: classes/Notice.php:1120 #, php-format -msgid "Could not join user %s to group %s" +msgid "DB error inserting reply: %s" msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: classes/User.php:333 #, php-format -msgid "%s joined group %s" +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" msgstr "" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" +#: lib/accountsettingsaction.php:121 +msgid "Design your profile" msgstr "" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" +#: lib/action.php:144 +#, php-format +msgid "%s - %s" msgstr "" -#: actions/newgroup.php:53 -msgid "New group" +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." +#: lib/action.php:430 +msgid "Home" msgstr "" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " +#: lib/action.php:432 +msgid "Account" msgstr "" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" +#: lib/action.php:435 +msgid "Connect" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" +#: lib/action.php:435 +msgid "Connect to services" msgstr "" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/nudge.php:97 -msgid "Nudge sent!" +#: lib/action.php:445 +msgid "Logout" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " +#: lib/action.php:450 +msgid "Create an account" msgstr "" -#: actions/othersettings.php:60 -msgid "Other Settings" +#: lib/action.php:453 +msgid "Login to the site" msgstr "" -#: actions/othersettings.php:71 -msgid "Manage various other options." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: lib/action.php:456 +msgid "Help me!" msgstr "" -#: actions/othersettings.php:112 -msgid "Service" +#: lib/action.php:459 +msgid "Search" msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." +#: lib/action.php:480 +msgid "Site notice" msgstr "" -#: actions/passwordsettings.php:69 -msgid "Change your password." +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" +#: lib/action.php:612 +msgid "Page notice" msgstr "" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" +#: lib/action.php:714 +msgid "Secondary site navigation" msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" +#: lib/action.php:721 +msgid "About" msgstr "" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " +#: lib/action.php:723 +msgid "FAQ" msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +#: lib/action.php:730 +msgid "Privacy" msgstr "" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: lib/action.php:732 +msgid "Source" msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" +#: lib/action.php:734 +msgid "Contact" msgstr "" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:767 #, php-format -msgid "Public timeline, page %d" +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: actions/public.php:220 +#: lib/action.php:771 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" +#: lib/action.php:785 +msgid "Site content license" msgstr "" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + +#: lib/action.php:1062 +msgid "After" msgstr "" -#: actions/register.php:149 -msgid "You can't register if you don't " +#: lib/action.php:1070 +msgid "Before" msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " +#: lib/attachmentlist.php:278 +msgid "Provider" msgstr "" -#: actions/register.php:404 -msgid "Describe yourself and your " +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/register.php:410 -msgid "Where you are, like \"City, " +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/register.php:432 -msgid " except this private data: password, " +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: lib/command.php:88 #, php-format -msgid "Replies to %s, page %d" +msgid "Could not find a user with nickname %s" msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: lib/command.php:99 #, php-format -msgid "%s group" +msgid "Nudge sent to %s" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: lib/command.php:126 #, php-format -msgid "%s group, page %d" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: lib/command.php:318 #, php-format -msgid "Notice feed for %s group" +msgid "Fullname: %s" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: lib/command.php:327 +#, php-format +msgid "About: %s" msgstr "" -#: actions/showgroup.php:378 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: lib/command.php:431 #, php-format -msgid "%s, page %d" +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/showstream.php:143 -msgid "'s profile" +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" msgstr "" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" +#: lib/command.php:441 +msgid "Error saving notice." msgstr "" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " +#: lib/command.php:597 +#, php-format +msgid "Could not create login token for %s" msgstr "" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/subedit.php:83 -msgid "Could not save subscription." +#: lib/common.php:191 +msgid "No configuration file found. " msgstr "" -#: actions/subscribe.php:55 -msgid "Not a local user." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: actions/subscribe.php:69 -msgid "Subscribed" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " +#: lib/designsettings.php:105 +msgid "Upload file" msgstr "" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/tagother.php:33 -msgid "Not logged in" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/tagother.php:39 -msgid "No id argument." +#: lib/designsettings.php:170 +msgid "Change colours" msgstr "" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: lib/designsettings.php:191 +msgid "Content" msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: lib/designsettings.php:204 +msgid "Sidebar" msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: lib/designsettings.php:230 +msgid "Links" msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/tagrss.php:35 -msgid "No such tag." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." +#: lib/galleryaction.php:121 +msgid "Filter tags" msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." +#: lib/galleryaction.php:131 +msgid "All" msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" +#: lib/galleryaction.php:139 +msgid "Select tag to filter" msgstr "" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" +#: lib/galleryaction.php:140 +msgid "Tag" msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." +#: lib/galleryaction.php:143 +msgid "Go" msgstr "" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" msgstr "" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: lib/groupeditform.php:172 +msgid "Description" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/groupeditform.php:187 #, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: lib/groupnav.php:100 +msgid "Blocked" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: lib/groupnav.php:112 +msgid "Logo" msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" msgstr "" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" msgstr "" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %s." msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: lib/imagefile.php:80 +msgid "Partial upload." msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." msgstr "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: lib/imagefile.php:118 +msgid "Lost our file." msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: lib/joinform.php:114 +msgid "Join" msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: lib/leaveform.php:114 +msgid "Leave" msgstr "" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" msgstr "" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" +#: lib/mailbox.php:139 +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/feedlist.php:64 -msgid "Export data" +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" +#: lib/mail.php:172 +msgid "Email address confirmation" msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: lib/mail.php:253 +#, php-format +msgid "Location: %s\n" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" msgstr "" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" msgstr "" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: lib/mail.php:288 +#, php-format msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" +#: lib/mail.php:412 +#, php-format +msgid "%s status" msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/mail.php:462 #, php-format -msgid "Edit %s group properties" +msgid "You've been nudged by %s" msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/mail.php:509 #, php-format -msgid "Add or edit %s logo" +msgid "New private message from %s" msgstr "" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/grouptagcloudsection.php:56 +#: lib/mail.php:556 #, php-format -msgid "Tags in %s group's notices" +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/joinform.php:114 -msgid "Join" +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: lib/leaveform.php:114 -msgid "Leave" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" msgstr "" -#: lib/mail.php:465 +#: lib/mediafile.php:270 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid " Try using another %s format." msgstr "" -#: lib/mail.php:555 +#: lib/mediafile.php:275 #, php-format -msgid "%1$s just added your notice from %2$s" +msgid "%s is not a supported filetype on this server." msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +#: lib/messageform.php:146 +msgid "To" +msgstr "" + +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +#: lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" +#: lib/noticelist.php:478 +msgid "in context" msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: lib/noticelist.php:498 +msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" +#: lib/noticelist.php:499 +msgid "Reply" msgstr "" #: lib/nudgeform.php:116 @@ -5312,2014 +4143,306 @@ msgstr "" msgid "Send a nudge to this user" msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: lib/oauthstore.php:345 +msgid "Duplicate notice" msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: lib/personalgroupnav.php:99 +msgid "Personal" msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" +#: lib/personalgroupnav.php:104 +msgid "Replies" msgstr "" -#: lib/searchgroupnav.php:82 -msgid "Notice" +#: lib/personalgroupnav.php:114 +msgid "Favorites" msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Tags in %s's notices" msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" +#: lib/profileaction.php:126 +msgid "All subscriptions" msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: lib/profileaction.php:157 +msgid "All subscribers" msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" +#: lib/profileaction.php:182 +msgid "Member since" msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" +#: lib/publicgroupnav.php:78 +msgid "Public" msgstr "" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format -msgid "Feed for friends of %s (RSS 2.0)" +#: lib/publicgroupnav.php:82 +msgid "User groups" msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format -msgid "Feed for friends of %s (Atom)" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" msgstr "" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -msgid "You and friends" +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +#: lib/publicgroupnav.php:92 +msgid "Popular" msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -msgid "Avatar deleted." +#: lib/searchaction.php:120 +msgid "Search site" msgstr "" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/searchaction.php:162 +msgid "Search help" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: lib/searchgroupnav.php:82 +msgid "Notice" msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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." +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: lib/subgroupnav.php:83 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format -msgid "Microblog by %s group" -msgstr "" - -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -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 "" - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +msgid "People %s subscribes to" msgstr "" -#: actions/noticesearch.php:91 +#: lib/subgroupnav.php:91 #, php-format -msgid "Search results for \"%s\" on %s" +msgid "People subscribed to %s" msgstr "" -#: actions/openidlogin.php:66 +#: lib/subgroupnav.php:99 #, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" +msgid "Groups %s is a member of" msgstr "" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -msgid "Public Stream Feed (Atom)" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: lib/subs.php:52 +msgid "User has blocked you." msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -msgid "Created" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: lib/subs.php:124 +msgid "Not subscribed!." msgstr "" -#: actions/showstream.php:147 -msgid "Your profile" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." msgstr "" -#: actions/showstream.php:149 -#, php-format -msgid "%s's profile" +#: lib/tagcloudsection.php:56 +msgid "None" msgstr "" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, php-format -msgid "Notice feed for %s (RSS 2.0)" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, php-format -msgid "Notice feed for %s (Atom)" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, php-format -msgid "FOAF for %s" +#: lib/userprofile.php:116 +msgid "Edit Avatar" msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -msgid "Edit Avatar" +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 +#: lib/userprofile.php:248 msgid "Edit profile settings" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 +#: lib/userprofile.php:249 msgid "Edit" msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - -#: actions/smssettings.php:335 actions/smssettings.php:347 -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." +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -msgid "No such user!" +#: lib/util.php:844 +msgid "a few seconds ago" msgstr "" -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +#: lib/util.php:846 +msgid "about a minute ago" msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#: lib/util.php:848 #, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +msgid "about %d minutes ago" msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +#: lib/util.php:850 +msgid "about an hour ago" msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: lib/util.php:852 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +msgid "about %d hours ago" msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: lib/util.php:854 +msgid "about a day ago" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/util.php:856 #, 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 "" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" +msgid "about %d days ago" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: lib/util.php:858 +msgid "about a month ago" msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." +#: lib/util.php:862 +msgid "about a year ago" msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/webcolor.php:82 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "%s is not a valid color!" msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: lib/webcolor.php:123 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." msgstr "" -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -msgid "No such attachment." -msgstr "" - -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "" - -#: actions/block.php:150 -msgid "Block this user from this group" -msgstr "" - -#: actions/blockedfromgroup.php:90 -#, php-format -msgid "%s blocked profiles" -msgstr "" - -#: actions/blockedfromgroup.php:93 -#, php-format -msgid "%s blocked profiles, page %d" -msgstr "" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" -msgstr "" - -#: actions/conversation.php:99 -msgid "Conversation" -msgstr "" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -msgid "Do not delete this notice" -msgstr "" - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" -msgstr "" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "" - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -msgid "Could not create aliases." -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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -msgid "No notice id" -msgstr "" - -#: actions/file.php:38 -msgid "No notice" -msgstr "" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "" - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -msgid "User is already blocked from group." -msgstr "" - -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -msgid "Couldn't update your design." -msgstr "" - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." -msgstr "" - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "" - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -msgid "Couldn't save file." -msgstr "" - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: actions/recoverpassword.php:188 -msgid "Password recover" -msgstr "" - -#: actions/register.php:86 actions/register.php:92 -msgid "Sorry, invalid invitation code." -msgstr "" - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" -msgstr "" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, php-format -msgid "%s's favorite notices, page %d" -msgstr "" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -msgid "Not a local notice" -msgstr "" - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "" - -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -msgid "Could not determine source user." -msgstr "" - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -msgid "Could not find target user." -msgstr "" - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -msgid "Reject this subscription" -msgstr "" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." -msgstr "" - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -msgid "Design your profile" -msgstr "" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -msgid "Upload file" -msgstr "" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -msgid "Blocked" -msgstr "" - -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" -msgstr "" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, php-format -msgid "%s is not a valid color!" -msgstr "" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -msgid "No such page" -msgstr "" - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "" - -#: actions/apifriendshipsdestroy.php:109 -msgid "Could not unfollow user: User not found." -msgstr "" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "" - -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." -msgstr "" - -#: actions/apigroupjoin.php:138 -#, php-format -msgid "Could not join user %s to group %s." -msgstr "" - -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." -msgstr "" - -#: actions/apigroupleave.php:124 -#, php-format -msgid "Could not remove user %s to group %s." -msgstr "" - -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "" - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "" - -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." -msgstr "" - -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - -#: actions/getfile.php:75 -msgid "No such file." -msgstr "" - -#: actions/getfile.php:79 -msgid "Cannot read file." -msgstr "" - -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - -#: actions/imsettings.php:89 -msgid "IM is not available." -msgstr "" - -#: actions/login.php:259 actions/login.php:286 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - -#: actions/noticesearchrss.php:91 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "" - -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -msgid "Describe yourself and your interests" -msgstr "" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, php-format -msgid "Bio is too long (max %d chars)." -msgstr "" - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "" - -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "" - -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "" - -#: actions/smssettings.php:91 -msgid "SMS is not available." -msgstr "" - -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - -#: lib/action.php:435 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:785 -msgid "Site content license" -msgstr "" - -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "" - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, php-format -msgid "Reply to %s sent" -msgstr "" - -#: lib/command.php:441 -msgid "Error saving notice." -msgstr "" - -#: lib/common.php:191 -msgid "No configuration file found. " -msgstr "" - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "" - -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "" - -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "" - -#: actions/login.php:110 actions/login.php:120 -msgid "Invalid or expired token." -msgstr "" - -#: lib/command.php:597 -#, php-format -msgid "Could not create login token for %s" -msgstr "" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "" - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" -- cgit v1.2.3-54-g00ecf From c4f28a2d36917dcc4beacfd483c76e51688a7cef Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 8 Nov 2009 23:52:01 +0100 Subject: Update pot again --- locale/statusnet.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/locale/statusnet.po b/locale/statusnet.po index 78e1cb51b..2c40b9f0e 100644 --- a/locale/statusnet.po +++ b/locale/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 22:39+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3962,7 +3962,7 @@ msgid "" "\n" "%3$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%4$s\n" @@ -3986,7 +3986,7 @@ msgid "" "\n" "%4$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%5$s\n" -- cgit v1.2.3-54-g00ecf From b78a35ec73980d8dfa2fcb68ef81936f4b3c110b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 9 Nov 2009 00:00:57 +0100 Subject: Localisation updates from translatewiki.net (2009-11-08) --- locale/bg/LC_MESSAGES/statusnet.mo | Bin 120252 -> 82931 bytes locale/bg/LC_MESSAGES/statusnet.po | 10134 +++++++++++------------------- locale/ca/LC_MESSAGES/statusnet.mo | Bin 103840 -> 71073 bytes locale/ca/LC_MESSAGES/statusnet.po | 10231 +++++++++++------------------- locale/cs/LC_MESSAGES/statusnet.mo | Bin 52845 -> 34815 bytes locale/cs/LC_MESSAGES/statusnet.po | 9377 ++++++++++------------------ locale/de/LC_MESSAGES/statusnet.mo | Bin 104410 -> 71283 bytes locale/de/LC_MESSAGES/statusnet.po | 10248 +++++++++++------------------- locale/el/LC_MESSAGES/statusnet.mo | Bin 38008 -> 29022 bytes locale/el/LC_MESSAGES/statusnet.po | 8785 +++++++++----------------- locale/en_GB/LC_MESSAGES/statusnet.mo | Bin 96660 -> 65966 bytes locale/en_GB/LC_MESSAGES/statusnet.po | 10188 +++++++++++------------------- locale/es/LC_MESSAGES/statusnet.mo | Bin 102657 -> 70184 bytes locale/es/LC_MESSAGES/statusnet.po | 10132 +++++++++++------------------- locale/fi/LC_MESSAGES/statusnet.mo | Bin 105769 -> 72747 bytes locale/fi/LC_MESSAGES/statusnet.po | 10009 +++++++++++------------------- locale/fr/LC_MESSAGES/statusnet.mo | Bin 110316 -> 75273 bytes locale/fr/LC_MESSAGES/statusnet.po | 10248 +++++++++++------------------- locale/ga/LC_MESSAGES/statusnet.mo | Bin 105970 -> 73097 bytes locale/ga/LC_MESSAGES/statusnet.po | 10537 +++++++++++-------------------- locale/he/LC_MESSAGES/statusnet.mo | Bin 57187 -> 38284 bytes locale/he/LC_MESSAGES/statusnet.po | 9257 ++++++++++----------------- locale/is/LC_MESSAGES/statusnet.mo | Bin 93165 -> 62570 bytes locale/is/LC_MESSAGES/statusnet.po | 9860 +++++++++++------------------ locale/it/LC_MESSAGES/statusnet.mo | Bin 102741 -> 70354 bytes locale/it/LC_MESSAGES/statusnet.po | 10059 +++++++++++------------------- locale/ja/LC_MESSAGES/statusnet.mo | Bin 67429 -> 47537 bytes locale/ja/LC_MESSAGES/statusnet.po | 9486 ++++++++++------------------ locale/ko/LC_MESSAGES/statusnet.mo | Bin 109403 -> 74615 bytes locale/ko/LC_MESSAGES/statusnet.po | 9968 +++++++++++------------------ locale/mk/LC_MESSAGES/statusnet.mo | Bin 68714 -> 44819 bytes locale/mk/LC_MESSAGES/statusnet.po | 9405 ++++++++++------------------ locale/nb/LC_MESSAGES/statusnet.mo | Bin 28906 -> 22937 bytes locale/nb/LC_MESSAGES/statusnet.po | 8868 +++++++++----------------- locale/nl/LC_MESSAGES/statusnet.mo | Bin 97602 -> 84387 bytes locale/nl/LC_MESSAGES/statusnet.po | 9828 +++++++++++------------------ locale/nn/LC_MESSAGES/statusnet.mo | Bin 98828 -> 67541 bytes locale/nn/LC_MESSAGES/statusnet.po | 10040 +++++++++++------------------- locale/pl/LC_MESSAGES/statusnet.mo | Bin 134009 -> 94535 bytes locale/pl/LC_MESSAGES/statusnet.po | 10659 +++++++++++--------------------- locale/pt/LC_MESSAGES/statusnet.mo | Bin 33810 -> 25139 bytes locale/pt/LC_MESSAGES/statusnet.po | 8776 +++++++++----------------- locale/pt_BR/LC_MESSAGES/statusnet.mo | Bin 102798 -> 69895 bytes locale/pt_BR/LC_MESSAGES/statusnet.po | 10296 +++++++++++------------------- locale/ru/LC_MESSAGES/statusnet.mo | Bin 138442 -> 93851 bytes locale/ru/LC_MESSAGES/statusnet.po | 10349 +++++++++++-------------------- locale/sv/LC_MESSAGES/statusnet.mo | Bin 86721 -> 58405 bytes locale/sv/LC_MESSAGES/statusnet.po | 9924 +++++++++++------------------ locale/te/LC_MESSAGES/statusnet.mo | Bin 64130 -> 44836 bytes locale/te/LC_MESSAGES/statusnet.po | 9207 ++++++++++----------------- locale/tr/LC_MESSAGES/statusnet.mo | Bin 51527 -> 34346 bytes locale/tr/LC_MESSAGES/statusnet.po | 9230 ++++++++++----------------- locale/uk/LC_MESSAGES/statusnet.mo | Bin 134636 -> 91655 bytes locale/uk/LC_MESSAGES/statusnet.po | 10079 +++++++++++------------------- locale/vi/LC_MESSAGES/statusnet.mo | Bin 100005 -> 66939 bytes locale/vi/LC_MESSAGES/statusnet.po | 10208 +++++++++++------------------- locale/zh_CN/LC_MESSAGES/statusnet.mo | Bin 94302 -> 64437 bytes locale/zh_CN/LC_MESSAGES/statusnet.po | 9997 +++++++++++------------------- locale/zh_TW/LC_MESSAGES/statusnet.mo | Bin 26209 -> 18513 bytes locale/zh_TW/LC_MESSAGES/statusnet.po | 8810 +++++++++----------------- 60 files changed, 102037 insertions(+), 192158 deletions(-) diff --git a/locale/bg/LC_MESSAGES/statusnet.mo b/locale/bg/LC_MESSAGES/statusnet.mo index 50651eb59..2821c4d83 100644 Binary files a/locale/bg/LC_MESSAGES/statusnet.mo and b/locale/bg/LC_MESSAGES/statusnet.mo differ diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 7a2e0d927..f6b0cb3f2 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -5,5396 +5,4001 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:03+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:57:47+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Търсене на \"%s\" в потока" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Няма такъв етикет." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " от " +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Няма такъв потребител" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Реплики на %2$s" +msgid "%s and friends, page %d" +msgstr "%s и приятели, страница %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s ви кани да ползвате заедно %2$s" +msgid "%s and friends" +msgstr "%s и приятели" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s ви кани да се присъедините към %2$s (%3$s).\n" -"\n" -"%2$s е услуга за микроблогване, чрез която лесно поддържате връзка с хората, " -"които познавате или които са ви интересни.\n" -"\n" -"Също така можете да публикувате кратки новини за себе си, свои размисли и да " -"ги обсъждате в мрежата с хора, които ви познават. Това също е и добър начин " -"за запознаване с нови хора, които споделят интересите ви.\n" -"\n" -"%1$s ви казва:\n" -"\n" -"%4$s\n" -"\n" -"Можете да видите профила на %1$s в %2$s тук:\n" -"\n" -"%5$s\n" -"\n" -"Ако искате да опитате услугата на сайта, проследете препратката по-долу, за " -"да приемете поканата.\n" -"\n" -"%6$s\n" -"\n" -"Ако не желаете, пропуснете това писмо. Благодарим ви за търпението и " -"отделеното време.\n" -"\n" -"Искрено ваши, %2$s\n" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Емисия с приятелите на %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s вече получава бележките ви в %2$s." +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Емисия с приятелите на %s" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Емисия с приятелите на %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s вече получава бележките ви в %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"С уважение,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s реплики на съобщения от %2$s / %3$s." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "Бележка на %1$s от %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "Общ поток в %s" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s и приятели" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "Общ поток на %s" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Бележки от %1$s и приятели в %2$s." -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "Състояние на %s" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Не е открит методът в API." -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Поток на %s" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Този метод изисква заявка POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Потребителят няма профил." + +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -"(Трябва да получите веднага електронно писмо с указания за потвърждаване " -"адреса на е-пощата ви.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." msgstr "" -"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** е услуга за микроблогване. " +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Липсва текст на съобщението" -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Изписват се пълните имена или псевдоними на участниците." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Твърде дълго. Може да е най-много 140 знака." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Получателят не е открит" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително " -"поле." +"Не може да изпращате преки съобщения до хора, които не са в списъка ви с " +"приятели." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 или повече знака" +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Преки съобщения до %s" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 или повече знака. И не ги забравяйте!" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "Всички преки съобщения, изпратени от %s" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 или повече знака. Задължително поле." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Преки съобщения до %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:105 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " -"от %s, трябва да го одобрите." +msgid "All the direct messages sent to %s" +msgstr "Всички преки съобщения, изпратени до %s" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"На адреса на е-поща, който сте въвели, беше изпратен код за потвърждение. " -"Проверете кутията (или папката за спам) за кода и указанията за използването " -"му." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Не е открита бележка с такъв идентификатор." -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " -"Проверете съобщенията (или папката за спам) за кода и указанията за " -"използването му." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Тази бележка вече е отбелязана като любима!" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Не е открит методът в API." +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Грешка при отбелязване като любима." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Методът в API все още се разработва." +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Тази бележка не е отбелязана като любима!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Относно" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Грешка при изтриване на любима бележка." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Приемане" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Грешка при проследяване — потребителят не е намерен." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Добавяне" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Грешка при проследяване на потребител: %s вече е в списъка ви." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Добавяне на OpenID" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Грешка при проследяване — потребителят не е намерен." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Добавяне или премахване OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Адрес" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Адреси на приятели, които каните (по един на ред)" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Трябва да се дадат два идентификатора или имена на потребители." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Всички абонаменти" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Грешка при изтегляне на общия поток" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Всички бележки за %s" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Не са открити бележки." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Всички бележки, намерени с \"%s\"" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Грешка при създаване на групата." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Вече сте влезли." +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Грешка при отбелязване като любима." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Вече сте абонирани!" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Грешка при създаване на нов абонамент." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Наистина ли искате да изтриете тази бележка?" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " +"между тях." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Одобряване на абонамента" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Опитайте друг псевдоним, този вече е зает." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Автоматично влизане занапред. Да не се ползва на общи компютри!" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Неправилен псевдоним." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Автоматично абониране за всеки, който се абонира за мен (подходящо за " -"ботове)." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Адресът на личната страница не е правилен URL." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Аватар" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Пълното име е твърде дълго (макс. 255 знака)" -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Аватарът е обновен." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Too many aliases! Maximum %d." msgstr "" -"Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за " -"съобщение с инструкции. (Добавихте ли %s в списъка си там?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неправилен етикет: \"%s\"" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Опитайте друг псевдоним, този вече е зает." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Очаква се потвърждение за този адрес. Проверете кутията си (или папката за " -"спам) за съобщение с указания." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Очаква се потвърждение за този телефонен номер." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Вече членувате в тази група." -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Преди »" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "За мен" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Грешка при проследяване — потребителят не е намерен." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Автобиографията е твърде дълга (до 140 символа)." +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Не членувате в тази група." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Грешка при изтриване на бележката." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Грешка при проследяване — потребителят не е намерен." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Грешка при четене адреса на аватара '%s'" +msgid "%s groups" +msgstr "Групи на %s" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Грешка при запазване на новата парола." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Търсене на групи в сайта" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Отказ" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Групи на %s" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Грешка при създаване на потребителски OpenID обект" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Групи, в които участва %s" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Грешка при нормализация на този Jabber ID" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Този метод изисква заявка POST или DELETE." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Грешка при нормализиране адреса на е-пощата" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Не може да изтривате бележки на друг потребител." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Промяна" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Аватарът е обновен." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Промяна обработката на писмата" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Не е открита бележка с такъв идентификатор." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Смяна на паролата" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Смяна на паролата" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Не е открито." -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Промяна настройките на профила" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Потвърждаване" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Форматът на файла с изображението не се поддържа." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Потвърждаване на адреса" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Отбелязани като любими от %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Потвърждаването е прекъснато." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s бележки отбелязани като любими от %s / %s." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Код за потвърждение" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "Поток на %s" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Кодът за потвърждение не е открит." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Реплики на %2$s" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Поздравления, %s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n" -"\n" -"* Отидете в [профила си](%s) и да публикувате първата си бележка.\n" -"* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да " -"изпращате бележки от програмата си за моментни съобщения.\n" -"* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които " -"споделяте общи интереси. \n" -"* Обновите [настройките на профила(%%%%action.profilesettings%%%%) си, за да " -"кажете повече за себе си на другите. \n" -"* Прочетете наличната [документация](%%%%doc.help%%%%) на сайта, за да се " -"запознаете с възможностите му. \n" -"\n" -"Благодарим, че се включихте в сайта и дано ползването на услугата ви носи " -"само приятни мигове!" - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Свързване" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Свързване на съществуваща сметка" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Контакт" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s реплики на съобщения от %2$s / %3$s." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Грешка при създаване на OpenID форма: %s" +msgid "%s public timeline" +msgstr "Общ поток на %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Грешка при проследяване на потребител: %s вече е в списъка ви." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Грешка при проследяване — потребителят не е намерен." +msgid "%s updates from everyone!" +msgstr "" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Грешка при пренасочване към сървър: %s" +msgid "Notices tagged with %s" +msgstr "Бележки с етикет %s" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Грешка при запазване данните на аватара" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Грешка при запазване на новия профил" +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Не е открито." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Грешка при абониране на друг потребител за вас." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Няма такъв документ." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Грешка при абониране." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Няма псевдоним." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Грешка при обновяване на потребител с потвърден email адрес." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Няма размер." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Неправилен размер." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Грешка при изтриване потвърждението по е-поща." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Аватар" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Грешка при изтриване на абонамента." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Можете да качите личен аватар тук." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Не са открити бележки." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Потребител без съответстващ профил" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Не е получен token за одобрение." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Настройки за аватар" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Не може да се вмъкне код за потвърждение." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Оригинал" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Грешка при добавяне на нов абонамент." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Преглед" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Грешка при запазване на профила." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Изтриване" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Качване" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Грешка при обновяване записа на потребител." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Изрязване" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Грешка при обновяване на потребителя." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Създаване" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Неочаквано изпращане на форма." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Създаване на нов потребител с този псевдоним." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Изберете квадратна област от изображението за аватар" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Създаване на нова сметка" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Създаване на нов акаунт за OpenID, който вече има потребител." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Аватарът е обновен." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Текущ потвърден Jabber/GTalk адрес." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Неуспешно обновяване на аватара." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Текущ потвърден телефонен номер за SMS-и." +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватарът е обновен." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Текущ потвърден адрес на е-поща." +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Няма псевдоним." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "В момента" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Няма такава група." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Потребителски профил" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Грешка в базата от данни — отговор при вмъкването: %s" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и приятели, страница %d" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Изтриване на бележката" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Списък с потребителите в тази група." -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Опишете себе си и интересите си в до 140 букви" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Разблокиране на този потребител" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Е-поща" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Разблокиране" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Адрес на е-поща" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Разблокиране на този потребител" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Настройки на е-поща" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Не сте влезли в системата." -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Адресът на е-поща вече се използва." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Не е указан профил." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Потвърждаване адреса на е-поща" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Не е открит профил с такъв идентификатор." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Адрес на е-поща, като \"UserName@example.org\"" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Блокиране на потребителя" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Адреси на е-поща" +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Въведете псевдоним или е-поща." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Не" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Въведете кода, който получихте по телефона." +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Списък с потребителите в тази група." -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Грешка при одобряване на token" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Да" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Грешка при свързване на потребителя към OpenID." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Списък с потребителите в тази група." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Грешка при свързване на потребителя." +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Вече сте блокирали този потребител." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Грешка при вмъкване на аватар" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Грешка при записване данните за блокирането." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Грешка при вмъкване на нов профил" +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Снимка" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Грешка при вмъкване на отдалечен профил" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Няма код за потвърждение." -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Грешка при запазване на потвърждение за адрес" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Кодът за потвърждение не е открит." -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Грешка при запазване на отдалечен профил" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Този код за потвърждение не е за вас!" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Грешка при запазване на профил" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Неразпознат вид адрес %s" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Грешка при запазване на потребител." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Този адрес е вече потвърден." -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Грешка при запазване на потребител — невалидност." +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Грешка при обновяване на потребителя." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Грешка в настройките на потребителя." +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Грешка при изтриване потвърждението по е-поща." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Грешка при обновяване на профил" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Потвърждаване на адреса" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Грешка при обновяване на отдалечен профил" +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Адресът \"%s\" е потвърден за сметката ви." -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Грешка в кода за потвърждение." +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код за потвърждение" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Съществуващ псевдоним" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Бележки" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "Въпроси" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Няма такава бележка." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Неуспешно обновяване на аватара." +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Грешка при изтриване на бележката." -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Емисия с приятелите на %s" +#: actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Емисия с отговорите към %s" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Изтриване на бележката" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Емисия за етикета %s" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Наистина ли искате да изтриете тази бележка?" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Търсене в съдържанието на бележките" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Грешка при изтриване на бележката." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Търсене на хора в сайта" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Изтриване на бележката" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" + +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Тази бележка не е отбелязана като любима!" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Добавяне към любимите" + +#: actions/doc.php:69 +msgid "No such document." +msgstr "Няма такъв документ." + +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -"За по-голяма сигурност, моля въведете отново потребителското си име и парола " -"при промяна на настройките." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Пълно име" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "За да създавате група, трябва да сте влезли." -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Пълното име е твърде дълго (макс. 255 знака)" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "За да редактирате групата, трябва да сте й администратор." -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Помощ" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Начало" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Лична страница" +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Грешка при обновяване на групата." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Адресът на личната страница не е правилен URL." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Настройките са запазени." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Искам да изпращам бележки по пощата." +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Настройки на е-поща" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Управление на пощата, идваща от %%site.name%%." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM адрес" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Адрес" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM настройки" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Текущ потвърден адрес на е-поща." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " -"име и парола." +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Премахване" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 +#: actions/emailsettings.php:113 msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Ако искате да добавите OpenID към сметката си, въведете го в кутийката " -"отдолу и натиснете \"Добавяне\"." +"Очаква се потвърждение за този адрес. Проверете кутията си (или папката за " +"спам) за съобщение с указания." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Ако сте забравили или загубили паролата си, може да получите нова на е-" -"пощата, въведена в профила ви." +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Отказ" + +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Адрес на е-поща" + +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Адрес на е-поща, като \"UserName@example.org\"" + +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Добавяне" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 #: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Входяща поща" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Входящият адрес на е-поща е премахнат." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Изпратете писмо до този адрес за публикуване като бележка." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Грешна стара парола" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Грешно име или парола." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Ново" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"На е-пощата, с която сте регистрирани са изпратени инструкции за " -"възстановяване на паролата." +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Настройки" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Неправилен адрес на аватар '%s'" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Изпращане на уведомления за нови абонаменти по пощата." -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Неправилен адрес на е-поща: %s" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Изпращане на писмо при отбелязване на моя бележка като любима." -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Неправилен адрес на домашна страница '%s'" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Изпращане на писмо при ново лично съобщение." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Неправилен адрес на лиценз '%s'" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Изпращане на писмо при ново лично съобщение." -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Невалидно съдържание на бележка" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Неправилен адрес на бележка" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Искам да изпращам бележки по пощата." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Неправилен адрес на бележка" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Публикуване на MicroID за адреса на е-пощата." -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Неправилен адрес на профил '%s'." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Запазване" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Неправилен адрес на профил (грешен формат)" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Настройките са запазени." -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Върнат от сървъра неправилен адрес на профила." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Не е въведена е-поща." -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Неправилен размер." - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Неправилно име или парола." - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Поканите са изпратени." - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Изпратени са покани до следните хора:" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Грешка при нормализиране адреса на е-пощата" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Покани" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Това не е правилен адрес на е-поща." -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Покани за нови потребители" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Това и сега е адресът на е-пощата ви." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Ползва [StatusNet](http://status.net/) версия %s, система за микроблогване, " -"достъпна под [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Тази е-поща вече се използва от друг потребител." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Този Jabber ID принадлежи на друг потребител." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Не може да се вмъкне код за потвърждение." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format +#: actions/emailsettings.php:358 msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +"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 "" -"Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че " -"сте добавили %s в списъка си с приятели в IM или GTalk клиента си." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Език" +"На адреса на е-поща, който сте въвели, беше изпратен код за потвърждение. " +"Проверете кутията (или папката за спам) за кода и указанията за използването " +"му." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Името на езика е твърде дълго (може да е до 50 знака)." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Няма потвърждения, очакващи да бъдат отказани." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Местоположение" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Грешен IM адрес." -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Потвърждаването е прекъснато." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Вход" +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Това не е вашият адрес на е-поща." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Влизане с [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Адресът е премахнат." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " -"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Няма входящ адрес на е-поща." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Изход" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Грешка при обновяване записа на потребител." -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "По-дълго име, за предпочитане \"истинското\" ви име." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Входящият адрес на е-поща е премахнат." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Загубена или забравена парола" +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "Добавен е нов входящ адрес на е-поща." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Популярни бележки" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 +#: actions/favorited.php:67 #, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Управление на пощата, идваща от %%site.name%%." +msgid "Popular notices, page %d" +msgstr "Популярни бележки, страница %d" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Участник от" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Най-популярните бележки в момента в сайта." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Микроблог на %s" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format +#: actions/favorited.php:153 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." +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." msgstr "" -"Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който " -"не фигурира тук, пишете ни на адрес %s." - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Текстовете и файловите ми са достъпни под " -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Ново" +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 #, php-format -msgid "New email address for posting to %s" -msgstr "Нов адрес на е-поща за публикщуване в %s" +msgid "%s's favorite notices" +msgstr "Любими бележки на %s" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "Добавен е нов входящ адрес на е-поща." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Нов псевдоним" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Тази бележка вече е отбелязана като любима!" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Нова бележка" +#: actions/favor.php:92 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor favorite" +msgstr "Нелюбимо" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Нова парола" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Избрани потребители" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Новата парола е запазена. Влязохте успешно." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Избрани потребители, страница %d" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Псевдоним" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Опитайте друг псевдоним, този вече е зает." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Нова бележка" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Нова бележка" + +#: actions/file.php:42 +msgid "No attachments" msgstr "" -"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " -"между тях." -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Този псевдоним не е разрешен тук." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Псевдоним на потребител, когото искате да следите" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Неочакван отговор." -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Псевдоним или е-поща" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Потребителят, когото проследявате, не съществува. " -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Не" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Можете да ползвате локален абонамент!" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Няма Jabber ID." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Потребителят е забранил да се абонирате за него." -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Няма заявка за одобрение." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Забранено." -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Не е избран оператор." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп." -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Не е въведен код." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Непозната версия на протокола OMB." -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Няма код за потвърждение." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Грешка при обновяване на отдалечен профил" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Няма съдържание!" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Не е въведена е-поща." - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Няма id." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Няма входящ адрес на е-поща." - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Отдалеченият сървър не е предоставил псевдоним." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Няма такава група" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Няма псевдоним." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Няма такава бележка." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Няма потвърждения, очакващи да бъдат отказани." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Няма такава бележка." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Не е въведен телефонен номер." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Не е указан профил." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Сървърът не е върнал адрес на профила." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Няма указана е-поща за този потребител." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Потребителят ви е блокирал." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Заявката не е намерена!" +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Не членувате в тази група." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Няма резултати" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Блокиране на потребителя" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Няма размер." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Не е открита бележка с такъв идентификатор." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Не е открита бележка с такъв идентификатор." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Липсва ID" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Няма такъв OpenID-адрес." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "За да създавате група, трябва да сте влезли." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Няма такъв документ." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Групи" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Няма такава бележка." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Няма такъв код за възстановяване." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Грешка при обновяване на потребителя." -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Няма такъв абонамент" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Няма такъв потребител" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Грешка при записване настройките за Twitter" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Няма потребител с такава е-поща или потребителско име." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Настройките са запазени." -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Няма никого за показване!" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Лого на групата" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Това не е код за възстановяване." +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Може да качите лого за групата ви." -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Това не е регистриран потребител." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Изберете квадратна област от изображението за аватар" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Неподдържан формат на данните" +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Лотого е обновено." -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Неправилен Jabber ID" +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Неуспешно обновяване на логото." -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Неправилен OpenID" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Това не е правилен адрес на е-поща." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Неправилен адрес на е-поща." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Списък с потребителите в тази група." -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Неправилен псевдоним." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Неправилен адрес на профил (грешна услуга)." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Блокиране" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Неправилен адрес на профил (няма зададен XRDS)." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Блокиране на потребителя" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Неправилен адрес на профил (няма YADIS документ)." +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "За да редактирате групата, трябва да сте й администратор." -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Файлът не е изображение или е повреден." +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Забранено." +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Неочакван отговор." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Не е открито." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%% по техните име, място или интереси. " +"Отделяйте фразите за " -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Не сте влезли в системата." +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Търсене на групи" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Не сте абонирани!" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Няма резултати" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Търсене на бележки" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 +#: actions/groupsearch.php:85 #, php-format -msgid "Notice feed for %s" -msgstr "Емисия с бележки на %s" +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Бележката няма профил" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Групи" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Бележки" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Групи, страница %d" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/groups.php:90 #, php-format -msgid "Notices tagged with %s" -msgstr "Бележки с етикет %s" +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Стара парола" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Създаване на нова група" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Настройки на OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Автоматично предаване на OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Влизане с OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Влизането с OpenID е прекратено." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Грешка при влизане с OpenID: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Проблем с OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID е премахнат." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Настройки на OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Може да добавите и лично съобщение към поканата." +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Частично качване на файла." +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Потребителят ви е блокирал." -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Парола" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Паролата и потвърждението й не съвпадат." - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Паролата трябва да е от поне 6 знака." - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Поискано е възстановяване на парола" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Паролата е записана." - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Паролите не съвпадат." +#: actions/groupunblock.php:128 actions/unblock.php:108 +#, fuzzy +msgid "Error removing the block." +msgstr "Грешка при запазване на потребител." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Хора" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM настройки" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Търсене на хора" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" +"%). Въведете адреса си в настройките по-долу." -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Търсене на хора" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Лично" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Текущ потвърден Jabber/GTalk адрес." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Лично съобщение" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за " +"съобщение с инструкции. (Добавихте ли %s в списъка си там?)" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Телефонен номер — с код, без пунктоация и без интервали." +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM адрес" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " -"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." +"Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че " +"сте добавили %s в списъка си с приятели в IM или GTalk клиента си." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Изпращане на бележките по Jabber/GTalk." + +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Настройки" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Настройките са запазени." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Предпочитан език" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Поверителност" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Проблем при записване на бележката." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Профил" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Адрес на профила" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Настройки на профила" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Непознат профил" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Емисия на общия поток" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Общ поток" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "Изпращане по Jabber/GTalk на отговори от хора, " -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 +#: actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Публикуване на MicroID за адреса в Jabber/GTalk." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Публикуване на MicroID за адреса на е-пощата." - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Скорошни етикети" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Възстановяване" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Възстановяване на паролата" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Код за възстановяване на непознат потребител." - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Регистриране" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Записването не е позволено." - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Записването е успешно." - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Охвърляне" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Запомни ме" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Няма Jabber ID." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Отдалечен профил без съответстващ локален" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Грешка при нормализация на този Jabber ID" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Отдалечен абонамент" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Неправилен Jabber ID" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Премахване" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Това вече е вашият Jabber ID." -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Премахване на OpenID" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Този Jabber ID принадлежи на друг потребител." -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/imsettings.php:327 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -"Премахването на единствения OpenID ще направи влизането в системата " -"невъзможно. За да го изтриете, първо добавете друг OpenID." +"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " +"от %s, трябва да го одобрите." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Отговори" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Това не е вашият Jabber ID." -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/inbox.php:59 #, php-format -msgid "Replies to %s" -msgstr "Отговори на %s" +msgid "Inbox for %s - page %d" +msgstr "Входяща кутия за %s — страница %d" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Обновяване" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Входяща кутия за %s" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Нова парола" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "Това е входящата ви кутия с лични съобщения от други потребители." -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Телефонен номер за SMS" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "За да каните хора в %s, трябва да сте влезли." -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Настройки за SMS" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Неправилен адрес на е-поща: %s" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Потвърждение за SMS" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Поканите са изпратени." -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Също като паролата по-горе" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Покани за нови потребители" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Същото като паролата по-горе. Задължително поле." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Вече сте абонирани за следните потребители:" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Запазване" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Търсене" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "Тези хора са потребители тук и автоматично сте абонирани за тях:" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Търсене в емисията на потока" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Изпратени са покани до следните хора:" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format +#: actions/invite.php:150 msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -"Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за " -"търсене (трябва да са по-дълги от 3 символа) с интервали." +"Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за " +"увеличаването на общността тук!" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/invite.php:162 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"Търсене на хора в %%site.name%% по техните име, място или интереси. " -"Отделяйте фразите за " +"Използвайте това поле, за да поканите приятели и колеги да използват " +"услугата на сайта." -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Изберете оператор" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Адреси на е-поща" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Прати" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Адреси на приятели, които каните (по един на ред)" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Изпратете писмо до този адрес за публикуване като бележка." +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Лично съобщение" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Изпращане на уведомления за нови абонаменти по пощата." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Може да добавите и лично съобщение към поканата." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Изпращане на бележките по Jabber/GTalk." +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Прати" + +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s ви кани да ползвате заедно %2$s" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 +#: actions/invite.php:228 +#, php-format msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни " -"такси от оператора." +"%1$s ви кани да се присъедините към %2$s (%3$s).\n" +"\n" +"%2$s е услуга за микроблогване, чрез която лесно поддържате връзка с хората, " +"които познавате или които са ви интересни.\n" +"\n" +"Също така можете да публикувате кратки новини за себе си, свои размисли и да " +"ги обсъждате в мрежата с хора, които ви познават. Това също е и добър начин " +"за запознаване с нови хора, които споделят интересите ви.\n" +"\n" +"%1$s ви казва:\n" +"\n" +"%4$s\n" +"\n" +"Можете да видите профила на %1$s в %2$s тук:\n" +"\n" +"%5$s\n" +"\n" +"Ако искате да опитате услугата на сайта, проследете препратката по-долу, за " +"да приемете поканата.\n" +"\n" +"%6$s\n" +"\n" +"Ако не желаете, пропуснете това писмо. Благодарим ви за търпението и " +"отделеното време.\n" +"\n" +"Искрено ваши, %2$s\n" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Изпращане по Jabber/GTalk на отговори от хора, " +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "За да се присъедините към група, трябва да сте влезли." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Настройки" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Вече членувате в тази група." -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Настройките са запазени." +#: actions/joingroup.php:128 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "Грешка при проследяване — потребителят не е намерен." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Най-популярните етикети за изминалата седмица" +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s се присъедини към групата %s" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Някой друг вече използва този OpenID." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "За напуснете група, трябва да сте влезли." -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Случи се нещо странно." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "Не членувате в тази група." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Входящата поща не е разрешена." +#: actions/leavegroup.php:119 lib/command.php:278 +#, fuzzy +msgid "Could not find membership record." +msgstr "Грешка при обновяване записа на потребител." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Това не е вашият входящ адрес." +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "Грешка при проследяване — потребителят не е намерен." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Изходен код" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Статистики" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Вече сте влезли." -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Няма запазен OpenID." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Абониране" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Невалидно съдържание на бележка" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Абонати" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Грешно име или парола." -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Абонаментът е одобрен" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Грешка в настройките на потребителя." -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Абонаментът е отказан" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Вход" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Абонаменти" +#: actions/login.php:243 +msgid "Login to site" +msgstr "" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Системна грешка при качване на файл." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Псевдоним" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Етикети" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Парола" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Текст" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Запомни ме" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Търсене на текст" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Автоматично влизане занапред. Да не се ползва на общи компютри!" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Този OpenID не ви принадлежи." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Загубена или забравена парола" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Този адрес е вече потвърден." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"За по-голяма сигурност, моля въведете отново потребителското си име и парола " +"при промяна на настройките." -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Този код за потвърждение не е за вас!" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " +"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Тази е-поща вече се използва от друг потребител." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Файлът е твърде голям." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Това вече е вашият Jabber ID." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Това и сега е адресът на е-пощата ви." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Това и сега е номерът на телефона ви." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Това не е вашият Jabber ID." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Нова група" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Това не е вашият адрес на е-поща." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Използвайте тази бланка за създаване на нова група." -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Това не е вашият телефонен номер." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Ново съобщение" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Грешен IM адрес." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Не може да изпращате съобщения до този потребител." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Този код за потвърждение е грешен." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Няма съдържание!" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Този телефонен номер вече се използва от друг потребител." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Не е указан получател." -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си " +"тихичко." -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Това е твърде дълго. Трябва да е най-много 255 знака." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Съобщение" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Адресът \"%s\" е потвърден за сметката ви." +msgid "Direct message to %s sent" +msgstr "Прякото съобщение до %s е изпратено." -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Адресът е премахнат." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Грешка в Ajax" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " -"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Нова бележка" + +#: actions/newnotice.php:199 +#, fuzzy +msgid "Notice posted" +msgstr "Бележки" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 +#: actions/noticesearch.php:68 +#, php-format msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " -"абонамента, проверете инструкциите на сайта." +"Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за " +"търсене (трябва да са по-дълги от 3 символа) с интервали." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Това са хората, които четат бележките на %s." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Търсене на текст" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Tова са хората, които четат бележките ви." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Търсене на \"%s\" в потока" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Хора, чийто бележки %s чете." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Няма хора, чийто бележки четете." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "Тези хора са потребители тук и автоматично сте абонирани за тях:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново." - -#: ../lib/openid.php:195 lib/openid.php:206 msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Формата би трябвало да се изпрати автоматично. Ако това не се случи, за да " -"преминете към OpenID доставчика си натиснете бутона за изпращане." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearch.php:124 #, 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 "" -"За първи път влизате в системата като %s, затова трябва да присъединим " -"OpenID към локалния ви профил. Можете да създадете нова сметка или да " -"използвате съществуваща, ако имате такава." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Този метод изисква заявка POST или DELETE." - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Този метод изисква заявка POST." - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Страницата не е достъпна във вида медия, който приемате" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Часови пояс" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Бележки от %1$s в %2$s." -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Не е избран часови пояс" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Всички бележки, намерени с \"%s\"" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format +#: actions/nudge.php:85 msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"За да се абонирате, можете да [влезете](%%action.login%%) или да " -"[регистрирате](%%action.register%%) нова сметка. Ако имате сметка на друга, " -"[подобна услуга за микроблогване](%%doc.openmublog%%), въведете адреса на " -"профила си в нея по-долу." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Трябва да се дадат два идентификатора или имена на потребители." - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Адрес на личната ви страница, блог или профил в друг сайт" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Побутването е изпратено" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Неочаквано изпращане на форма." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Побутването е изпратено!" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Неочаквано подновяване на паролата." +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Бележката няма профил" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Непознато действие" +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Бележка на %1$s от %2$s" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Непозната версия на протокола OMB." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Свързване" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/oembed.php:160 +msgid "Only " msgstr "" -"Освен ако не е указано друго, съдържанието на този сайт принадлежи на " -"създателите му и е достъпно под " - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Неразпознат вид адрес %s" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Отписване" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Неподдържан формат на данните" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Неподдържана версия на OMB" +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Търсене на хора" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Форматът на файла с изображението не се поддържа." +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Търсене на бележки" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Бележки през SMS" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Други настройки" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Бележки през месинджър (IM)" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Управление на различни други настройки." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Бележки от %1$s и приятели в %2$s." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Бележки от %1$s в %2$s." +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Услуга за автоматично съкращаване, която да се ползва." -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Качване" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Настройки на профила" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Качете нов \"аватар\" (потребителско изображение) тук. Не можете да го " -"промените по-късно, затова се уверете, че е поне приблизително квадратен. " -"Трябва да е с лиценз като самия сайт. Използвайте картинка, която ви " -"принадлежи и искате да споделите." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Качване на нова снимка за профила" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -"Използвайте това поле, за да поканите приятели и колеги да използват " -"услугата на сайта." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Използва се само за промени, обяви или възстановяване на паролата" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Потребителят, когото проследявате, не съществува. " +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "Изходяща кутия за %s — страница %d" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Потребителят няма профил." +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Изходяща кутия за %s" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Потребителски псевдоним" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "Това е изходящата ви кутия с лични съобщения до други потребители." -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Потребителят не е открит." +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Смяна на паролата" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "В кой часови пояс сте обикновено?" +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Смяна на паролата." -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Какво става, %s?" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Паролата е записана." -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Къде се намирате (град, община, държава и т.н.)" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Стара парола" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Грешен вид изображение за '%s'" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Нова парола" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Грешен размер на изображението '%s'" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 или повече знака" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Да" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Потвърждаване" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Вече използвате този OpenID!" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "също като паролата по-горе" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Промяна" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Вече сте влезли!" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Паролата трябва да е 6 или повече знака." -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Вече сте абонирани за следните потребители:" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Паролите не съвпадат." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "С указания потребител не сте записани като приятели." +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Грешна стара парола" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Тук можете да смените паролата си. Внимавайте колко е добра новата." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Грешка при запазване на потребител — невалидност." -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Първо се регистрирайте, за да започнете да публикувате бележки." +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Грешка при запазване на новата парола." -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Можете да премахнете OpenID от сметката си, като натиснете бутона " -"\"Премахване\"." +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Паролата е записана." -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/peoplesearch.php:52 #, php-format msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" -"%). Въведете адреса си в настройките по-долу." - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас." - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Можете да ползвате локален абонамент!" +"Търсене на хора в %%site.name%% по техните име, място или интереси. " +"Отделяйте фразите за " -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Търсене на хора" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Не сте ни изпратили този профил" +#: actions/peopletag.php:70 +#, fuzzy, php-format +msgid "Not a valid people tag: %s" +msgstr "Това не е правилен адрес на е-поща." -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/peopletag.php:144 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +msgid "Users self-tagged with %s - page %d" msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Не може да изтривате бележки на друг потребител." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Невалидно съдържание на бележка" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 +#: actions/postnotice.php:90 #, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "За да каните хора в %s, трябва да сте влезли." - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за " -"увеличаването на общността тук!" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Разпознати сте. Въведете паролата си по-долу. " - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Вашият OpenID URL" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Псевдонимът ви на този сървър или е-пощата, с която сте регистрирани." +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Настройки на профила" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:71 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%%) ви позволява влизане в различни сайтове с един и " -"същ акаунт. От тук се управляват съответните OpenID." +"You can update your personal profile info here so people know more about you." +msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "преди няколко секунди" +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Данни на профила" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "преди около %d дни" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "преди около %d часа" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Пълно име" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "преди около %d минути" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Лична страница" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "преди около %d месеца" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "Адрес на личната ви страница, блог или профил в друг сайт" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "преди около ден" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишете себе си и интересите си в до 140 букви" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "преди около минута" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишете себе си и интересите си в до 140 букви" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "преди около месец" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "За мен" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "преди около година" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Местоположение" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "преди около час" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Къде се намирате (град, община, държава и т.н.)" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "изтриване" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "в отговор на..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "отговор" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "също като паролата по-горе" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Етикети" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "неподдържан вид файл" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« След" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Тази бележка не е отбелязана като любима!" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Език" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Грешка при изтриване на любима бележка." +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Предпочитан език" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Любимо" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Часови пояс" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Изпращане на писмо при отбелязване на моя бележка като любима." +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "В кой часови пояс сте обикновено?" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Изпращане на писмо при ново лично съобщение." +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Автоматично абониране за всеки, който се абонира за мен (подходящо за " +"ботове)." -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Тази бележка вече е отбелязана като любима!" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Грешка при отбелязване като любима." +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Не е избран часови пояс" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Нелюбимо" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Името на езика е твърде дълго (може да е до 50 знака)." -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/profilesettings.php:246 actions/tagother.php:178 #, php-format -msgid "%s favorite notices" -msgstr "%s любими бележки" +msgid "Invalid tag: \"%s\"" +msgstr "Неправилен етикет: \"%s\"" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Емисия с любимите бележки на %s" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Входяща кутия за %s — страница %d" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Грешка при запазване на профила." -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Входяща кутия за %s" +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Грешка при запазване етикетите." -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "Това е входящата ви кутия с лични съобщения от други потребители." +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Настройките са запазени." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:83 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +msgid "Beyond the page limit (%s)" msgstr "" -"%1$s използва %2$s (%3$s) и ви кани да се присъедините.\n" -"\n" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Автоматично влизане за в бъдеще; " +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Грешка при изтегляне на общия поток" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "С оглед на сигурността, въведете отново " +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Общ поток, страница %d" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Влезте с името и паролата си. " +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Общ поток" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Твърде дълго. Може да е най-много 140 знака." +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Емисия на общия поток" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Не е указан получател." +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Емисия на общия поток" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Не може да изпращате съобщения до този потребител." +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Емисия на общия поток" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/public.php:179 +#, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -"Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си " -"тихичко." -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Няма такъв потребител" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Ново съобщение" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Бележка без съответстващ профил" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/public.php:186 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) ви позволява да влизате в различни сайтове" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Ако искате да добавите OpenID към профила си, " - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Ако премахнете единствения си OpenID, няма да можете да влизате!" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Можете да премахнете OpenID от профила си " +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/outbox.php:28 actions/outbox.php:58 +#: actions/public.php:233 #, php-format -msgid "Outbox for %s - page %d" -msgstr "Изходяща кутия за %s — страница %d" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/public.php:238 #, php-format -msgid "Outbox for %s" -msgstr "Изходяща кутия за %s" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "Това е изходящата ви кутия с лични съобщения до други потребители." +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Емисия на общия поток" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/publictagcloud.php:63 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Търсене на хора в %%site.name%% по име, местоположение или интереси. " - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Можете а обновите личните си данни тук " +msgid "These are most popular recent tags on %s " +msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Потребител без съответстващ профил" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Кодът ви за потвърждение е твърде стар. " +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Псевдонимът ви на този сървър, " +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Вече сте влезли!" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Упътване за възстановяване на паролата " +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Няма такъв код за възстановяване." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Новата парола е записана. " +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Това не е код за възстановяване." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Паролата трябва да е 6 или повече знака." +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Код за възстановяване на непознат потребител." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Грешка в кода за потвърждение." + +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново." + +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Грешка при обновяване на потребител с потвърден email адрес." + +#: actions/recoverpassword.php:152 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%. " +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Емисия с любимите бележки на %s" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Грешка при изтегляне на любимите бележки" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Псевдонимът ви на този сървър или е-пощата, с която сте регистрирани." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Няма такова съобщение" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Възстановяване" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Само подателят и получателят могат да четат това съобщение." +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Нова парола" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Съобщение до %1$s в %2$s" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Възстановяване на паролата" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Съобщение от %1$s в %2$s" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Поискано е възстановяване на парола" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Изпращане на съобщение" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Непознато действие" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Мобилен оператор на телефона ви." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 или повече знака. И не ги забравяйте!" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Преки съобщения до %s" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Също като паролата по-горе" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Всички преки съобщения, изпратени до %s" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Обновяване" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Изпратени от вас преки съобщения" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Въведете псевдоним или е-поща." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Всички преки съобщения, изпратени от %s" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Няма потребител с такава е-поща или потребителско име." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Липсва текст на съобщението" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Няма указана е-поща за този потребител." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Получателят не е открит" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Грешка при запазване на потвърждение за адрес" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"Не може да изпращате преки съобщения до хора, които не са в списъка ви с " -"приятели." +"На е-пощата, с която сте регистрирани са изпратени инструкции за " +"възстановяване на паролата." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Отбелязани като любими от %s" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Неочаквано подновяване на паролата." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s бележки отбелязани като любими от %s / %s." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Паролата трябва да е от поне 6 знака." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s отбеляза бележката ви като любима" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Паролата и потвърждението й не съвпадат." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s току-що отбеляза като любима бележката ви от %2$s.\n" -"\n" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Новата парола е запазена. Влязохте успешно." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " -"там." - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Настройки за Twitter" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Профил в Twitter" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Текущ проверен профил в Twitter" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Име в Twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Без интервали, моля!" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Парола за Twitter" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Автоматично препращане на бележките ми към Twitter" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Препращане на локалните отговори с \"@\" и към Twitter" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Абониране за приятелите ми от Twitter тук" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -"Потребителското име може да съдържа само цифри, малки и главни букви и добна " -"черта. Може да е най-много 15 знака." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Грешка при сверяване на данните ви с Twitter" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Грешка в кода за потвърждение." -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Записването е успешно." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Грешка при записване настройките за Twitter" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Регистриране" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Настройките за Twitter са запазени." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Това не е вашият профил в Twitter." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Грешка при премахване на профила от Twitter" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Профилът от Twitter е премахнат." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Грешка при записване настройките за Twitter" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Записването не е позволено." -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Настройките за Twitter са запазени." +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Неправилен адрес на е-поща." -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Адресът на е-поща вече се използва." -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Неправилно име или парола." -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Резултат от командата" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Командата е изпълнена" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително " +"поле." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Грешка при изпълнение на командата" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 или повече знака. Задължително поле." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "За съжаление тази команда все още не се поддържа." +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Същото като паролата по-горе. Задължително поле." -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Абонаменти: %1$s\n" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Е-поща" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Потребителят няма последна бележка" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Използва се само за промени, обяви или възстановяване на паролата" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Бележката е отбелязана като любима." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "По-дълго име, за предпочитане \"истинското\" ви име." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Текстовете и файловите ми са достъпни под " -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Пълно име: %s" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Местоположение: %s" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 +#: actions/register.php:537 #, php-format -msgid "Homepage: %s" -msgstr "Домашна страница: %s" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Поздравления, %s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n" +"\n" +"* Отидете в [профила си](%s) и да публикувате първата си бележка.\n" +"* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да " +"изпращате бележки от програмата си за моментни съобщения.\n" +"* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които " +"споделяте общи интереси. \n" +"* Обновите [настройките на профила(%%%%action.profilesettings%%%%) си, за да " +"кажете повече за себе си на другите. \n" +"* Прочетете наличната [документация](%%%%doc.help%%%%) на сайта, за да се " +"запознаете с възможностите му. \n" +"\n" +"Благодарим, че се включихте в сайта и дано ползването на услугата ви носи " +"само приятни мигове!" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Относно: %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Трябва да получите веднага електронно писмо с указания за потвърждаване " +"адреса на е-пощата ви.)" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 +#: actions/remotesubscribe.php:98 #, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." +"За да се абонирате, можете да [влезете](%%action.login%%) или да " +"[регистрирате](%%action.register%%) нова сметка. Ако имате сметка на друга, " +"[подобна услуга за микроблогване](%%doc.openmublog%%), въведете адреса на " +"профила си в нея по-долу." -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Прякото съобщение до %s е изпратено." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Отдалечен абонамент" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Грешка при изпращане на прякото съобщение" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Абониране за този потребител" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Уточнете името на потребителя, за когото се абонирате." +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Потребителски псевдоним" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Абонирани сте за %s." +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Псевдоним на потребител, когото искате да следите" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Уточнете името на потребителя, от когото се отписвате." +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Адрес на профила" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Отписани сте от %s." +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Командата все още не се поддържа." +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Абониране" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Уведомлението е изключено." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Неправилен адрес на профил (грешен формат)" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Грешка при изключване на уведомлението." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неправилен адрес на профил (няма YADIS документ)." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Уведомлението е включено." +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Грешка при включване на уведомлението." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не е получен token за одобрение." -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Команди:\n" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Отговори на %s" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Грешка при вмъкване на съобщението." +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Отговори на %s, страница %d" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Грешка при обновяване на бележката с нов URL-адрес." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Емисия с бележки на %s" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Потребител без съответстващ профил в системата." +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Емисия с бележки на %s" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/replies.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/replies.php:203 #, php-format -msgid "New private message from %s" -msgstr "Ново лично съобщение от %s" +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/replies.php:205 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"%1$s (%2$s) ви изпрати лично съобщение:\n" -"\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Само потребителят може да отваря собствената си кутия." +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Съобщение до %1$s в %2$s" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Тази форма сама ще се изпрати автоматично." +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Любими бележки на %s, страница %d" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Любими" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Грешка при изтегляне на любимите бележки" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showfavorites.php:170 #, php-format -msgid "%s's favorite notices" -msgstr "Любими бележки на %s" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Потребител" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Входящи" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Получените от вас съобщения" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Изходящи" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Изпратените от вас съобщения" +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Емисия с приятелите на %s" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Емисия с приятелите на %s" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Настройки за интеграция с Twitter" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Емисия с приятелите на %s" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "До" +#: actions/showfavorites.php:205 +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 "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Грешка при обработка на съобщението" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showfavorites.php:211 #, php-format -msgid "%s and friends, page %d" -msgstr "%s и приятели, страница %d" +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Можете да качите личен аватар тук." +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Настройки за аватар" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Оригинал" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Преглед" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Профил на групата" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Изрязване" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 #, fuzzy -msgid "There was a problem with your session token. " -msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" +msgid "Note" +msgstr "Бележки" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Изберете квадратна област от изображението за аватар" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -#, fuzzy -msgid "Lost our file." -msgstr "Няма такава бележка." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Неподдържан вид файл" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Не е указан профил." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Емисия с бележки на %s" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Не е открит профил с такъв идентификатор." +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Емисия с бележки на %s" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Блокиране на потребителя" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Емисия с бележки на %s" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Наистина ли искате да блокирате този потребител? " +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Изходяща кутия за %s" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Вече сте блокирали този потребител." +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Членове" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Грешка при записване данните за блокирането." +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "" -#: actions/confirmaddress.php:159 -#, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "Адресът е премахнат." +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Всички членове" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Ще изтриете напълно бележката. " +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Статистики" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Добавяне към любимите" +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Създаване" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:448 #, php-format -msgid "Edit %s group" +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 "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/showgroup.php:454 +#, 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 "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "За да създавате група, трябва да сте влезли." +#: actions/showgroup.php:482 +msgid "Admins" +msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Няма псевдоним." +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Няма такова съобщение" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Няма такава група." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Само подателят и получателят могат да четат това съобщение." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "За да редактирате групата, трябва да сте й администратор." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Съобщение до %1$s в %2$s" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Съобщение от %1$s в %2$s" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +#: actions/shownotice.php:90 #, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "" -"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " -"между тях." +msgid "Notice deleted." +msgstr "Бележки" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Автобиографията е твърде дълга (до 140 символа)." +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Бележки с етикет %s" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Грешка при обновяване на групата." +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "%s, страница %d" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Настройките са запазени." +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Очаква се потвърждение за този адрес. " +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#, fuzzy -msgid "Make a new email address for posting to; " -msgstr "Нов адрес на е-поща за публикщуване в %s" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Емисия с бележки на %s" -#: actions/emailsettings.php:157 -#, fuzzy -msgid "Send me email when someone " -msgstr "Изпращане на писмо при ново лично съобщение." +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Емисия с бележки на %s" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Изходяща кутия за %s" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "Тази е-поща вече се използва от друг потребител." +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " -"от %s, трябва да го одобрите." -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/facebookhome.php:196 +#: actions/showstream.php:234 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showstream.php:239 #, php-format -msgid "Allow %s to update my Facebook status" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Пропускане" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Настройки за SMS" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "Няма съдържание!" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Страниране" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "След" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Текущ потвърден телефонен номер за SMS-и." -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Преди" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Очаква се потвърждение за този телефонен номер." -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Благодарим ви, че поканихте приятели да ползват %s!" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Код за потвърждение" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Изпратени са покани до следните хора:" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Въведете кода, който получихте по телефона." -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, fuzzy, php-format -msgid "You have been invited to %s" -msgstr "\"Побутване\" от %s" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Телефонен номер за SMS" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Емисия с приятелите на %s" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Телефонен номер — с код, без пунктоация и без интервали." -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" +"Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни " +"такси от оператора." -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "Изпращане на покани" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Не е въведен телефонен номер." -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Грешка при премахване на профила от Facebook." +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Не е избран оператор." -#: actions/facebooksettings.php:65 -#, fuzzy -msgid "There was a problem saving your sync preferences!" -msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Това и сега е номерът на телефона ви." + +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Този телефонен номер вече се използва от друг потребител." -#: actions/facebooksettings.php:67 +#: actions/smssettings.php:347 #, fuzzy -msgid "Sync preferences saved." -msgstr "Настройките са запазени." +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 "" +"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " +"Проверете съобщенията (или папката за спам) за кода и указанията за " +"използването му." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Автоматично препращане на бележките ми към Facebook." +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Този код за потвърждение е грешен." -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Препращане на локалните отговори с \"@\" и към Facebook." +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Това не е вашият телефонен номер." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Прeдставка" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Мобилен оператор" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Представка за добавяне към бележките." +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Изберете оператор" -#: actions/facebooksettings.php:124 +#: actions/smssettings.php:476 #, php-format -msgid "If you would like %s to automatically update " +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 "" +"Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който " +"не фигурира тук, пишете ни на адрес %s." -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Синхронизиране на настройките" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Не е въведен код." -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -#, fuzzy -msgid "Disfavor favorite" -msgstr "Нелюбимо" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Не сте абонирани за този профил" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Популярни бележки" +#: actions/subedit.php:83 +#, fuzzy +msgid "Could not save subscription." +msgstr "Грешка при създаване на нов абонамент." -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Популярни бележки, страница %d" - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Най-популярните бележки в момента в сайта." +#: actions/subscribe.php:55 +#, fuzzy +msgid "Not a local user." +msgstr "Няма такъв потребител" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Избрани потребители" +#: actions/subscribe.php:69 +#, fuzzy +msgid "Subscribed" +msgstr "Абониране" -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Избрани потребители, страница %d" +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Абонати" -#: actions/featured.php:99 +#: actions/subscribers.php:52 #, php-format -msgid "A selection of some of the great users on %s" +msgid "%s subscribers, page %d" msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Потребителят е забранил да се абонирате за него." - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Липсва ID" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Лого на групата" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Може да качите лого за групата ви." +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Tова са хората, които четат бележките ви." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Лотого е обновено." +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Това са хората, които четат бележките на %s." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Неуспешно обновяване на логото." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/subscribers.php:110 #, php-format -msgid "%s group members" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/groupmembers.php:96 +#: actions/subscribers.php:114 #, php-format -msgid "%s group members, page %d" +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Списък с потребителите в тази група." - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Групи" - -#: actions/groups.php:64 +#: actions/subscriptions.php:52 #, php-format -msgid "Groups, page %d" -msgstr "Групи, страница %d" +msgid "%s subscriptions" +msgstr "Абонаменти на %s" -#: actions/groups.php:90 +#: actions/subscriptions.php:54 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" +msgid "%s subscriptions, page %d" +msgstr "Абонаменти на %s, страница %d" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Създаване на нова група" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Няма хора, чийто бележки четете." -#: actions/groupsearch.php:57 +#: actions/subscriptions.php:69 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Търсене на групи в %%site.name%% по име, местоположение или описание." - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Търсене на групи" - -#: actions/imsettings.php:70 -#, fuzzy -msgid "You can send and receive notices through " -msgstr "Не може да изпращате съобщения до този потребител." +msgid "These are the people whose notices %s listens to." +msgstr "Хора, чийто бележки %s чете." -#: actions/imsettings.php:120 +#: actions/subscriptions.php:121 #, php-format -msgid "Jabber or GTalk address, " -msgstr "Адрес в Jabber или GTalk, " - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Изпращане на бележките по Jabber/GTalk " +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/imsettings.php:321 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Няма код за потвърждение." - -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "За да се присъедините към група, трябва да сте влезли." - -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Вече членувате в тази група." +msgid "%s is not listening to anyone." +msgstr "%1$s вече получава бележките ви в %2$s." -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "Грешка при проследяване — потребителят не е намерен." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "%s се присъедини към групата %s" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" +#: actions/tagother.php:33 +#, fuzzy +msgid "Not logged in" +msgstr "Не сте влезли в системата." -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "За напуснете група, трябва да сте влезли." +#: actions/tagother.php:39 +#, fuzzy +msgid "No id argument." +msgstr "Няма такъв документ." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Няма такава група" +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "Етикети" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "Не членувате в тази група." +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Потребителски профил" -#: actions/leavegroup.php:100 -#, fuzzy -msgid "You may not leave a group while you are its administrator." -msgstr "Не може да изтривате бележки на друг потребител." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Снимка" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 +#: actions/tagother.php:141 #, fuzzy -msgid "Could not find membership record." -msgstr "Грешка при обновяване записа на потребител." - -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "Грешка при проследяване — потребителят не е намерен." +msgid "Tag user" +msgstr "Етикети" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Грешка при запазване на етикетите." + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Нова група" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Бележки с етикет %s, страница %d" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Използвайте тази бланка за създаване на нова група." +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Грешка при създаване на групата." +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Емисия с бележки на %s" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "Грешка при създаване на нов абонамент." +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Няма такъв етикет." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Това е твърде дълго. " +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Методът в API все още се разработва." -#: actions/newmessage.php:134 +#: actions/unsubscribe.php:77 #, fuzzy -msgid "Don't send a message to yourself; " -msgstr "Не може да изпращате съобщения до този потребител." +msgid "No profile id in request." +msgstr "Сървърът не е върнал адрес на профила." -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 +#: actions/unsubscribe.php:84 #, fuzzy -msgid "Notice posted" -msgstr "Бележки" +msgid "No profile with that id." +msgstr "Не е открита бележка с такъв идентификатор." -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Грешка в Ajax" +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "Отписване" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Побутването е изпратено" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Побутването е изпратено!" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Одобряване на абонамента" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#: actions/userauthorization.php:110 #, fuzzy -msgid "OpenID login" -msgstr "Влизане с OpenID" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." -#: actions/openidsettings.php:128 +#: actions/userauthorization.php:188 #, fuzzy -msgid "Removing your only OpenID " -msgstr "Премахване на OpenID" +msgid "License" +msgstr "лиценз." -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Други настройки" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Приемане" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Управление на различни други настройки." +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Абониране за този потребител" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Автоматично съкращаване на адреси" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Охвърляне" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Услуга" +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Абонаменти на %s" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Услуга за автоматично съкращаване, която да се ползва." +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Няма заявка за одобрение." -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)." +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Абонаментът е одобрен" -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Смяна на паролата." +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " +"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Абонаментът е отказан" + +#: actions/userauthorization.php:261 #, fuzzy -msgid "Password change" -msgstr "Паролата е записана." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " +"абонамента, проверете инструкциите на сайта." -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "Това не е правилен адрес на е-поща." +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/userauthorization.php:301 #, php-format -msgid "Users self-tagged with %s - page %d" +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/peopletag.php:91 +#: actions/userauthorization.php:322 #, php-format -msgid "These are users who have tagged themselves \"%s\" " +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Данни на профила" +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Грешка при четене адреса на аватара '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Грешен вид изображение за '%s'" + +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Няма id." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Настройки на профила" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -"Автоматично абониране за всеки, който се абонира за мен (подходящо за " -"ботове)." -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/usergroups.php:64 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Неправилен етикет: \"%s\"" +msgid "%s groups, page %d" +msgstr "Групи на %s, страница %d" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Грешка при запазване етикетите." +#: actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Търсене за хора или бележки" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "Общ поток, страница %d" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Не членувате в тази група." -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Грешка при изтегляне на общия поток" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/public.php:220 +#: classes/File.php:137 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "Емисия на общия поток" - -#: actions/publictagcloud.php:63 +#: classes/File.php:147 #, php-format -msgid "These are most popular recent tags on %s " +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Грешка при вмъкване на съобщението." -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Грешка при обновяване на бележката с нов URL-адрес." -#: actions/register.php:286 -msgid "With this form you can create " +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" msgstr "" -#: actions/register.php:368 +#: classes/Notice.php:179 #, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" +msgid "Problem saving notice. Too long." +msgstr "Проблем при записване на бележката." -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "Използва се само за промени, обяви или възстановяване на паролата" +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Грешка при записване на бележката. Непознат потребител." -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "Адрес на личната ви страница, блог или профил в друг сайт" +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " +"отново след няколко минути." -#: actions/register.php:404 +#: classes/Notice.php:194 #, fuzzy -msgid "Describe yourself and your " -msgstr "Опишете себе си и интересите си в до 140 букви" +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " +"отново след няколко минути." -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "Къде се намирате (град, община, държава и т.н.)" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Забранено ви е да публикувате бележки в този сайт." -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " -msgstr "освен тези лични данни: парола, е-поща, месинджър, телефон." +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Проблем при записване на бележката." -#: actions/register.php:471 +#: classes/Notice.php:1120 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%. " - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" +msgid "DB error inserting reply: %s" +msgstr "Грешка в базата от данни — отговор при вмъкването: %s" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Съобщение до %1$s в %2$s" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "Отговори на %s, страница %d" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Профил" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "Любими бележки на %s, страница %d" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Промяна настройките на профила" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Качване на аватар" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Смяна на паролата" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Профил на групата" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Промяна обработката на писмата" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Note" -msgstr "Бележки" +msgid "Design your profile" +msgstr "Потребителски профил" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Друго" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Други настройки" + +#: lib/action.php:144 #, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "Емисия с бележки на %s" +msgid "%s - %s" +msgstr "%s (%s)" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Членове" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Неозаглавена страница" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Всички членове" +#: lib/action.php:430 +msgid "Home" +msgstr "Начало" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/showmessage.php:98 -#, fuzzy -msgid "Only the sender and recipient " -msgstr "Само подателят и получателят могат да четат това съобщение." +#: lib/action.php:432 +msgid "Account" +msgstr "Сметка" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, страница %d" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Промяна на поща, аватар, парола, профил" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Профил на " +#: lib/action.php:435 +msgid "Connect" +msgstr "Свързване" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Потребителски профил" +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Грешка при пренасочване към сървър: %s" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Снимка" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Покани" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Потребителски действия" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Поканете приятели и колеги да се присъединят към вас в %s" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Изпращате на пряко съобщение до този потребител." +#: lib/action.php:445 +msgid "Logout" +msgstr "Изход" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Съобщение" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Излизане от сайта" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Всички абонати" +#: lib/action.php:450 +msgid "Create an account" +msgstr "Създаване на нова сметка" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Всички групи" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Влизане в сайта" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Помощ" -#: actions/smssettings.php:128 +#: lib/action.php:456 #, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "Телефонен номер — с код, без пунктоация и без интервали." +msgid "Help me!" +msgstr "Помощ" -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Изпращане на бележките по Jabber/GTalk." +#: lib/action.php:459 +msgid "Search" +msgstr "Търсене" -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Очаква се потвърждение за този телефонен номер." +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Търсене за хора или бележки" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Мобилен оператор" +#: lib/action.php:480 +#, fuzzy +msgid "Site notice" +msgstr "Нова бележка" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Не сте абонирани за този профил" +#: lib/action.php:546 +msgid "Local views" +msgstr "" -#: actions/subedit.php:83 +#: lib/action.php:612 #, fuzzy -msgid "Could not save subscription." -msgstr "Грешка при създаване на нов абонамент." +msgid "Page notice" +msgstr "Нова бележка" -#: actions/subscribe.php:55 +#: lib/action.php:714 #, fuzzy -msgid "Not a local user." -msgstr "Няма такъв потребител" +msgid "Secondary site navigation" +msgstr "Абонаменти" -#: actions/subscribe.php:69 -#, fuzzy -msgid "Subscribed" -msgstr "Абониране" +#: lib/action.php:721 +msgid "About" +msgstr "Относно" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "Абонати" +#: lib/action.php:723 +msgid "FAQ" +msgstr "Въпроси" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "Това са хората, които четат бележките на %s." - -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "Това са хората, които четат бележките на %s." +#: lib/action.php:730 +msgid "Privacy" +msgstr "Поверителност" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "Абонаменти на %s" +#: lib/action.php:732 +msgid "Source" +msgstr "Изходен код" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "Абонаменти на %s, страница %d" +#: lib/action.php:734 +msgid "Contact" +msgstr "Контакт" -#: actions/subscriptions.php:65 +#: lib/action.php:736 #, fuzzy -msgid "These are the people whose notices " -msgstr "Хора, чийто бележки %s чете." +msgid "Badge" +msgstr "Побутване" -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "Това са хората, които четат бележките на %s." +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Лиценз на програмата StatusNet" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +#: lib/action.php:767 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." +"broughtby%%](%%site.broughtbyurl%%). " -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#: lib/action.php:769 #, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Бележки с етикет %s, страница %d" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** е услуга за микроблогване. " -#: actions/tag.php:66 actions/tag.php:73 +#: lib/action.php:771 #, php-format -msgid "Messages tagged \"%s\", most recent first" +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Ползва [StatusNet](http://status.net/) версия %s, система за микроблогване, " +"достъпна под [GNU Affero General Public License](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)." -#: actions/tagother.php:33 +#: lib/action.php:785 #, fuzzy -msgid "Not logged in" -msgstr "Не сте влезли в системата." +msgid "Site content license" +msgstr "Лиценз на програмата StatusNet" -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "Няма такъв документ." +#: lib/action.php:794 +msgid "All " +msgstr "Всички " -#: actions/tagother.php:65 -#, fuzzy, php-format -msgid "Tag %s" -msgstr "Етикети" +#: lib/action.php:799 +msgid "license." +msgstr "лиценз." -#: actions/tagother.php:141 -#, fuzzy -msgid "Tag user" -msgstr "Етикети" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Страниране" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" +#: lib/action.php:1062 +msgid "After" +msgstr "След" + +#: lib/action.php:1070 +msgid "Before" +msgstr "Преди" -#: actions/tagother.php:164 +#: lib/action.php:1119 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Грешка при запазване на етикетите." - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Няма такъв етикет." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "Бележки с етикет %s" +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профил" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не е открито." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Резултат от командата" -#: actions/twittersettings.php:71 -#, fuzzy -msgid "Add your Twitter account to automatically send " -msgstr "" -"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " -"там." +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Командата е изпълнена" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Име в Twitter" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Грешка при изпълнение на командата" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Парола за Twitter" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "За съжаление тази команда все още не се поддържа." -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Приятели от Twitter" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Грешка при обновяване на потребител с потвърден email адрес." -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/twittersettings.php:341 +#: lib/command.php:99 #, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." - -#: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy -msgid "Error removing the block." -msgstr "Грешка при запазване на потребител." +msgid "Nudge sent to %s" +msgstr "Побутването е изпратено" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "Сървърът не е върнал адрес на профила." +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -#, fuzzy -msgid "No profile with that id." -msgstr "Не е открита бележка с такъв идентификатор." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -#, fuzzy -msgid "Unsubscribed" -msgstr "Отписване" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Потребителят няма последна бележка" + +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Бележката е отбелязана като любима." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: lib/command.php:315 #, php-format -msgid "%s groups" -msgstr "Групи на %s" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: lib/command.php:318 #, php-format -msgid "%s groups, page %d" -msgstr "Групи на %s, страница %d" +msgid "Fullname: %s" +msgstr "Пълно име: %s" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Грешка при записване на бележката. Непознат потребител." +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Местоположение: %s" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " -"отново след няколко минути." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Домашна страница: %s" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Забранено ви е да публикувате бележки в този сайт." +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "Относно: %s" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Качване на аватар" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Друго" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Грешка при изпращане на прякото съобщение" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Други настройки" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/command.php:439 #, fuzzy, php-format -msgid "%s - %s" -msgstr "%s (%s)" +msgid "Reply to %s sent" +msgstr "Отговаряне на тази бележка" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Неозаглавена страница" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблем при записване на бележката." -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Уточнете името на потребителя, за когото се абонирате." -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Абонирани сте за %s." -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Търсене за хора или бележки" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Уточнете името на потребителя, от когото се отписвате." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Сметка" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Отписани сте от %s." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Промяна на поща, аватар, парола, профил" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Командата все още не се поддържа." -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Свързване към моментни съобщения, SMS, Twitter" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Уведомлението е изключено." -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Излизане от сайта" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Грешка при изключване на уведомлението." -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Влизане в сайта" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Уведомлението е включено." -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Създаване на нова сметка" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Грешка при включване на уведомлението." -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Влизане с OpenID" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Грешка при създаване на OpenID форма: %s" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Помощ" +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" + +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +#: lib/common.php:191 #, fuzzy -msgid "Site notice" -msgstr "Нова бележка" +msgid "No configuration file found. " +msgstr "Няма код за потвърждение." -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Нова бележка" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#: lib/common.php:194 #, fuzzy -msgid "Secondary site navigation" -msgstr "Абонаменти" +msgid "Go to the installer." +msgstr "Влизане в сайта" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Лиценз на програмата StatusNet" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Всички " +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Бележки през месинджър (IM)" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "лиценз." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Бележки през SMS" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Блокиране на потребителя" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Блокиране" +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/designsettings.php:105 #, fuzzy -msgid "Disfavor this notice" -msgstr "%s любими бележки" +msgid "Upload file" +msgstr "Качване" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "Създаване на нова сметка" +#: lib/designsettings.php:139 +msgid "On" +msgstr "" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Публикувано" +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Отбелязване като любимо" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Изнасяне на данните" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Филтриране на етикетите" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Смяна на паролата" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Всички" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Етикет" +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Свързване" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Изберете етикет за конкретизиране" +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Търсене" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Текст" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Списък" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "%s любими бележки" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Отбелязване като любимо" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Любимо" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Изнасяне на данните" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Филтриране на етикетите" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Всички" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Изберете оператор" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Етикет" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Изберете етикет за конкретизиране" + +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес на страница, блог или профил в друг сайт на групата" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опишете групата или темата й в до 140 букви" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишете групата или темата й в до 140 букви" + #: lib/groupeditform.php:172 msgid "Description" msgstr "Описание" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Опишете групата или темата й в до 140 букви" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" "Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Група" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блокиране" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Блокиране на потребителя" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Редактиране настройките на групата %s" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 msgid "Logo" msgstr "Лого" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Добавяне или редактиране логото на %s" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Добавяне или редактиране логото на %s" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Групи с най-много членове" @@ -5409,10 +4014,44 @@ msgid "Tags in %s group's notices" msgstr "Етикети в бележките към групата %s" #: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " +msgid "This page is not available in a media type you accept" msgstr "Страницата не е достъпна във вида медия, който приемате" +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Може да качите лого за групата ви." + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Частично качване на файла." + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Системна грешка при качване на файл." + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Файлът не е изображение или е повреден." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Форматът на файла с изображението не се поддържа." + +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Няма такава бележка." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Неподдържан вид файл" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Нова бележка" + #: lib/joinform.php:114 msgid "Join" msgstr "Присъединяване" @@ -5421,43 +4060,87 @@ msgstr "Присъединяване" msgid "Leave" msgstr "Напускане" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Вход с име и парола" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Създаване на нова сметка" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Вход или записване с OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Само потребителят може да отваря собствената си кутия." + +#: lib/mailbox.php:139 +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:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " от " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Потвърждаване адреса на е-поща" -#: lib/mail.php:175 +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" -msgstr "" -"Здрасти, %s!\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" "\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s вече получава бележките ви в %2$s." -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s вече получава бележките ви в %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"С уважение,\n" +"%4$s.\n" + +#: lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Местоположение: %s\n" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Лична страница: %s\n" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -5466,65 +4149,218 @@ msgstr "" "Биография: %s\n" "\n" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 #, php-format -msgid "You've been nudged by %s" -msgstr "Побутнати сте от %s" +msgid "New email address for posting to %s" +msgstr "Нов адрес на е-поща за публикщуване в %s" -#: lib/mail.php:465 +#: lib/mail.php:288 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) се чуди с какво се занимавате напоследък " - -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s току-що отбеляза като любима бележката ви от %2$s." - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "От" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Изпращане на пряко съобщеие" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "Състояние на %s" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Изпращане на бележка" +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Потвърждение за SMS" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Налични знаци" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "Побутнати сте от %s" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "в отговор на" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "Отговаряне на тази бележка" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Ново лично съобщение от %s" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s отбеляза бележката ви като любима" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Грешка при изтегляне на общия поток" + +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Изпращане на пряко съобщеие" + +#: lib/messageform.php:146 +msgid "To" +msgstr "До" + +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Налични знаци" + +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Изпращане на бележка" + +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Какво става, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Няма съдържание!" + +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Изтриване на бележката" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Изтриване" - #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "Побутване на този потребител" @@ -5537,41 +4373,139 @@ msgstr "Побутване" msgid "Send a nudge to this user" msgstr "Побутване на този потребител" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Грешка при вмъкване на нов профил" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Грешка при вмъкване на аватар" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Грешка при вмъкване на отдалечен профил" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Изтриване на бележката" + +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Грешка при добавяне на нов абонамент." + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Лично" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Отговори" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Любими" + +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Потребител" + +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Входящи" + +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Получените от вас съобщения" + +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Изходящи" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Изпратените от вас съобщения" + #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" msgstr "Етикети в бележките на %s" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(няма)" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Абонаменти" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Всички абонаменти" + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Абонати" + +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Всички абонати" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Потребител" + +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Участник от" + +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Всички групи" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +#: lib/publicgroupnav.php:78 msgid "Public" msgstr "Общ поток" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +#: lib/publicgroupnav.php:82 msgid "User groups" msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Скорошни етикети" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +#: lib/publicgroupnav.php:88 msgid "Featured" msgstr "Избрано" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +#: lib/publicgroupnav.php:92 msgid "Popular" msgstr "Популярно" +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Търсене" + +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Търсене" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Хора" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Търсене на хора в сайта" + #: lib/searchgroupnav.php:82 msgid "Notice" msgstr "Бележки" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Търсене в съдържанието на бележките" + #: lib/searchgroupnav.php:85 msgid "Find groups on this site" msgstr "Търсене на групи в сайта" @@ -5580,35 +4514,62 @@ msgstr "Търсене на групи в сайта" msgid "Untitled section" msgstr "Неозаглавен раздел" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Абонаменти на %s" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Абонирани за %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Групи, в които участва %s" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Поканете приятели и колеги да се присъединят към вас в %s" - -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "Потребителят ви е блокирал." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Абониране за този потребител" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(няма)" + +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" + +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "Потребителят ви е блокирал." + +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Грешка при абониране." + +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Грешка при абониране на друг потребител за вас." + +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Не сте абонирани!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Грешка при изтриване на абонамента." #: lib/tagcloudsection.php:56 msgid "None" @@ -5618,2077 +4579,106 @@ msgstr "Без" msgid "Top posters" msgstr "Най-често пишещи" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Разблокиране на този потребител" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Разблокиране" - #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Отписване от този потребител" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Емисия с приятелите на %s" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Емисия с приятелите на %s" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Емисия с приятелите на %s" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Отписване" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/userprofile.php:116 #, fuzzy -msgid "You and friends" -msgstr "%s и приятели" +msgid "Edit Avatar" +msgstr "Аватар" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Можете да качите личен аватар тук." +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Потребителски действия" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/userprofile.php:248 #, fuzzy -msgid "Avatar deleted." -msgstr "Аватарът е обновен." +msgid "Edit profile settings" +msgstr "Настройки на профила" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Изпращате на пряко съобщение до този потребител." -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Изпращане на писмо при ново лично съобщение." +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Съобщение" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "преди няколко секунди" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "преди около минута" -#: actions/facebooksettings.php:124 +#: lib/util.php:848 #, 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 "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Може да качите лого за групата ви." - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Изберете квадратна област от изображението за аватар" - -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Микроблог на %s" +msgid "about %d minutes ago" +msgstr "преди около %d минути" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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%% по техните име, място или интереси. " -"Отделяйте фразите за " +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "преди около час" -#: actions/groups.php:90 +#: lib/util.php:852 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Грешка при изпращане на прякото съобщение" - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Търсене на \"%s\" в потока" - -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"За по-голяма сигурност, моля въведете отново потребителското си име и парола " -"при промяна на настройките." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Емисия на общия поток" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Емисия на общия поток" - -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Емисия на общия поток" +msgid "about %d hours ago" +msgstr "преди около %d часа" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "преди около ден" -#: actions/register.php:286 actions/register.php:329 +#: lib/util.php:856 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." +msgid "about %d days ago" +msgstr "преди около %d дни" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Създаване" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "преди около месец" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: lib/util.php:860 #, 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 "" - -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Профил на групата" - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Профил на " - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Емисия с бележки на %s" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Емисия с бележки на %s" +msgid "about %d months ago" +msgstr "преди около %d месеца" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Емисия с бележки на %s" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "преди около година" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Изходяща кутия за %s" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Аватар" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Настройки на профила" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +msgid "%s is not a valid color!" +msgstr "Адресът на личната страница не е правилен URL." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: lib/webcolor.php:123 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " -"Проверете съобщенията (или папката за спам) за кода и указанията за " -"използването му." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Грешка при обработка на съобщението" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Няма такъв потребител" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " -"там." - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " -"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Търсене за хора или бележки" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " -"отново след няколко минути." - -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Свързване към моментни съобщения, SMS, Twitter" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Побутване" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "" -"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " -"име и парола." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s вече получава бележките ви в %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"С уважение,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Търсене" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Няма такъв документ." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Списък с потребителите в тази група." - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Списък с потребителите в тази група." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Потребителски профил" - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s и приятели, страница %d" - -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Списък с потребителите в тази група." - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Разблокиране на този потребител" - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Код за потвърждение" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Грешка при изтриване на бележката." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Неправилен етикет: \"%s\"" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Опитайте друг псевдоним, този вече е зает." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Нова бележка" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Нова бележка" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Неправилен псевдоним." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Не е указан профил." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Потребителят ви е блокирал." - -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Не членувате в тази група." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Блокиране на потребителя" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "За да създавате група, трябва да сте влезли." - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Групи" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Грешка при обновяване на потребителя." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Грешка при записване настройките за Twitter" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Настройките са запазени." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "За да редактирате групата, трябва да сте й администратор." - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Няма резултати" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "Потребителят ви е блокирал." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Съобщение" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Грешка при запазване на профила." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) ви позволява влизане в различни сайтове с един и " -"същ акаунт. От тук се управляват съответните OpenID." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Настройки на профила" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Ако сте забравили или загубили паролата си, може да получите нова на е-" -"пощата, въведена в профила ви." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Разпознати сте. Въведете паролата си по-долу. " - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Поискано е възстановяване на парола" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Грешка в кода за потвърждение." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Абониране за този потребител" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Любими бележки на %s, страница %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Емисия с бележки на %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Емисия с бележки на %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Емисия с бележки на %s" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Няма такъв потребител" - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Бележки с етикет %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Емисия с бележки на %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s вече получава бележките ви в %2$s." - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Емисия с бележки на %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Емисия с бележки на %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Тази бележка вече е отбелязана като любима!" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Тази бележка не е отбелязана като любима!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Грешка при изтегляне на общия поток" - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Не е указан получател." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Не са открити бележки." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Реплики на %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Бележки от %1$s в %2$s." - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "лиценз." - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Абонаменти на %s" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Настройки на профила" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Не членувате в тази група." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Проблем при записване на бележката." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Съобщение до %1$s в %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Потребителски профил" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Профил" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Качване" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Смяна на паролата" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Свързване" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Търсене" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Списък" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Блокиране" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Блокиране на потребителя" - -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Добавяне или редактиране логото на %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Няма съдържание!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Потребител" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Търсене" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Адресът на личната страница не е правилен URL." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Няма такъв етикет." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Преки съобщения до %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Твърде дълго. Може да е най-много 140 знака." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Грешка при проследяване — потребителят не е намерен." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Автобиографията е твърде дълга (до 140 символа)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Вече членувате в тази група." - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Грешка при проследяване — потребителят не е намерен." - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Не членувате в тази група." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Грешка при проследяване — потребителят не е намерен." - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Групи на %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Групи, в които участва %s" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Търсене на групи в сайта" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Аватарът е обновен." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Форматът на файла с изображението не се поддържа." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Снимка" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Автобиографията е твърде дълга (до 140 символа)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Бележки от %1$s в %2$s." - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Потребителят, когото проследявате, не съществува. " - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Забранено." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Непозната версия на протокола OMB." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Няма такава бележка." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Няма такава бележка." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Бележки от %1$s в %2$s." - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Страницата не е достъпна във вида медия, който приемате" - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " -"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Бележки от %1$s в %2$s." - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Всички бележки, намерени с \"%s\"" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Свързване" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Опишете себе си и интересите си в до 140 букви" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Опишете себе си и интересите си в до 140 букви" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Автобиографията е твърде дълга (до 140 символа)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Неправилен адрес на профил (няма YADIS документ)." - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Не е получен token за одобрение." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Емисия с бележки на %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Емисия с бележки на %s" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Емисия с бележки на %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Съобщение до %1$s в %2$s" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Емисия с приятелите на %s" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Емисия с приятелите на %s" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Емисия с приятелите на %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Изходяща кутия за %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Бележки" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Страницата не е достъпна във вида медия, който приемате" - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Емисия с бележки на %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " -"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " -"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " -"абонамента, проверете инструкциите на сайта." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Грешка при четене адреса на аватара '%s'" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Грешен вид изображение за '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Грешка при пренасочване към сървър: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Лиценз на програмата StatusNet" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Грешка при обновяване на потребител с потвърден email адрес." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Побутването е изпратено" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" -"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" -"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Отговаряне на тази бележка" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Проблем при записване на бележката." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Няма код за потвърждение." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Влизане в сайта" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Изберете оператор" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Опишете групата или темата й в до 140 букви" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Опишете групата или темата й в до 140 букви" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Нова бележка" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s отбеляза бележката ви като любима" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " от " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Грешка при изтегляне на общия поток" - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Изтриване на бележката" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Невалидно съдържание на бележка" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Грешка при създаване на OpenID форма: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Това не е регистриран потребител." -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Може да качите лого за групата ви." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Това не е вашият входящ адрес." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Входящата поща не е разрешена." diff --git a/locale/ca/LC_MESSAGES/statusnet.mo b/locale/ca/LC_MESSAGES/statusnet.mo index 86fd07da9..49b67a198 100644 Binary files a/locale/ca/LC_MESSAGES/statusnet.mo and b/locale/ca/LC_MESSAGES/statusnet.mo differ diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 82be16d89..25a572c8c 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -5,3126 +5,2028 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:06+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:57:50+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Cerca \"%s\" al flux" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"excepte les següents dades privades: contrasenya, adreça de correu " -"electrònic, adreça de missatgeria instantània, número de telèfon." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "No existeix aquesta etiqueta." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " de " +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "No existeix aquest usuari." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Notificacions contestant a %2$s" +msgid "%s and friends, page %d" +msgstr "%s i amics, pàgina %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s t'ha convidat us ha convidat a unir-te al grup %2$s" +msgid "%s and friends" +msgstr "%s i amics" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s us ha convidat a unir-vos a %2$s (%3$s).\n" -"\n" -"%2$s és un servei de micro-blogging que us permetrà estar al dia amb gent " -"que conegueu i gent que us interessi.\n" -"\n" -"Podeu també compartir notícies sobre vosaltres mateixos, el que penseu, o la " -"vostra vida a la xarxa amb gent que conegueu. És també força bo per conèixer " -"nova gent amb qui compartir els vostres interessos.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed per a amics de %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s ara està escoltant els teus avisos a %2$s." +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed per a amics de %s" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed per a amics de %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s ara està escoltant els teus avisos a %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentament,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s notificacions que responen a notificacions de %2$s / %3$s." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "estat de %1$s a %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "Flux públic de %s" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s i amics" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "%s línia temporal pública" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Actualitzacions de %1$s i amics a %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s estat" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "No s'ha trobat el mètode API!" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s línia temporal" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Aquest mètode requereix POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "%s notificacions de tots!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " -"instruccions sobre com confirmar la teva direcció de correu electrònic.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" -"site.broughtbyurl%%)." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "L'usuari no té perfil." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** és un servei de microblogging." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Ha fallat el bloqueig d'usuari." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Els col·laboradors han de ser citats pel seu nom complet o sobrenom. " +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Ha fallat el desbloqueig d'usuari." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 lletres en minúscula o números, sense signes de puntuació o espais" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "No hi ha text al missatge!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "És massa llarg. Màxim del missatge és 140 caràcters." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 o més caràcters" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "No has escrit cap usuari receptor." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 o més caràcters, i no te n'oblidis!" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "No pots enviar missatges directes a usuaris que no siguin amics teus." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 o més caràcters. Requerit." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Missatges directes a %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " -"has afegit. Has d'acceptar que %s et pugui enviar missatges." +msgid "All the direct messages sent from %s" +msgstr "Tots els missatges directes enviats per %s" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"S'ha enviat un codi de confirmació al correu electrònic que has afegit. " -"Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest " -"codi i les instruccions per utilitzar-lo." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Missatges directes a %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " -"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " -"instruccions per utilitzar-lo." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Tots els missatges directes enviats a %s" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "No s'ha trobat el mètode API!" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "No s'ha trobat cap estatus amb aquesta ID." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Mètode API en construcció." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Aquesta nota ja és favorita." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Sobre" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "No es pot crear favorit." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Acceptar" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Aquesta notificació no és un favorit!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Afegir" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "No pots eliminar favorits." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Afegir OpenID" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Afegir o eliminar OpenIDs" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adreça" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "" +"No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Direccions d'amic per convidar (una per línia)" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Totes les subscripcions" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Totes les actualitzacions per a %s" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Dos ids d'usuari o screen_names has de ser substituïts." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "No s'ha pogut recuperar la conversa pública." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Ja estàs connectat." +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "No es pot trobar cap estatus." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Ja estàs subscrit!" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "No s'ha pogut crear el grup." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "N'estàs segur que vols eliminar aquesta notificació?" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "No es pot crear favorit." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autoritzar subscripció" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "No s'ha pogut establir la pertinença d'aquest grup." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -"Iniciar sessió automàticament en el futur; no utilitzar en ordinadors " -"compartits!" +"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " +"espais." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal " -"per no-humans)" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Aquest sobrenom ja existeix. Prova un altre. " -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Sobrenom no vàlid." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Avatar actualitzat." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "La pàgina personal no és un URL vàlid." + +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "El teu nom és massa llarg (màx. 255 caràcters)." + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "la descripció és massa llarga (màx. 140 caràcters)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "La ubicació és massa llarga (màx. 255 caràcters)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Too many aliases! Maximum %d." msgstr "" -"A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte " -"Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva " -"llista d'amics?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta no vàlida: \"%s\"" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Aquest sobrenom ja existeix. Prova un altre. " + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la " -"carpeta de spam!) per al missatge amb les instruccions." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Esperant confirmació per aquest número de telèfon." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Ja ets membre d'aquest grup" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Anterior »" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Biografia" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "No s'ha pogut afegir l'usuari %s al grup %s" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "La biografia és massa llarga (màx. 140 caràcters)." +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "No ets membre d'aquest grup." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "No es pot esborrar la notificació." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "No es pot llegir l'URL de l'avatar '%s'" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "No es pot guardar la nova contrasenya." +msgid "%s groups" +msgstr "%s grups" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Cancel·lar" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Accions del grup" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Impossible crear una instància de l'objecte OpenID" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s grups" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Impossible normalitzar aquest Jabber ID" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s grups són membres de" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "No es pot normalitzar aquesta direcció de correu electrònic" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Aquest mètode requereix POST o DELETE." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Canviar" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "No pots eliminar l'estatus d'un altre usuari." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Canviar correu electrònic" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar actualitzat." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Canviar contrasenya" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "No s'ha trobat cap estatus amb la ID trobada." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Canviar la teva contrasenya" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Massa llarg. La longitud màxima és de 140 caràcters." -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Canviar les preferències del teu perfil" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "No s'ha trobat" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Confirmar" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Confirmar adreça" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Format d'imatge no suportat." -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Confirmació cancel·lada." +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favorits de %s" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Codi de confirmació" +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s actualitzacions favorites per %s / %s." -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Codi de confirmació no trobat. " +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s línia temporal" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, podries...\n" -"\n" -"* Anar al teu [teu perfil](%s) i publicar el teu primer missatge.\n" -"* Afegir una [direcció Jabber/GTalk](%%%%action.imsettings%%%%) i així poder " -"publicar les notificacions a través de missatgeria instantània.\n" -"* [Buscar gent](%%%%action.peoplesearch%%%%) que puguis conèixer o que " -"comparteixi els teus interessos. \n" -"* Actualitzar les [preferències del teu perfil](%%%%action.profilesettings%%%" -"%) per explicar als demés més sobre tu. * Llegir els [documents de la xarxa]" -"(%%%%doc.help%%%%) per conèixer les característiques del nostre servei. \n" -"\n" -"Gràcies per registrar-te i esperem que gaudeixis d'aquest servei." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Connectar-se" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Connectar-se a un compte existent" +msgid "Updates from %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Posar-se en contacte" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Notificacions contestant a %2$s" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinementions.php:126 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "No s'ha pogut crear el formulari OpenID: %s" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s notificacions que responen a notificacions de %2$s / %3$s." -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" -"No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." +msgid "%s public timeline" +msgstr "%s línia temporal pública" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not redirect to server: %s" -msgstr "No s'ha pogut redirigir al servidor: %s" +msgid "%s updates from everyone!" +msgstr "%s notificacions de tots!" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "No s'ha pogut guardar la informació de l'avatar" +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "Aviso etiquetats amb %s" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "No s'ha pogut guardar la informació del nou perfil" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "No pots subscriure a un altre a tu mateix." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "No s'ha trobat." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "No pots subscriure." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No existeix aquest document." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Cap sobrenom." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Cap mida." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Mida invàlida." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "No s'ha pogut eliminar la subscripció." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "No es pot trobar cap estatus." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Pots pujar el teu avatar personal." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "No s'ha pogut obtenir un senyal de petició." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Usuari sense perfil coincident" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "No s'ha pogut inserir el codi de confirmació." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Configuració de l'avatar" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "No s'ha pogut inserir una nova subscripció." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Original" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "No s'ha pogut guardar el perfil." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Previsualitzar" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "No es pot actualitzar l'usuari per autosubscriure." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Eliminar" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "No s'ha pogut actualitzar el registre de l'usuari." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Pujar" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "No s'ha pogut actualitzar l'usuari." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Crop" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Crear" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" +"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " +"us plau." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Crear un nou usuari amb aquest sobrenom." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Enviament de formulari inesperat." -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Crear nou compte" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "" +"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " +"avatar." -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Crear nou compte per a un OpenID que ja té un usuari." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "S'ha perdut el nostre fitxer de dades." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Adreça actual Jabber/Gtalk confirmada." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Avatar actualitzat." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Número de telèfon actualment confirmat i activat per SMS." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Error en actualitzar avatar." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Correu electrònic confirmat actualment." +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualitzat." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Actualment" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Cap sobrenom." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Hashtag de l'error de la base de dades:%s" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "No existeix tal grup" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Error de BD en inserir resposta: %s" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Perfil de l'usuari" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Eliminar nota." +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s i amics, pàgina %d" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "La llista dels usuaris d'aquest grup." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Correu electrònic" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Ha fallat el desbloqueig d'usuari." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Direcció de correu electrònic" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Desbloquejar" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Configuració del correu electrònic" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Desbloquejar aquest usuari" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "L'adreça de correu electrònic ja existeix." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "No connectat." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Confirmació de l'adreça de correu electrònic" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "No s'ha especificat perfil." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Correu electrònic, com Email address, like \"UserName@example.org\"" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "No hi ha cap perfil amb aquesta ID." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Direcció de correu electrònic" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Usuari bloquejat." -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Escriu un sobrenom o una adreça de correu electrònic." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Escriu el codi que has rebut en el teu telèfon mòbil." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "No" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Error en autoritzar senyal" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "La llista dels usuaris d'aquest grup." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Error en connectar usuari a OpenID." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Sí" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Error en connectar usuari." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "La llista dels usuaris d'aquest grup." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Error en inserir avatar" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Ja havies bloquejat aquest usuari." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Error en inserir el nou perfil" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Error al guardar la informació del block." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Error en inserir perfil remot" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Error en guardar confirmació de l'adreça." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Error en guardar perfil remot" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Error en guardar perfil." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Error en guardar l'usuari." +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Error en guardar usuari; invàlid." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Cap codi de confirmació." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Error en configurar l'usuari." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Codi de confirmació no trobat. " -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Error en actualitzar el perfil" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Aquest codi de confirmació no és per a tu!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Error en actualitzar el perfil remot" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Tipus d'adreça %s desconeguda" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Error amb el codi de confirmació." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Aquesta adreça ja ha estat confirmada." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Sobrenom ja existent." +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "No s'ha pogut actualitzar l'usuari." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "Preguntes freqüents" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Error en actualitzar avatar." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Confirmar adreça" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Feed per a amics de %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed per a respostes a %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Codi de confirmació" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed per a l'etiqueta %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Avisos" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Trobar contingut de les notes" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "No existeix aquest avís." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Trobar gent en aquest lloc" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "No es pot esborrar la notificació." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " -"contrasenya abans de canviar la teva configuració." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Nom complet" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "El teu nom és massa llarg (màx. 255 caràcters)." - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Ajuda" +"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " +"no ho podràs desfer." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Inici" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Eliminar nota." -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Pàgina personal" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "N'estàs segur que vols eliminar aquesta notificació?" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "La pàgina personal no és un URL vàlid." +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "No es pot esborrar la notificació." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Vull publicar notificacions per correu electrònic." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Eliminar aquesta nota" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "Missatgeria Instantània" +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " +"us plau." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Adreça de missatgeria instantània" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Aquesta notificació no és un favorit!" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Configuració de missatgeria instantània" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Afegir a favorits" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Si ja tens un compte, inicia una sessió amb el teu nom d'usuari i " -"contrasenya per a connectar-lo al teu OpenID." +#: actions/doc.php:69 +msgid "No such document." +msgstr "No existeix aquest document." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Si vols afegir un compte OpenID, introdueix-lo en el camp de sota i clica " -"\"Afegir\"." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Editar el grup %s" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova " -"que t'enviarem al correu electrònic que tinguis posat al teu compte." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Has d'haver entrat per crear un grup." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Correu electrònic entrant" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Has de ser admin per editar aquest grup" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Eliminat el correu electrònic entrant." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Utilitza aquest formulari per editar el grup." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Contrasenya antiga incorrecta" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "la descripció és massa llarga (màx. 140 caràcters)." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Nom d'usuari o contrasenya incorrectes." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "No s'ha pogut actualitzar el grup." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"S'han enviat instruccions per a recuperar la teva contrasenya a l'adreça de " -"correu electrònic registrada." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Configuració guardada." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "L'URL de l'avatar '%s' és invàlid" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Configuració del correu electrònic" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" -msgstr "Correu electrònic invàlid: %s" +msgid "Manage how you get email from %%site.name%%." +msgstr "Gestionar com reps correus de %%site.name%%." -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "La pàgina personal '%s' és invàlida" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adreça" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "L'URL de la llicència '%s' és invàlid" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Correu electrònic confirmat actualment." -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "El contingut de l'avís és invàlid" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Eliminar" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "L'URI de l'avís '%s' és invàlid" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la " +"carpeta de spam!) per al missatge amb les instruccions." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "L'URL de l'avís '%s' és invàlid" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Cancel·lar" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "L'URL del perfil '%s' és invàlid." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Direcció de correu electrònic" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "L'URL del perfil és invàlid (format incorrecte)" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Correu electrònic, com Email address, like \"UserName@example.org\"" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "URL del perfil retornat pel servidor invàlid." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Afegir" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Mida invàlida." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Correu electrònic entrant" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Nom d'usuari o contrasenya invàlids." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" +"Enviar correu electrònic a aquesta direcció per publicar noves notificacions." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Invitació(ons) enviada(des)" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Posar un nou correu electrònic per publicar; cancel·lar l'antic." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Invitació(ons) enviada(des) a la següent gent:" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Nou" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Invitar" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Preferències" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Invitar nous usuaris" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -"Utilitza el software de microblogging [StatusNet](http://status.net), versió " -"%s, disponible sota la [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari." +"Envia'm notificacions quan algú nou se'm subscrigui, al meu correu " +"electrònic." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -"Adreça Jabber o GTalk, per exemple \"NomUsuari@exemple.org\". Primer, " -"assegura't d'afegir a %s a la teva llista d'amics en el teu client de " -"missatgeria instantània o a GTalk." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Idioma" +"Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "L'idioma és massa llarg (màx 50 caràcters)." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Ubicació" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "La ubicació és massa llarga (màx. 255 caràcters)." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Permetre que els amics em reclamin i m'enviïn un correu electrònic." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Inici de sessió" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Vull publicar notificacions per correu electrònic." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Inici de sessió amb un compte [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publica una MicroID per al meu correu electrònic." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " -"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " -"[OpenID] (%%action.openidlogin%%)." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Guardar" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Sortir" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Preferències guardades." -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Nom llarg, preferiblement el teu nom \"real\"" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "No hi ha cap direcció de correu electrònic." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Contrasenya oblidada o perduda?" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "No es pot normalitzar aquesta direcció de correu electrònic" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Posar un nou correu electrònic per publicar; cancel·lar l'antic." +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "No és una direcció de correu electrònic vàlida." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Gestionar com reps correus de %%site.name%%." +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Aquest ja és el teu correu electrònic." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Membre des de" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Aquest correu electrònic pertany a un altre usuari." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Microblog de %s" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "No s'ha pogut inserir el codi de confirmació." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format +#: actions/emailsettings.php:358 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." +"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 "" -"Capacitat per al teu telèfon mòbil. Si vostè coneix una companyia que " -"accepti SMS a través del correu electrònic, però no està a la llista, " -"envia'ns un correu electrònic per fer-nos-ho saber %s." +"S'ha enviat un codi de confirmació al correu electrònic que has afegit. " +"Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest " +"codi i les instruccions per utilitzar-lo." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "El meu text i els meus fitxers estan disponibles sota " +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Cap confirmació pendent per a cancel·lar." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Nou" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Aquesta adreça de missatgeria instantània és incorrecta." -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Nou correu electrònic per publicar a %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Confirmació cancel·lada." + +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Aquest no és el teu correu electrònic" + +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "L'adreça ha estat eliminada." + +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "No hi ha cap direcció de correu electrònic entrant." + +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "No s'ha pogut actualitzar el registre de l'usuari." + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Eliminat el correu electrònic entrant." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nou correu electrònic entrant afegit." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nou sobrenom" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nou avís" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nova contrasenya" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Notificacions populars" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Notificacions populars, pàgina %d" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Sobrenom" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Les notificacions més populars en aquest lloc ara mateix." -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Aquest sobrenom ja existeix. Prova un altre. " +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: 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 "" -"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " -"espais." -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Sobrenom no permès." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Sobrenom de l'usuari que vols seguir" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "%s's notes favorites" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Sobrenom o correu electrònic" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "No" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Aquesta nota ja és favorita." -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Cap Jabber ID." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Desfavoritar favorit" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Cap petició d'autorització!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Usuaris destacats" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "No s'ha sel·leccionat cap transport." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Usuaris destacats, pàgina %d" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "No hi ha cap codi entrat" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Una selecció d'alguns dels millors usuaris a %s" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Cap codi de confirmació." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nou avís" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Cap contingut!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nou avís" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "No hi ha cap direcció de correu electrònic." +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Cap identificador." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "No hi ha cap direcció de correu electrònic entrant." - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Cap sobrenom retornat pel servidor remot." - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Cap sobrenom." - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Cap confirmació pendent per a cancel·lar." - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "No hi ha cap número de telèfon." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Cap URL de perfil retornar pel servidor." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Resposta inesperada!" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Cap adreça de correu electrònic registrada per aquest usuari." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'usuari que vols seguir no existeix." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Cap petició trobada!" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Pots utilitzar la subscripció local!" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Cap resultat" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Aquest usuari t'ha bloquejat com a subscriptor." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Cap mida." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "No autoritzat." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "No s'ha trobat cap estatus amb aquesta ID." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "No s'ha trobat cap estatus amb la ID trobada." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versió desconeguda del protocol OMB." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "No existeix aquest compte OpenID." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Error en actualitzar el perfil remot" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "No existeix aquest document." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "No s'ha trobat el grup." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." msgstr "No existeix aquest avís." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "No existeix aquest codi de recuperació." - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "No existeix aquesta subscripció" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "No existeix aquest usuari." - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "No hi ha cap usuari amb aquesta direcció o usuari." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Hem perdut el nostre arxiu." -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Ningú a mostrar!" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No s'ha especificat perfil." -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "No és un codi de recuperació." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Usuari no registrat." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Un usuari t'ha bloquejat." -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Format de data no suportat." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "No ets membre d'aquest grup." -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Jabber ID no vàlid" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Usuari bloquejat." -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "OpenID no vàlid." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "No és una direcció de correu electrònic vàlida." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Adreça de correu electrònic no vàlida." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "No ID" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Sobrenom no vàlid." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Has d'haver entrat per crear un grup." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "URL de perfil no vàlid (serveis incorrectes)." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grups" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "URL de perfil no vàlid (XRDS no definit)." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "URL de perfil no vàlid (cap document YADIS)." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "No s'ha pogut actualitzar l'usuari." -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "No és una imatge o és un fitxer corrupte." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "No s'ha pogut guardar la teva configuració de Twitter!" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "No autoritzat." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferències de sincronització guardades." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Resposta inesperada!" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Logo del grup" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "No s'ha trobat" +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Pots pujar una imatge de logo per al grup." -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "No connectat." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "" +"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " +"avatar." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "No estàs subscrit!" +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Logo actualitzat." -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Cerca de notificacions" +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Error en actualitzar logo." -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format -msgid "Notice feed for %s" -msgstr "Feed d'avisos de %s" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Avís sense perfil" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Avisos" +msgid "%s group members" +msgstr "%s membre/s en el grup" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/groupmembers.php:96 #, php-format -msgid "Notices tagged with %s" -msgstr "Aviso etiquetats amb %s" +msgid "%s group members, page %d" +msgstr "%s membre/s en el grup, pàgina %d" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Antiga contrasenya" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "La llista dels usuaris d'aquest grup." -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Configuració del compte OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Auto-enviament d'OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Accés OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "URL OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Autenticació OpenID cancel·lada." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Autenticació OpenID fallida: %s." - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Error OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID eliminat." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Configuració OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Opcionalment pots afegir un missatge a la invitació." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Admin" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Càrrega parcial." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Bloquejar" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Contrasenya" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Bloquejar aquest usuari" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "La contrasenya i la confirmació no coincideixen." +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Has de ser admin per editar aquest grup" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "La contrasenya ha de tenir 6 o més caràcters." +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Recuperació de contrasenya sol·licitada" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Contrasenya guardada." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Les contrasenyes no coincideixen." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " +"de cerca amb espais; han de ser majors a 3 caràcters." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Gent" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Cercar grup" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Cercar gent" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Cap resultat" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Cerca de gent" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Personal" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Missatge personal" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Grups" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Grups, pàgina %d" -#: ../actions/userauthorization.php:78 +#: actions/groups.php:90 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -"Si us plau, revisa aquestes dades per a estar segur que desitges " -"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " -"avisos de ningú, clica \"Cancel·lar\"." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Enviar un avís quan el meu estat Jabber/GTalk canvii." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Crear nou grup" -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Preferències" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferències guardades." +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Un usuari t'ha bloquejat." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Preferència d'idioma" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Error al moure el block." -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Privacitat" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Configuració de missatgeria instantània" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Problema en guardar l'avís." +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/" +"GTalk. Configura la teva adreça i opcions a sota." -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Perfil" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Aquesta pàgina no està disponible en " -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL del perfil" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Adreça actual Jabber/Gtalk confirmada." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Configuració del perfil" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte " +"Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva " +"llista d'amics?)" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Perfil desconegut" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Adreça de missatgeria instantània" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Feed del flux públic" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Adreça Jabber o GTalk, per exemple \"NomUsuari@exemple.org\". Primer, " +"assegura't d'afegir a %s a la teva llista d'amics en el teu client de " +"missatgeria instantània o a GTalk." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Línia temporal pública" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Enviar-me avisos per Jabber/GTalk." + +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Enviar un avís quan el meu estat Jabber/GTalk canvii." + +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " +"subscrita." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 +#: actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publica una MicroID per a la meva direcció de Jabber/GTalk." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publica una MicroID per al meu correu electrònic." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Cap Jabber ID." -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Etiquetes recents" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Impossible normalitzar aquest Jabber ID" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Recuperar" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Jabber ID no vàlid" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Recuperar contrasenya" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Aquest ja és el teu Jabber ID." -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Codi de recuperació d'un usuari desconegut." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari." -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registrar-se" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " +"has afegit. Has d'acceptar que %s et pugui enviar missatges." -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Registre no permès." +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Aquest no és el teu Jabber ID." -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Registre satisfactori" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Safata d'entrada per %s - pàgina %d" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Rebutjar" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Safata d'entrada per %s" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Recorda'm" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Aquesta és la teva safata d'entrada, que et mostrarà els teus missatges " +"privats." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Perfil remot sense perfil corresponent" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Subscripció remota" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" +"Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo " +"%s" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Eliminar" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Correu electrònic invàlid: %s" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Eliminar OpenID" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Invitació(ons) enviada(des)" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Si elimines el teu únic OpenID no podràs tornar a entrar! Si necessites " -"eliminar-lo, afegeix un altre abans." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Invitar nous usuaris" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Respostes" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Ja estàs subscrit a aquests usuaris:" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Replies to %s" -msgstr "Respostes a %s" +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Restablir" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Restablir contrasenya" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Invitació(ons) enviada(des) a la següent gent:" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Seràs avisat quan les teves invitacions siguin acceptades i els teus " +"convidats es registrin al lloc. Gràcies per fer créixer la comunitat." -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Número de telèfon pels SMS" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Utilitza aquest formulari per convidar els teus amics i col·legues perquè " +"utilitzin aquest servei." -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Configuració SMS" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Direcció de correu electrònic" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Confirmació SMS" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Igual a la contrasenya de dalt" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Igual a la contrasenya de dalt. Requerit." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Direccions d'amic per convidar (una per línia)" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Guardar" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Missatge personal" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Cercar" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Opcionalment pots afegir un missatge a la invitació." -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Feed del flux de cerca" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Enviar" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:226 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb " -"espais; han de ser majors a 3 caràcters." +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s t'ha convidat us ha convidat a unir-te al grup %2$s" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/invite.php:228 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " -"de cerca amb espais; han de ser majors a 3 caràcters." +"%1$s us ha convidat a unir-vos a %2$s (%3$s).\n" +"\n" +"%2$s és un servei de micro-blogging que us permetrà estar al dia amb gent " +"que conegueu i gent que us interessi.\n" +"\n" +"Podeu també compartir notícies sobre vosaltres mateixos, el que penseu, o la " +"vostra vida a la xarxa amb gent que conegueu. És també força bo per conèixer " +"nova gent amb qui compartir els vostres interessos.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Selecciona un transport" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Has d'haver entrat per participar en un grup." -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Enviar" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Ja ets membre d'aquest grup" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" -"Enviar correu electrònic a aquesta direcció per publicar noves notificacions." +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "No s'ha pogut afegir l'usuari %s al grup %s" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" -"Envia'm notificacions quan algú nou se'm subscrigui, al meu correu " -"electrònic." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s s'ha pogut afegir al grup %s" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Enviar-me avisos per Jabber/GTalk." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Has d'haver entrat per a poder marxar d'un grup." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una " -"exorbitant càrrega del meu transport." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "No ets membre d'aquest grup." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " -"subscrita." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "No s'han trobat registres dels membres." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Configuració" +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Configuració guardada." +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s ha abandonat el grup %s" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Mostrant les etiquetes més populars de l'última setmana" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Ja estàs connectat." -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Algú ja té aquest OpenID." +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "El contingut de l'avís és invàlid" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Alguna cosa estranya ha passat." +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Nom d'usuari o contrasenya incorrectes." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Perdó, no hi ha un correu electrònic entrant permès." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Error en configurar l'usuari." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Perdó, aquest no és el teu correu electrònic entrant permès." +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Inici de sessió" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Font" +#: actions/login.php:243 +msgid "Login to site" +msgstr "Accedir al lloc" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Estadístiques" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Sobrenom" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "No s'ha trobat l'OpenID emmagatzemat." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Subscriure's" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Contrasenya" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Subscriptors" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Recorda'm" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Subscripció autoritzada" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Iniciar sessió automàticament en el futur; no utilitzar en ordinadors " +"compartits!" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Subscripció rebutjada" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Contrasenya oblidada o perduda?" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Subscripcions" +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " +"contrasenya abans de canviar la teva configuració." -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Error del sistema en pujar el fitxer." +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " +"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " +"[OpenID] (%%action.openidlogin%%)." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Etiquetes" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Text" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Cerca de text" +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Aquest OpenID no és teu." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Aquesta adreça ja ha estat confirmada." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "No té cap estatus ara mateix" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Aquest codi de confirmació no és per a tu!" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Nou grup" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Aquest correu electrònic pertany a un altre usuari." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Utilitza aquest formulari per crear un nou grup." -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Aquest fitxer és massa gran." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nou missatge" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Aquest ja és el teu Jabber ID." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "No pots enviar un missatge a aquest usuari." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Aquest ja és el teu correu electrònic." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Cap contingut!" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Aquest ja és el teu número de telèfon." - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Aquest no és el teu Jabber ID." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Aquest no és el teu correu electrònic" +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "No has especificat el destinatari." -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Aquest no és el teu número de telèfon." +#: actions/newmessage.php:164 lib/command.php:370 +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ò." -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Aquesta adreça de missatgeria instantània és incorrecta." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Missatge" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Aquest és un número de confirmació incorrecte." +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Missatge directe per a %s enviat" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Aquest número de telèfon pertany a un altre usuari." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Ajax Error" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Massa llarg. La longitud màxima és de 140 caràcters." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nou avís" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Massa llarg. La longitud màxima és de 255 caràcters." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Notificació publicada" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/noticesearch.php:68 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "L'adreça ha estat eliminada." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " -"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " -"El teu identificador de subscripció és:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " -"de nou les instruccions per a saber com rebutjar la subscripció completament." +"Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb " +"espais; han de ser majors a 3 caràcters." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Aquestes són les persones que escolten els avisos de %s." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Cerca de text" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Aquestes són les persones que escolten els teus avisos." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Cerca \"%s\" al flux" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Aquestes són les persones que %s escolta." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Aquestes són les persones que escoltes." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Aquest codi de confirmació és massa vell. Si us plau comença de nou." -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:124 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Aquest formulari s'hauria d'enviar automàticament. En cas contrari, clica el " -"botó d'enviament per a anar al teu proveïdor d'OpenID." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Aquesta és la primera vegada que accedeixes a %s. Per tant, hem de connectar " -"el teu OpenID a un compte local. Pots crear-ne un de nou o connectar-te amb " -"el teu, si el tens." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Aquest mètode requereix POST o DELETE." +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Actualitzacions de %1$s a %2$s!" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Aquest mètode requereix POST." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis." +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Aquest usuari no permet reclamacions o no ha confirmar encara cap correu " +"electrònic." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Franja horària" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Reclamació enviada" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Franja horària no seleccionada." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Reclamació enviada!" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Avís sense perfil" + +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Per a subscriure't, pots [iniciar una sessió](%%action.login%%), o " -"[registrar](%%action.register%%) un nou compte. Si ja tens un en un [servei " -"de microblogging compatible](%%doc.openmublog%%), escriu l'URL del teu " -"perfil a sota." +msgid "%1$s's status on %2$s" +msgstr "estat de %1$s a %2$s" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Dos ids d'usuari o screen_names has de ser substituïts." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Connectar-se" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL del teu web, blog o perfil en un altre lloc" +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL del teu perfil en un altre servei de microblogging compatible" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Format de data no suportat." -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Enviament de formulari inesperat." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Cercar gent" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Restabliment de contrasenya inesperat." +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Cerca de notificacions" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Acció desconeguda" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Altres configuracions" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Versió desconeguda del protocol OMB." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Gestionar altres vàries opcions." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -"Tret que s'especifiqui el contrari, el contingut d'aquest web és propietat " -"dels seus col·laboradors i està disponible sota la" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Tipus d'adreça %s desconeguda" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Cancel·lar subscripció" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Versió OMB no suportada" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Servei d'auto-escurçament a utilitzar." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Format d'imatge no suportat." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuració del perfil" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Actualitzacions per SMS" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Actualitzacions per Missatgeria Instantània" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "" +"El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Actualitzacions de %1$s i amics a %2$s!" +msgid "Outbox for %s - page %d" +msgstr "Safata de sortida per %s - pàgina %d" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualitzacions de %1$s a %2$s!" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Pujar" +msgid "Outbox for %s" +msgstr "Safata de sortida per %s" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Puja un nou \"avatar\" (imatge d'usuari) aquí. No pots editar la imatge una " -"vegada carregada, per tant assegura't que sigui més o menys quadrada. A més, " -"ha d'estar sota la llicència del lloc web. Utilitza una foto que sigui teva " -"i que vulguis compartir." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Carregar una nova imatge per al perfil" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Utilitza aquest formulari per convidar els teus amics i col·legues perquè " -"utilitzin aquest servei." +"Aquesta és la teva safata de sortida, que et mostrarà els missatges privats " +"que has enviat." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Canviar contrasenya" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "L'usuari que vols seguir no existeix." +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Canviar contrasenya" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "L'usuari no té perfil." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Contrasenya canviada." -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Sobrenom de l'usuari" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Antiga contrasenya" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "No s'ha trobat l'usuari." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nova contrasenya" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "Quina franja horària seria normal ser?" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 o més caràcters" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Què tal, %s?" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Confirmar" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "On ets, per exemple \"Ciutat, Estat (o Regió), País\"" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "repeteix la contrasenya anterior" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Tipus d'imatge incorrecte per a '%s'" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Canviar" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Mida d'imatge incorrecta per a '%s'" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters." -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Sí" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Les contrasenyes no coincideixen." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Ja tens aquest OpenID!" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Contrasenya antiga incorrecta" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " -"no ho podràs desfer." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Error en guardar usuari; invàlid." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Ja t'has connectat!" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "No es pot guardar la nova contrasenya." -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Ja estàs subscrit a aquests usuaris:" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Contrasenya guardada." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "No ets amic dels usuaris que has especificat." +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " +"de cerca amb espais; han de ser majors a 3 caràcters." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Pots canviar la teva contrasenya aquí. Tria una de bona!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Cerca de gent" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Pots crear un nou compte i començar a enviar avisos." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Etiqueta no vàlida per a la gent: %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name" -"%%." +msgid "Users self-tagged with %s - page %d" +msgstr "Usuaris que s'han etiquetat %s - pàgina %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "Pots eliminar un OpenID del teu compte clicant el botó \"Eliminar\"." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "El contingut de l'avís és invàlid" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/" -"GTalk. Configura la teva adreça i opcions a sota." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Configuració del perfil" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3132,2211 +2034,1916 @@ msgstr "" "Pots actualitzar la informació del teu perfil personal per a que la gent " "sàpiga més sobre tu." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Pots utilitzar la subscripció local!" +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Informació del perfil" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "No pots registrar-te si no estàs d'acord amb la llicència." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 lletres en minúscula o números, sense signes de puntuació o espais" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "No ens vas enviar aquest perfil" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Nom complet" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Tens una nova direcció per publicar a %1$s.\n" -"\n" -"Envia un correu electrònic a %2$s per publicar un nou missatge.\n" -"\n" -"Més instruccions per al correu electrònic a %3$s.\n" -"\n" -"Sincerament teus,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Pàgina personal" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "No pots eliminar l'estatus d'un altre usuari." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL del teu web, blog o perfil en un altre lloc" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo " -"%s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" + +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Explica'ns alguna cosa sobre tu " + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Biografia" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Ubicació" + +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "On ets, per exemple \"Ciutat, Estat (o Regió), País\"" + +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Etiquetes" + +#: actions/profilesettings.php:140 msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"Seràs avisat quan les teves invitacions siguin acceptades i els teus " -"convidats es registrin al lloc. Gràcies per fer créixer la comunitat." +"Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " +"por espais" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "T'has identificat. Escriu una nova contrasenya a continuació." +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Idioma" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "El teu URL OpenID" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Preferència d'idioma" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" -"El teu nom d'usuari en aquest servidor, o la teva adreça de correu " -"electrònic registrada." +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Franja horària" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "Quina franja horària seria normal ser?" + +#: actions/profilesettings.php:160 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " -"compte d'usuari. Administra els teus OpenID associats aquí." +"Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal " +"per no-humans)" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "fa pocs segons" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La biografia és massa llarga (màx. 140 caràcters)." -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "fa %d dies" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Franja horària no seleccionada." -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "fa %d hores" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "L'idioma és massa llarg (màx 50 caràcters)." -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 +#: actions/profilesettings.php:246 actions/tagother.php:178 #, php-format -msgid "about %d minutes ago" -msgstr "fa %d minuts" +msgid "Invalid tag: \"%s\"" +msgstr "Etiqueta no vàlida: \"%s\"" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "fa %d mesos" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "No es pot actualitzar l'usuari per autosubscriure." -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "fa un dia" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "No s'ha pogut guardar el perfil." -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "fa un minut" +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "No s'han pogut guardar les etiquetes." -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "fa un mes" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Configuració guardada." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "fa un any" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "fa una hora" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "No s'ha pogut recuperar la conversa pública." -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "eliminar" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "en resposta a..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "resposta" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "repeteix la contrasenya anterior" +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Línia temporal pública, pàgina %d" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "tipus de fitxer no suportat" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Posterior" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " -"us plau." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Línia temporal pública" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Aquesta notificació no és un favorit!" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flux públic" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "No pots eliminar favorits." +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flux públic" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Favorit" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flux públic" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -"Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Aquesta nota ja és favorita." - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "No es pot crear favorit." - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Desfavorit" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/public.php:186 #, php-format -msgid "%s favorite notices" -msgstr "%s notificacions favorites" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 +#: actions/public.php:233 #, php-format -msgid "Feed of favorite notices of %s" -msgstr "Feed de notes favorites de %s" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" +"wiki/Microblogging) " + +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Núvol públic d'etiquetes" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/publictagcloud.php:63 #, php-format -msgid "Inbox for %s - page %d" -msgstr "Safata d'entrada per %s - pàgina %d" +msgid "These are most popular recent tags on %s " +msgstr "Aquestes són les etiquetes recents més populars a %s " -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/publictagcloud.php:69 #, php-format -msgid "Inbox for %s" -msgstr "Safata d'entrada per %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -"Aquesta és la teva safata d'entrada, que et mostrarà els teus missatges " -"privats." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -"%1$s t'ha convidat a participar a %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Accedir automàticament en el futur; " - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Per raons de seguretat, si us plau torna a escriure la teva " -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Entra amb el teu usuari i contrasenya. " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Núvol d'etiquetes" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "És massa llarg. Màxim del missatge és 140 caràcters." +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Ja t'has connectat!" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "No has especificat el destinatari." +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "No existeix aquest codi de recuperació." -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "No pots enviar un missatge a aquest usuari." +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "No és un codi de recuperació." -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -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ò." +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Codi de recuperació d'un usuari desconegut." -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Aquest usuari no existeix" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Error amb el codi de confirmació." -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nou missatge" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Aquest codi de confirmació és massa vell. Si us plau comença de nou." -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Notificar sense especificar perfil" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) et permet accedir a molts llocs web " +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Si vols afegit un OpenID al teu compte, " +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Eliminant la teva única OpenID et serà impossible accedir-hi! " +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Pots eliminar un OpenID del teu compte " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Safata de sortida per %s - pàgina %d" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" +"El teu nom d'usuari en aquest servidor, o la teva adreça de correu " +"electrònic registrada." -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Safata de sortida per %s" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Recuperar" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Aquesta és la teva safata de sortida, que et mostrarà els missatges privats " -"que has enviat." +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Restablir contrasenya" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Cercar gent a %%site.name%% pel seu nom, localització, o interessos. " +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Recuperar contrasenya" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Pots actualitzar la informació del teu perfil aquí " +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Recuperació de contrasenya sol·licitada" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Usuari sense perfil coincident" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Acció desconeguda" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "El codi de confirmació és massa antic. " +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 o més caràcters, i no te n'oblidis!" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Si has oblidat o perdut el teu" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Igual a la contrasenya de dalt" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Has estat identificat. Entra " +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Restablir" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "El teu nom d'usuari en aquest servidor, " +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Escriu un sobrenom o una adreça de correu electrònic." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instruccions per recuperar la teva contrasenya " +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "No hi ha cap usuari amb aquesta direcció o usuari." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "La nova contrasenya s'ha guardat satisfactòriament. " +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Cap adreça de correu electrònic registrada per aquest usuari." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters." +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Error en guardar confirmació de l'adreça." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:325 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, potser " -"vols..." +"S'han enviat instruccions per a recuperar la teva contrasenya a l'adreça de " +"correu electrònic registrada." -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" -"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Restabliment de contrasenya inesperat." -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Per subscriure't, pots [accedir] (%%action.login%%)," +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "La contrasenya ha de tenir 6 o més caràcters." -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Feed per favorits de %s" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "La contrasenya i la confirmació no coincideixen." -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "No s'ha pogut recuperar els avisos de favorits." +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "No existeix el missatge." +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Ho senti, però només la gent convidada pot registrar-se." -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Només el remitent i el receptor poden llegir aquest missatge." +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Error amb el codi de confirmació." -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Missatge per a %1$s a %2$s" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Registre satisfactori" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Missatge de %1$s a %2$s" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registrar-se" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Enviar un missatge" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Registre no permès." -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Transport per al teu telèfon. " +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "No pots registrar-te si no estàs d'acord amb la llicència." -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Missatges directes a %s" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Adreça de correu electrònic no vàlida." -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Tots els missatges directes enviats a %s" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "L'adreça de correu electrònic ja existeix." -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Missatges directes que has enviat" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Nom d'usuari o contrasenya invàlids." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Tots els missatges directes enviats per %s" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "No hi ha text al missatge!" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "No has escrit cap usuari receptor." +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 o més caràcters. Requerit." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "No pots enviar missatges directes a usuaris que no siguin amics teus." +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Igual a la contrasenya de dalt. Requerit." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favorits de %s" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Correu electrònic" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s actualitzacions favorites per %s / %s." +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s ha afegit la teva nota com a favorita" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Nom llarg, preferiblement el teu nom \"real\"" + +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "El meu text i els meus fitxers estan disponibles sota " + +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepte les següents dades privades: contrasenya, adreça de correu " +"electrònic, adreça de missatgeria instantània, número de telèfon." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/register.php:537 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -"%1$s acaba d'afegir la teva nota des de %2$s com a favorita.\n" +"Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, podries...\n" +"\n" +"* Anar al teu [teu perfil](%s) i publicar el teu primer missatge.\n" +"* Afegir una [direcció Jabber/GTalk](%%%%action.imsettings%%%%) i així poder " +"publicar les notificacions a través de missatgeria instantània.\n" +"* [Buscar gent](%%%%action.peoplesearch%%%%) que puguis conèixer o que " +"comparteixi els teus interessos. \n" +"* Actualitzar les [preferències del teu perfil](%%%%action.profilesettings%%%" +"%) per explicar als demés més sobre tu. * Llegir els [documents de la xarxa]" +"(%%%%doc.help%%%%) per conèixer les característiques del nostre servei. \n" "\n" +"Gràcies per registrar-te i esperem que gaudeixis d'aquest servei." -#: actions/twittersettings.php:27 +#: actions/register.php:561 msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes " -"a Twitter, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Configuració Twitter" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Compte Twitter" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Compte Twitter verificat actualment." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Usuari Twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "No espais, si us plaus." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Contrasenya Twitter" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Automàticament envia les meves notes a Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Envia respostes locals '@' a Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Subscriure'm als meus amics de Twitter aquí." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " +"instruccions sobre com confirmar la teva direcció de correu electrònic.)" + +#: actions/remotesubscribe.php:98 +#, php-format msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"El nom d'usuari sols pot contenir números, lletres en majúscules i " -"minúscules, i guions baixos (_). 15 caràcters màxim." +"Per a subscriure't, pots [iniciar una sessió](%%action.login%%), o " +"[registrar](%%action.register%%) un nou compte. Si ja tens un en un [servei " +"de microblogging compatible](%%doc.openmublog%%), escriu l'URL del teu " +"perfil a sota." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "No es poden verificar les teves credencials de Twitter!" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Subscripció remota" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter." +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscriure's a aquest usuari" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "No s'ha pogut guardar la teva configuració de Twitter!" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Sobrenom de l'usuari" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Configuració de Twitter guardada." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Aquest no és el teu compte de Twitter." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "No es pot eliminar aquest usuari de Twitter." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Compte de Twitter eliminat." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "No es poden guardar les preferències de Twitter." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Preferències de Twitter guardades." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Si us plau verifica aquests detalls per estar-ne segur/a " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "La subscripció s'ha autoritzat, però no " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "La subscripció ha estat rebutjada, però no " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Resultats de les comandes" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Sobrenom de l'usuari que vols seguir" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Comanda completada" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL del perfil" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Comanda fallida" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL del teu perfil en un altre servei de microblogging compatible" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Perdona, aquesta comanda no està implementada." +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Subscriure's" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Subscripcions: %1$s\n" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "L'URL del perfil és invàlid (format incorrecte)" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "L'usuari no té última nota" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de perfil no vàlid (cap document YADIS)." -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Nota marcada com a favorita." +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "No s'ha pogut obtenir un senyal de petició." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "Fullname: %s" -msgstr "Nom complet: %s" +msgid "Replies to %s" +msgstr "Respostes a %s" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/replies.php:127 #, php-format -msgid "Location: %s" -msgstr "Localització: %s" +msgid "Replies to %s, page %d" +msgstr "Respostes a %s, pàgina %d" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Pàgina web: %s" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed d'avisos de %s" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Sobre tu: %s" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed d'avisos de %s" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 +#: actions/replies.php:158 #, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" +msgid "Replies feed for %s (Atom)" +msgstr "Feed d'avisos de %s" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 +#: actions/replies.php:198 #, php-format -msgid "Direct message to %s sent" -msgstr "Missatge directe per a %s enviat" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Error al enviar el missatge directe." - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Especifica el nom de l'usuari a que vols subscriure't" +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/replies.php:203 #, php-format -msgid "Subscribed to %s" -msgstr "Subscrit a %s" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit" +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/replies.php:205 #, php-format -msgid "Unsubscribed from %s" -msgstr "Has deixat d'estar subscrit a %s" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Comanda encara no implementada." - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Notificacions off." - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "No es poden posar en off les notificacions." - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Notificacions on." +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "No es poden posar en on les notificacions." +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Missatge per a %1$s a %2$s" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Comandes:\n" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s notificacions favorites, pàgina %d" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "No s'ha pogut inserir el missatge." +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "No s'ha pogut recuperar els avisos de favorits." -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "No s'ha pogut inserir el missatge amb la nova URI." +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed per a amics de %s" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "L'usuari no té cap perfil que coincideixi en aquest sistema." +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed per a amics de %s" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/showfavorites.php:184 #, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed per a amics de %s" + +#: actions/showfavorites.php:205 msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"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 "" -"Tens una nova direcció per publicar a %1$s.\n" -"\n" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/showfavorites.php:207 #, php-format -msgid "New private message from %s" -msgstr "Nou missatge privat de %s" +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/showfavorites.php:211 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -"%1$s (%2$s) t'ha enviat un nou missatge privat:\n" -"\n" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Només l'usuari pot llegir les seves safates de correu." -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Aquest formulari s'ha d'enviar automàticament. " +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Favorits" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "%s grup" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showgroup.php:84 #, php-format -msgid "%s's favorite notices" -msgstr "%s's notes favorites" +msgid "%s group, page %d" +msgstr "%s grup, pàgina %d" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuari" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Perfil del grup" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Els teus missatges rebuts" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Safata de sortida" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Avisos" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Els teus missatges enviats" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Accions del grup" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Opcions d'integració amb Twitter" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed d'avisos del grup %s" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "A" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed d'avisos del grup %s" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "No es pot analitzar el missatge." +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed d'avisos del grup %s" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showgroup.php:345 #, php-format -msgid "%s and friends, page %d" -msgstr "%s i amics, pàgina %d" +msgid "FOAF for %s group" +msgstr "Safata de sortida per %s" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Pots pujar el teu avatar personal." +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Membres" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Configuració de l'avatar" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(Cap)" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Original" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Tots els membres" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Previsualitzar" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Estadístiques" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Crop" +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crear" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Ha ocorregut un error amb la teva sessió. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/showgroup.php:448 +#, 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 "" -"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " -"avatar." - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "S'ha perdut el nostre fitxer de dades." - -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Hem perdut el nostre arxiu." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Tipus de fitxer desconegut" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "No s'ha especificat perfil." -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "No hi ha cap perfil amb aquesta ID." +#: actions/showgroup.php:454 +#, fuzzy, 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** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"(http://ca.wikipedia.org/wiki/Microblogging)" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Usuari bloquejat." +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "N'estàs segur/a que vols bloquejar aquest usuari? " +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "No existeix el missatge." -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Ja havies bloquejat aquest usuari." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Només el remitent i el receptor poden llegir aquest missatge." -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Error al guardar la informació del block." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Missatge per a %1$s a %2$s" -#: actions/confirmaddress.php:159 +#: actions/showmessage.php:113 #, php-format -msgid "The address \"%s\" has been " -msgstr "L'adreça \"%s\" ha estat eliminada " +msgid "Message from %1$s on %2$s" +msgstr "Missatge de %1$s a %2$s" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Estàs a punt d'eliminar permanentment una notificació. " +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Notificació publicada" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Afegir a favorits" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Aviso etiquetats amb %s" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showstream.php:79 #, php-format -msgid "Edit %s group" -msgstr "Editar el grup %s" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "La safata d'entrada ha d'estar habilitat per als grups de treball" +msgid "%s, page %d" +msgstr "%s, pàgina %d" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Has d'haver entrat per crear un grup." +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed d'avisos del grup %s" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Cap sobrenom." +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed d'avisos de %s" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "No existeix tal grup" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed d'avisos de %s" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Has de ser admin per editar aquest grup" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed d'avisos de %s" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Utilitza aquest formulari per editar el grup." +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Safata de sortida per %s" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " -"espais. " - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "la descripció és massa llarga (màx. 140 caràcters)." - -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "No s'ha pogut actualitzar el grup." -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Configuració guardada." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showstream.php:198 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Esperant el codi de confirmació en aquesta direcció. " - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Indicar una nova direcció de correu electrònic per publicar; " - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Envia'm un correu electrònic quan algú " - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Permetre que els amics em reclamin i m'enviïn un correu electrònic." +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "L'adreça de correu electrònic ja pertany " +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " -"has afegit. " +"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" +"ca.wikipedia.org/wiki/Microblogging) " -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Error del servidor - no es pot obtenir l'usuari!" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Configuració SMS" -#: actions/facebookhome.php:196 +#: actions/smssettings.php:69 #, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Si vols l'aplicació %s per actualitzar automàticament " +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" +"Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name" +"%%." -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Permetre %s actualitzar el meu estat a Facebook" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Aquesta pàgina no està disponible en " -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Saltar" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Número de telèfon actualment confirmat i activat per SMS." -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Cap contingut!" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Esperant confirmació per aquest número de telèfon." -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Paginació" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Codi de confirmació" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Posteriors" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Escriu el codi que has rebut en el teu telèfon mòbil." -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Anteriors" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Número de telèfon pels SMS" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Gràcies per convidar els teus amics a utilitzar %s" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Les invitacions han estat enviades als següents usuaris:" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una " +"exorbitant càrrega del meu transport." -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "Has estat convidat a %s" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "No hi ha cap número de telèfon." -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Convidar els teus amics a utilitzar %s" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Amics ja utilitzant %s:" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "No s'ha sel·leccionat cap transport." -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "Enviar invitacions" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Aquest ja és el teu número de telèfon." -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "No s'ha pogut eliminar l'usuari de Facebook." +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Aquest número de telèfon pertany a un altre usuari." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/smssettings.php:347 +#, fuzzy +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 "" -"Ha ocorregut un problema al guardar les preferències de sincronització!" - -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Preferències de sincronització guardades." +"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " +"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " +"instruccions per utilitzar-lo." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" -"Actualitzar automàticament el meu estat a Facebook amb les meves " -"notificacions." +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Aquest és un número de confirmació incorrecte." -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Envia \"@\" respostes a Facebook." +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Aquest no és el teu número de telèfon." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Prefix" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Transport mòbil" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "La frase que serveixi de prefix a les notes." +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Selecciona un transport" -#: actions/facebooksettings.php:124 +#: actions/smssettings.php:476 #, php-format -msgid "If you would like %s to automatically update " -msgstr "Si vols que %s s'actualitzi automàticament " +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 "" +"Capacitat per al teu telèfon mòbil. Si vostè coneix una companyia que " +"accepti SMS a través del correu electrònic, però no està a la llista, " +"envia'ns un correu electrònic per fer-nos-ho saber %s." -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Preferències de sincronització" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "No hi ha cap codi entrat" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Desfavoritar favorit" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "No estàs subscrit a aquest perfil." -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Notificacions populars" +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "No s'ha pogut guardar la subscripció." -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Notificacions populars, pàgina %d" +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "No existeix aquest usuari." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Les notificacions més populars en aquest lloc ara mateix." +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Subscrit" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Usuaris destacats" +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "%s subscriptors" -#: actions/featured.php:71 +#: actions/subscribers.php:52 #, php-format -msgid "Featured users, page %d" -msgstr "Usuaris destacats, pàgina %d" +msgid "%s subscribers, page %d" +msgstr "%s subscriptors, pàgina %d" -#: actions/featured.php:99 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Aquestes són les persones que escolten els teus avisos." + +#: actions/subscribers.php:67 #, php-format -msgid "A selection of some of the great users on %s" -msgstr "Una selecció d'alguns dels millors usuaris a %s" +msgid "These are the people who listen to %s's notices." +msgstr "Aquestes són les persones que escolten els avisos de %s." -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Aquest usuari t'ha bloquejat com a subscriptor." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "No ID" +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Logo del grup" +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Pots pujar una imatge de logo per al grup." +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "%s subscripcions" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Logo actualitzat." +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "%s subscripcions, pàgina %d" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Error en actualitzar logo." +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Aquestes són les persones que escoltes." -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/subscriptions.php:69 #, php-format -msgid "%s group members" -msgstr "%s membre/s en el grup" +msgid "These are the people whose notices %s listens to." +msgstr "Aquestes són les persones que %s escolta." -#: actions/groupmembers.php:96 +#: actions/subscriptions.php:121 #, php-format -msgid "%s group members, page %d" -msgstr "%s membre/s en el grup, pàgina %d" +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "La llista dels usuaris d'aquest grup." +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s ara està escoltant " -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Grups" +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "Grups, pàgina %d" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%% grups amb qui pots trobar i parlar " +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "No connectat." -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Crear nou grup" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "No argument de la id." -#: actions/groupsearch.php:57 +#: actions/tagother.php:65 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Troba grups a %%site.name%% per nom, ubicació o descripció. " +msgid "Tag %s" +msgstr "Etiqueta %s" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Cercar grup" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Perfil de l'usuari" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "Pots enviar i rebre notificacions a través de " +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Foto" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "Adreça Jabber o GTalk, " +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Etiqueta usuari" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Enviar-me avisos per Jabber/GTalk." +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etiquetes per aquest usuari (lletres, números,, -, ., i _), comes o separat " +"per espais" -#: actions/imsettings.php:321 -#, php-format -msgid "A confirmation code was sent " -msgstr "Un codi de confirmació ha estat enviat " +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit " +"a tu." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "Has d'haver entrat per participar en un grup." +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "No s'han pogut guardar les etiquetes." -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Ja ets membre d'aquest grup" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Utilitza aquest formulari per afegir etiquetes als teus subscriptors i " +"subscripcions." -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/tag.php:68 #, php-format -msgid "Could not join user %s to group %s" -msgstr "No s'ha pogut afegir l'usuari %s al grup %s" +msgid "Notices tagged with %s, page %d" +msgstr "Notificació etiquetada amb %s, pàgina %d" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "%s s'ha pogut afegir al grup %s" +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed d'avisos de %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" -"Les safates d'entrada han d'estar activades per entrar a formar part dels " -"grups." +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed d'avisos de %s" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "Has d'haver entrat per a poder marxar d'un grup." +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed d'avisos de %s" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "No s'ha trobat el grup." +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "No existeix aquesta etiqueta." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "No ets membre d'aquest grup." +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Mètode API en construcció." -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "No pots abandonar aquest grup mentre en sigui l'administrador." +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "No id en el perfil sol·licitat." -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "No s'han trobat registres dels membres." +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "No hi ha cap perfil amb aquesta id." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "No subscrit" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "%s left group %s" -msgstr "%s ha abandonat el grup %s" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Accedir al lloc" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "No té cap estatus ara mateix" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Nou grup" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Utilitza aquest formulari per crear un nou grup." - -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "No s'ha pogut crear el grup." - -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "No s'ha pogut establir la pertinença d'aquest grup." - -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Això és massa llarg. " - -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "No t'enviïs missatges a tu mateix; " - -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Notificació publicada" - -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Ajax Error" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autoritzar subscripció" -#: actions/nudge.php:85 +#: actions/userauthorization.php:110 +#, fuzzy msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -"Aquest usuari no permet reclamacions o no ha confirmar encara cap correu " -"electrònic." +"Si us plau, revisa aquestes dades per a estar segur que desitges " +"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " +"avisos de ningú, clica \"Cancel·lar\"." -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Reclamació enviada" +#: actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "llicència." -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Reclamació enviada!" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Acceptar" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "Accés OpenID" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subscriure's a aquest usuari" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Eliminar OpenID" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Rebutjar" -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Altres configuracions" +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s subscripcions" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Gestionar altres vàries opcions." +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Cap petició d'autorització!" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Auto-escurçament de la URL" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Subscripció autoritzada" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Servei" +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " +"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " +"El teu identificador de subscripció és:" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Servei d'auto-escurçament a utilitzar." +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Subscripció rebutjada" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -"El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." +"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " +"de nou les instruccions per a saber com rebutjar la subscripció completament." -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Canviar contrasenya" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Contrasenya canviada." +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/userauthorization.php:307 #, php-format -msgid "Not a valid people tag: %s" -msgstr "Etiqueta no vàlida per a la gent: %s" +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/userauthorization.php:322 #, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Usuaris que s'han etiquetat %s - pàgina %d" +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" -#: actions/peopletag.php:91 +#: actions/userauthorization.php:338 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Aquests són usuaris que s'han etiquetat ells mateixos \"%s\" " +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Informació del perfil" +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "No es pot llegir l'URL de l'avatar '%s'" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipus d'imatge incorrecte per a '%s'" + +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Cap identificador." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuració del perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -"Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " -"por espais" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Automàticament subscriure's a tothom " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/usergroups.php:64 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Etiqueta no vàlida: \"%s\"" +msgid "%s groups, page %d" +msgstr "%s grups, pàgina %d" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "No s'han pogut guardar les etiquetes." +#: actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Cercar gent o text" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "Línia temporal pública, pàgina %d" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "No ets membre d'aquest grup." -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "No s'ha pogut recuperar la conversa pública." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/public.php:220 +#: classes/File.php:137 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" -"wiki/Microblogging) " - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Núvol públic d'etiquetes" -#: actions/publictagcloud.php:63 +#: classes/File.php:147 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "Aquestes són les etiquetes recents més populars a %s " +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Núvol d'etiquetes" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Ho senti, però només la gent convidada pot registrar-se." +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "No s'ha pogut inserir el missatge." -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "No pots registrar-te si no " +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "No s'ha pogut inserir el missatge amb la nova URI." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Amb aquest formulari pots crear " +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Hashtag de l'error de la base de dades:%s" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "" -"1-64 lletres en minúscula o números, sense signes de puntuació o espais, " +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problema en guardar l'avís." -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Utilitzat només per a actualitzacions, anuncis, " +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Problema al guardar la notificació. Usuari desconegut." -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "URL del teu web, blog o perfil en un altre lloc, " +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " +"minuts." -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Explica'ns alguna cosa sobre tu " +#: classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " +"minuts." -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "On ets, per exemple \"Ciutat, " +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " excepte les següents dades privades: contrasenya, " +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Problema en guardar l'avís." -#: actions/register.php:471 +#: classes/Notice.php:1120 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Felicitats, %s! I benvingut/da a %%%%site.name%%%%. " +msgid "DB error inserting reply: %s" +msgstr "Error de BD en inserir resposta: %s" -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(Hauries de rebre un missatge per correu electrònic " +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Missatge per a %1$s a %2$s" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Perfil" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "Respostes a %s, pàgina %d" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Canviar les preferències del teu perfil" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "%s notificacions favorites, pàgina %d" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Pujar un avatar" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "%s grup" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Canviar la teva contrasenya" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "%s grup, pàgina %d" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Canviar correu electrònic" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Perfil del grup" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Perfil de l'usuari" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Avisos" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Altres" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Accions del grup" +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Altres opcions" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: lib/action.php:144 #, php-format -msgid "Notice feed for %s group" -msgstr "Feed d'avisos del grup %s" +msgid "%s - %s" +msgstr "%s - %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Membres" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Pàgina sense titol" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(Cap)" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Navegació primària del lloc" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Tots els membres" +#: lib/action.php:430 +msgid "Home" +msgstr "Inici" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" -"(http://ca.wikipedia.org/wiki/Microblogging)" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Perfil personal i línia temporal dels amics" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Només el remitent i el destinatari " +#: lib/action.php:432 +msgid "Account" +msgstr "Compte" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, pàgina %d" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" -#: actions/showstream.php:143 -msgid "'s profile" -msgstr "perfil" +#: lib/action.php:435 +msgid "Connect" +msgstr "Connectar-se" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Perfil de l'usuari" +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "No s'ha pogut redirigir al servidor: %s" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Foto" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invitar" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Accions de l'usuari" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Convidar amics i companys perquè participin a %s" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Enviar un missatge directe a aquest usuari" +#: lib/action.php:445 +msgid "Logout" +msgstr "Sortir" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Missatge" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Sortir d'aquest lloc" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Tots els subscriptors" +#: lib/action.php:450 +msgid "Create an account" +msgstr "Crear nou compte" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Tots els grups" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Accedir a aquest lloc" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" -"ca.wikipedia.org/wiki/Microblogging) " +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Ajuda" -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Número de telèfon, sense puntuacions ni espais, " +#: lib/action.php:456 +msgid "Help me!" +msgstr "Ajuda'm" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Enviar-me avisos per SMS; " +#: lib/action.php:459 +msgid "Search" +msgstr "Cercar" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"El codi de confirmació s'ha enviat al número de telèfon que tens afegit. " +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Cercar gent o text" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Transport mòbil" +#: lib/action.php:480 +msgid "Site notice" +msgstr "Avís del lloc" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "No estàs subscrit a aquest perfil." +#: lib/action.php:546 +msgid "Local views" +msgstr "Vistes locals" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "No s'ha pogut guardar la subscripció." +#: lib/action.php:612 +msgid "Page notice" +msgstr "Notificació pàgina" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "No existeix aquest usuari." +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Navegació del lloc secundària" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Subscrit" +#: lib/action.php:721 +msgid "About" +msgstr "Sobre" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "%s subscriptors" +#: lib/action.php:723 +msgid "FAQ" +msgstr "Preguntes freqüents" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "%s subscriptors, pàgina %d" +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Aquestes són les persones que escolten " +#: lib/action.php:730 +msgid "Privacy" +msgstr "Privacitat" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Aquestes són les persones que " +#: lib/action.php:732 +msgid "Source" +msgstr "Font" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "%s subscripcions" +#: lib/action.php:734 +msgid "Contact" +msgstr "Posar-se en contacte" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "%s subscripcions, pàgina %d" +#: lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Reclamar" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Aquestes són les persones les notícies dels quals " +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Llicència del programari StatusNet" -#: actions/subscriptions.php:69 +#: lib/action.php:767 #, php-format -msgid "These are the people whose " -msgstr "Aquestes són les persones les quals" - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" +"site.broughtbyurl%%)." -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#: lib/action.php:769 #, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Notificació etiquetada amb %s, pàgina %d" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** és un servei de microblogging." -#: actions/tag.php:66 actions/tag.php:73 +#: lib/action.php:771 #, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Missatges etiquetats \"%s\", més recents primer" +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Utilitza el software de microblogging [StatusNet](http://status.net), versió " +"%s, disponible sota la [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "No connectat." +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Llicència del programari StatusNet" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "No argument de la id." +#: lib/action.php:794 +msgid "All " +msgstr "Tot " -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Etiqueta %s" +#: lib/action.php:799 +msgid "license." +msgstr "llicència." -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Etiqueta usuari" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Paginació" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Etiquetes per aquest usuari (lletres, números,, -, ., i _), comes o separat " -"per espais" +#: lib/action.php:1062 +msgid "After" +msgstr "Posteriors" + +#: lib/action.php:1070 +msgid "Before" +msgstr "Anteriors" -#: actions/tagother.php:164 +#: lib/action.php:1119 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -"Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit " -"a tu." - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "No s'han pogut guardar les etiquetes." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -"Utilitza aquest formulari per afegir etiquetes als teus subscriptors i " -"subscripcions." - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "No existeix aquesta etiqueta." -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Microblog etiquetat com %s" +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Ha fallat el bloqueig d'usuari." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Ha fallat el desbloqueig d'usuari." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "No s'ha trobat." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Resultats de les comandes" + +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Comanda completada" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Afegeix el teu compte Twitter per automàticament enviar " +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Comanda fallida" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Usuari Twitter" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Perdona, aquesta comanda no està implementada." -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Contrasenya Twitter" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Amics Twitter" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Nom d'usuari sols pot contenir números, " +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Reclamació enviada" -#: actions/twittersettings.php:341 +#: lib/command.php:126 #, php-format -msgid "Unable to retrieve account information " -msgstr "No s'ha pogut obtenir informació del compte " +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Error al moure el block." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "No id en el perfil sol·licitat." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "L'usuari no té última nota" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "No hi ha cap perfil amb aquesta id." +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Nota marcada com a favorita." -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "No subscrit" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: lib/command.php:318 #, php-format -msgid "%s groups" -msgstr "%s grups" +msgid "Fullname: %s" +msgstr "Nom complet: %s" -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: lib/command.php:321 #, php-format -msgid "%s groups, page %d" -msgstr "%s grups, pàgina %d" +msgid "Location: %s" +msgstr "Localització: %s" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Problema al guardar la notificació. Usuari desconegut." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Pàgina web: %s" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " -"minuts." +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "Sobre tu: %s" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Pujar un avatar" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Error al enviar el missatge directe." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Altres" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Altres opcions" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "respondre a aquesta nota" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "%s - %s" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problema en guardar l'avís." -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Pàgina sense titol" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Especifica el nom de l'usuari a que vols subscriure't" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Navegació primària del lloc" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Subscrit a %s" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Perfil personal i línia temporal dels amics" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Cercar gent o text" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Has deixat d'estar subscrit a %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Compte" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Comanda encara no implementada." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Notificacions off." -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Connectar a missatgeria instantània, SMS, Twitter" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "No es poden posar en off les notificacions." -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Sortir d'aquest lloc" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Notificacions on." -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Accedir a aquest lloc" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "No es poden posar en on les notificacions." -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Crear nou compte" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "No s'ha pogut crear el formulari OpenID: %s" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Accedir amb OpenID" +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Ajuda'm" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Avís del lloc" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Cap codi de confirmació." -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Vistes locals" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "Notificació pàgina" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Navegació del lloc secundària" +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Accedir a aquest lloc" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Llicència del programari StatusNet" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "Missatgeria Instantània" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Tot " +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Actualitzacions per Missatgeria Instantània" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "llicència." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Actualitzacions per SMS" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Bloquejar aquest usuari" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Bloquejar" +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Deixar de tenir favorita aquesta notificació" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Pujar" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit " +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " un nou compte." +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Canviar la teva contrasenya" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connectar-se" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Cercar" + +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Text" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Inici de sessió" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Publicat" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Deixar de tenir favorita aquesta notificació" #: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" msgstr "Fer favorita aquesta notificació" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Favorit" + #: lib/feedlist.php:64 msgid "Export data" msgstr "Exportar data" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + #: lib/galleryaction.php:121 msgid "Filter tags" msgstr "Filtre d'etiquetes" @@ -5345,63 +3952,85 @@ msgstr "Filtre d'etiquetes" msgid "All" msgstr "Tot" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecciona un transport" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Etiqueta" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Elegeix una etiqueta para reduir la llista" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" msgstr "Anar" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL del teu web, blog del grup u tema" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Descriu el grup amb 140 caràcters" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descriu el grup amb 140 caràcters" + #: lib/groupeditform.php:172 msgid "Description" msgstr "Descripció" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Descriu el grup amb 140 caràcters" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" "Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Grup" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Admin" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquejar" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Usuari bloquejat." -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Editar propietats del grup %s" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Afegir o editar logo %s" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Afegir o editar logo %s" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grups amb més membres" @@ -5416,8 +4045,42 @@ msgid "Tags in %s group's notices" msgstr "Etiquetes en les notificacions del grup %s" #: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "Aquesta pàgina no està disponible en " +msgid "This page is not available in a media type you accept" +msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis." + +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Pots pujar una imatge de logo per al grup." + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Càrrega parcial." + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Error del sistema en pujar el fitxer." + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "No és una imatge o és un fitxer corrupte." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Format d'imatge no suportat." + +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Hem perdut el nostre arxiu." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Tipus de fitxer desconegut" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Nou avís" #: lib/joinform.php:114 msgid "Join" @@ -5427,43 +4090,87 @@ msgstr "Inici de sessió" msgid "Leave" msgstr "Abandonar" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Accedir amb el nom d'usuari i contrasenya" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Crear nou compte" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Accedir o registrar-se amb OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Només l'usuari pot llegir les seves safates de correu." + +#: lib/mailbox.php:139 +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:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " de " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Confirmació de l'adreça de correu electrònic" -#: lib/mail.php:175 +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" -msgstr "" -"Ei, %s.\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" "\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:235 #, php-format -msgid "%1$s is now listening to " -msgstr "%1$s ara està escoltant " +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s ara està escoltant els teus avisos a %2$s." -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s ara està escoltant els teus avisos a %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentament,\n" +"%4$s.\n" + +#: lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Ubicació: %s\n" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Pàgina personal: %s\n" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -5472,64 +4179,225 @@ msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 #, php-format -msgid "You've been nudged by %s" -msgstr "Has estat reclamat per %s" +msgid "New email address for posting to %s" +msgstr "Nou correu electrònic per publicar a %s" -#: lib/mail.php:465 +#: lib/mail.php:288 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) vol saber què estàs fent " +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Tens una nova direcció per publicar a %1$s.\n" +"\n" +"Envia un correu electrònic a %2$s per publicar un nou missatge.\n" +"\n" +"Més instruccions per al correu electrònic a %3$s.\n" +"\n" +"Sincerament teus,\n" +"%4$s" -#: lib/mail.php:555 +#: lib/mail.php:412 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s ha afegit la teva notificació des de %2$s." - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Des de" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Enviar notificació directa" - -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Enviar notificació" - -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Caràcters disponibles" +msgid "%s status" +msgstr "%s estat" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "en resposta a" +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Confirmació SMS" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "respondre a aquesta nota" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "Has estat reclamat per %s" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Respondre" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Eliminar aquesta nota" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Nou missatge privat de %s" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Eliminar" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s ha afegit la teva nota com a favorita" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "No s'ha pogut recuperar la conversa pública." + +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Enviar notificació directa" + +#: lib/messageform.php:146 +msgid "To" +msgstr "A" + +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Caràcters disponibles" + +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Enviar notificació" + +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Què tal, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Cap contingut!" + +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "respondre a aquesta nota" + +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Respondre" #: lib/nudgeform.php:116 msgid "Nudge this user" @@ -5543,41 +4411,139 @@ msgstr "Reclamar" msgid "Send a nudge to this user" msgstr "Enviar una reclamació a aquest usuari" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Error en inserir el nou perfil" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Error en inserir avatar" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Error en inserir perfil remot" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Eliminar nota." + +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "No s'ha pogut inserir una nova subscripció." + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Personal" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Respostes" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favorits" + +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuari" + +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Safata d'entrada" + +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Els teus missatges rebuts" + +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Safata de sortida" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Els teus missatges enviats" + #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" msgstr "Etiquetes en les notificacions de %s's" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(cap)" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Subscripcions" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Totes les subscripcions" + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Subscriptors" + +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Tots els subscriptors" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuari" + +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Membre des de" + +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Tots els grups" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +#: lib/publicgroupnav.php:78 msgid "Public" msgstr "Públic" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +#: lib/publicgroupnav.php:82 msgid "User groups" msgstr "Grups d'usuaris" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etiquetes recents" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +#: lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacat" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +#: lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Cercar" + +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Cercar" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Gent" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Trobar gent en aquest lloc" + #: lib/searchgroupnav.php:82 msgid "Notice" msgstr "Avisos" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Trobar contingut de les notes" + #: lib/searchgroupnav.php:85 msgid "Find groups on this site" msgstr "Trobar un grup en aquest lloc" @@ -5586,35 +4552,62 @@ msgstr "Trobar un grup en aquest lloc" msgid "Untitled section" msgstr "Secció sense títol" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Persones %s subscrites a" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Persones subscrites a %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s grups són membres de" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Convidar amics i companys perquè participin a %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(cap)" -#: lib/subs.php:53 lib/subs.php:52 +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" + +#: lib/subs.php:52 msgid "User has blocked you." msgstr "Un usuari t'ha bloquejat." -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Subscriure's a aquest usuari" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "No pots subscriure." + +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "No pots subscriure a un altre a tu mateix." + +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "No estàs subscrit!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "No s'ha pogut eliminar la subscripció." #: lib/tagcloudsection.php:56 msgid "None" @@ -5624,2094 +4617,106 @@ msgstr "Cap" msgid "Top posters" msgstr "Que més publiquen" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Desbloquejar aquest usuari" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Desbloquejar" - #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Deixar d'estar subscrit des d'aquest usuari" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed per a amics de %s" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed per a amics de %s" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed per a amics de %s" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Cancel·lar subscripció" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/userprofile.php:116 #, fuzzy -msgid "You and friends" -msgstr "%s i amics" +msgid "Edit Avatar" +msgstr "Avatar" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Pots pujar el teu avatar personal." +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Accions de l'usuari" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/userprofile.php:248 #, fuzzy -msgid "Avatar deleted." -msgstr "Avatar actualitzat." - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +msgid "Edit profile settings" +msgstr "Configuració del perfil" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " -"no ho podràs desfer." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " -"us plau." +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Enviar un missatge directe a aquest usuari" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Missatge" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "fa pocs segons" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "fa un minut" -#: actions/facebooksettings.php:124 +#: lib/util.php:848 #, 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 "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Pots pujar una imatge de logo per al grup." - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "" -"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " -"avatar." - -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Microblog de %s" +msgid "about %d minutes ago" +msgstr "fa %d minuts" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " -"de cerca amb espais; han de ser majors a 3 caràcters." +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "fa una hora" -#: actions/groups.php:90 +#: lib/util.php:852 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Error al enviar el missatge directe." - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Cerca \"%s\" al flux" - -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " -"contrasenya abans de canviar la teva configuració." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Feed del flux públic" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Feed del flux públic" - -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Feed del flux públic" +msgid "about %d hours ago" +msgstr "fa %d hores" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "fa un dia" -#: actions/register.php:286 actions/register.php:329 +#: lib/util.php:856 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"excepte les següents dades privades: contrasenya, adreça de correu " -"electrònic, adreça de missatgeria instantània, número de telèfon." +msgid "about %d days ago" +msgstr "fa %d dies" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Crear" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "fa un mes" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: lib/util.php:860 #, 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 "" - -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Perfil del grup" - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "perfil" +msgid "about %d months ago" +msgstr "fa %d mesos" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Feed d'avisos de %s" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "fa un any" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Feed d'avisos de %s" +msgid "%s is not a valid color!" +msgstr "La pàgina personal no és un URL vàlid." -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Feed d'avisos de %s" +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Safata de sortida per %s" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "No es pot analitzar el missatge." -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Avatar" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Usuari no registrat." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Configuració del perfil" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Perdó, aquest no és el teu correu electrònic entrant permès." -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " -"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " -"instruccions per utilitzar-lo." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Aquest usuari no existeix" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes " -"a Twitter, " - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Si us plau, revisa aquestes dades per a estar segur que desitges " -"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " -"avisos de ningú, clica \"Cancel·lar\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Cercar gent o text" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " -"minuts." - -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Connectar a missatgeria instantània, SMS, Twitter" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Reclamar" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "Per utilitzar la Aplicació de Facebook %s necessites haver accedit " - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s ara està escoltant els teus avisos a %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentament,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Cercar" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "No existeix aquest document." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "La llista dels usuaris d'aquest grup." - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "La llista dels usuaris d'aquest grup." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Perfil de l'usuari" - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s i amics, pàgina %d" - -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "La llista dels usuaris d'aquest grup." - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Ha fallat el desbloqueig d'usuari." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Codi de confirmació" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "No es pot esborrar la notificació." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Etiqueta no vàlida: \"%s\"" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Aquest sobrenom ja existeix. Prova un altre. " - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "No es pot crear favorit." - -#: 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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Nou avís" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Nou avís" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Sobrenom no vàlid." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "No s'ha especificat perfil." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Un usuari t'ha bloquejat." - -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "No ets membre d'aquest grup." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Usuari bloquejat." - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Has d'haver entrat per crear un grup." - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Grups" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "No s'ha pogut actualitzar l'usuari." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "No s'ha pogut guardar la teva configuració de Twitter!" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Preferències de sincronització guardades." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "Has de ser admin per editar aquest grup" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Admin" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Cap resultat" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "Un usuari t'ha bloquejat." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Missatge" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "No s'ha pogut guardar el perfil." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) et permet accedir a molts llocs amb un mateix " -"compte d'usuari. Administra els teus OpenID associats aquí." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Configuració del perfil" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" -"wiki/Microblogging) " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova " -"que t'enviarem al correu electrònic que tinguis posat al teu compte." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "T'has identificat. Escriu una nova contrasenya a continuació." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Recuperació de contrasenya sol·licitada" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Error amb el codi de confirmació." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Subscriure's a aquest usuari" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s notificacions favorites, pàgina %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Feed d'avisos del grup %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Feed d'avisos del grup %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Feed d'avisos del grup %s" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" -"(http://ca.wikipedia.org/wiki/Microblogging)" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy -msgid "Admins" -msgstr "Admin" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "No existeix aquest usuari." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Aviso etiquetats amb %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Feed d'avisos del grup %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" -"ca.wikipedia.org/wiki/Microblogging) " - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s ara està escoltant " - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Feed d'avisos de %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Feed d'avisos de %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Aquesta nota ja és favorita." - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Aquesta notificació no és un favorit!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "No s'ha pogut recuperar la conversa pública." - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "No has especificat el destinatari." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "No es pot trobar cap estatus." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Notificacions contestant a %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Actualitzacions de %1$s a %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "llicència." - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "%s subscripcions" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Configuració del perfil" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "No ets membre d'aquest grup." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Problema en guardar l'avís." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Missatge per a %1$s a %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Perfil de l'usuari" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Perfil" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Pujar" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Canviar la teva contrasenya" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Connectar-se" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Cercar" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Inici de sessió" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Bloquejar" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Usuari bloquejat." - -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Afegir o editar logo %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Cap contingut!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Usuari" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Cercar" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "La pàgina personal no és un URL vàlid." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "No existeix aquesta etiqueta." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Missatges directes a %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "És massa llarg. Màxim del missatge és 140 caràcters." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "la descripció és massa llarga (màx. 140 caràcters)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Ja ets membre d'aquest grup" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "No s'ha pogut afegir l'usuari %s al grup %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "No ets membre d'aquest grup." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s grups" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "%s grups són membres de" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Accions del grup" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Avatar actualitzat." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Massa llarg. La longitud màxima és de 140 caràcters." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Format d'imatge no suportat." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Foto" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "la descripció és massa llarga (màx. 140 caràcters)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Actualitzacions de %1$s a %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "L'usuari que vols seguir no existeix." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "No autoritzat." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Versió desconeguda del protocol OMB." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "No existeix aquest avís." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Hem perdut el nostre arxiu." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Actualitzacions de %1$s a %2$s!" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Aquesta pàgina no està disponible en " - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " -"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " -"[OpenID] (%%action.openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Actualitzacions de %1$s a %2$s!" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Connectar-se" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Explica'ns alguna cosa sobre tu " - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "La biografia és massa llarga (màx. 140 caràcters)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "URL de perfil no vàlid (cap document YADIS)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "No s'ha pogut obtenir un senyal de petició." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Feed d'avisos de %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Feed d'avisos de %s" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Feed d'avisos de %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Missatge per a %1$s a %2$s" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed per a amics de %s" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed per a amics de %s" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed per a amics de %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Safata de sortida per %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Notificació publicada" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Aquesta pàgina no està disponible en " - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Feed d'avisos de %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Si us plau, revisa aquestes dades per a estar segur que desitges " -"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " -"avisos de ningú, clica \"Cancel·lar\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " -"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " -"El teu identificador de subscripció és:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " -"de nou les instruccions per a saber com rebutjar la subscripció completament." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "No es pot llegir l'URL de l'avatar '%s'" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Tipus d'imatge incorrecte per a '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "No s'ha pogut redirigir al servidor: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Llicència del programari StatusNet" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Reclamació enviada" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "respondre a aquesta nota" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Problema en guardar l'avís." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Cap codi de confirmació." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Accedir a aquest lloc" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Selecciona un transport" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Descriu el grup amb 140 caràcters" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Descriu el grup amb 140 caràcters" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Nou avís" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s ha afegit la teva nota com a favorita" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " de " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "No s'ha pogut recuperar la conversa pública." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Eliminar nota." - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "El contingut de l'avís és invàlid" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "No s'ha pogut crear el formulari OpenID: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Pots pujar una imatge de logo per al grup." - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Perdó, no hi ha un correu electrònic entrant permès." diff --git a/locale/cs/LC_MESSAGES/statusnet.mo b/locale/cs/LC_MESSAGES/statusnet.mo index 26311ff1f..f9cf40b2e 100644 Binary files a/locale/cs/LC_MESSAGES/statusnet.mo and b/locale/cs/LC_MESSAGES/statusnet.mo differ diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index f1d95850c..096e49547 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -5,5281 +5,3858 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:10+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:57:53+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid " Search Stream for \"%s\"" -msgstr " Hledej \"%s\" ve Streamu" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Žádné takové oznámení." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " -"číslo." +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Žádný takový uživatel." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " od " +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s a přátelé" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgid "%s and friends" +msgstr "%s a přátelé" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed přítel uživatele: %s" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed přítel uživatele: %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1 od teď naslouchá tvým sdělením v %2" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed přítel uživatele: %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1 naslouchá vašim sdělením na %s. \n" -"\n" -"\t%3\n" -"\n" -"S úctou váš,\n" -"%4$s.\n" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1 statusů na %2" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "Veřejný \"Stream\"" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s a přátelé" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s public timeline" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s a přátelé" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s timeline" +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** je služba mikroblogů." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Uživatel nemá profil." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "Přispěvatelá by měly být zmíněny přezdívkou nebo celým jménem" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 a více znaků" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 a více znaků, a nezapomeňte" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:89 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "Direct messages from %s" msgstr "" -"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " -"posílání zpráv." -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "O nás" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Přijmout" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Přidat" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Přidej OpenID" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" msgstr "" -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adresa" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Všechny odběry" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Všechny aktualizace pro %s" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Všechny položky obsahující \"%s\"" +msgid "Could not follow user: %s is already on your list." +msgstr "" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Již přihlášen" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Nelze přesměrovat na server: %s" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Již přihlášeno" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autorizovaný odběr" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Nelze aktualizovat uživatele" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Příště automaticky přihlásit; ne pro počítače, které používá " +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Nelze aktualizovat uživatele" -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Nelze uložin informace o obrázku" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Obrázek" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Nelze uložin informace o obrázku" -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Obrázek nahrán" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Nelze vytvořit odebírat" -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk " -"účtu. (Přidal jste si %s do vašich kontaktů?)" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Přezdívku již někdo používá. Zkuste jinou" -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Není platnou přezdívkou." -#: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy -msgid "Before »" -msgstr "Starší »" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Stránka není platnou URL." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "O mě" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Nelze přečíst adresu obrázku '%s'" +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Nelze uložit nové heslo" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Neplatná adresa '%s'" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Zrušit" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Přezdívku již někdo používá. Zkuste jinou" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Nelze dolozit zákaznický objekt OpenID" +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Nelze normalizovat JabberID" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Již jste přihlášen" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Změnit" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Nelze přesměrovat na server: %s" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Neodeslal jste nám profil" -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Změnit heslo" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Nelze vytvořit OpenID z: %s" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" msgstr "" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Heslo znovu" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Profil" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Potvrď adresu" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Neodeslal jste nám profil" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Potvrď zrušení" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Potvrzující kód nebyl nalezen" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Obrázek nahrán" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Připojit" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Zruš existující účet" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Kontakt" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Nelze vytvořit OpenID z: %s" +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Nepodporovaný formát obrázku." + +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "Could not follow user: %s is already on your list." +msgid "%s / Favorites from %s" msgstr "" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Nelze přesměrovat na server: %s" +msgid "%s timeline" +msgstr "" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Nelze uložin informace o obrázku" +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Nelze uložit nové informace do profilu" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1 statusů na %2" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" msgstr "" -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Nelze smazat potvrzení emailu" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Mikroblog od %s" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Nelze smazat odebírání" +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "Žádný požadavek nebyl nalezen!" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Žádný takový dokument." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Nelze získat řetězec požadavku." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Žádná přezdívka." -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Nelze vložit potvrzující kód" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Žádná velikost" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Nelze vložit odebírání" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Neplatná velikost" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Nelze uložit profil" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Obrázek" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Nelze aktualizovat uživatele" - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Vytvořit" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Nastavení" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Vytvořit nového uživatele s touto přezdívkou" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Vytvořit nový účet" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Pro toto OpenID již uživatel existuje" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Potvrzené Jabber/GTalk adresy" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Upload" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Nyní" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Nečekaná forma submission." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Chyba v DB při vkládání odpovědi: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Popiš sebe a své zájmy ve 140 znacích" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Obrázek nahrán" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Email" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Nahrávání obrázku selhalo." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Obrázek nahrán" + +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "Žádná přezdívka." + +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Žádné takové oznámení." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Uživatel nemá profil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s a přátelé" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Žádný takový uživatel." + +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Emailová adresa již existuje" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "Žádný takový uživatel." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Potvrzení emailové adresy" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Nepřihlášen" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Zadej přezdívku nebo emailovou adresu" +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "Žádný takový uživatel." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Chyba potvrujícího řetězce" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Chyba při propojení uživatele na OpenID" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Nelze přesměrovat na server: %s" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Chyba přihlašování uživatele" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Chyba při kládání obrázku" +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Žádný takový uživatel." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Chyba při vkládání nového profilu" +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "Již jste přihlášen" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Chyba při vkládaní vzdáleného profilu" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Chyba při ukládání potvrzení adresy" +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Chyba při ukládnání vzdáleného profilu" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Žádný potvrzující kód." -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Chyba při ukládaní profilu" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Potvrzující kód nebyl nalezen" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Chyba při ukládaní uživatele" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Tento potvrzující kód vám nepatří!" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Chyba při ukládaní uživatele; neplatný" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Neznámý typ adresy %s" -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Chyba nastavení uživatele" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Adresa již byla potvrzena" -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Chyba při aktualizaci profilu" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Nelze aktualizovat uživatele" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Chyba při aktualizaci vzdáleného profilu" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Nelze smazat potvrzení emailu" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Chyba v ověřovacím kódu" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Potvrď adresu" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Existující jméno" +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Adresa \"%s\" byla potvrzena pro váš účet" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "FAQ" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Umístění" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Nahrávání obrázku selhalo." +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Sdělení" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, fuzzy, php-format -msgid "Feed for friends of %s" -msgstr "Feed přítel uživatele: %s" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Žádné takové oznámení." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, fuzzy, php-format -msgid "Feed for replies to %s" -msgstr "Feed odpovědí na %s" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" msgstr "" -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" msgstr "" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Žádné takové oznámení." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Celé jméno" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)" +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Nápověda" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Domů" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Moje stránky" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Žádný takový dokument." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Stránka není platnou URL." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM adresa" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM nastavení" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " -"účet s OpenID." +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Nelze aktualizovat uživatele" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Pokud chcete přidat OpenID k vašemu účtu, zadejte OpenID do pole níže a " -"klikněte na \"Přidat\"." +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "Nastavení uloženo" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: actions/emailsettings.php:60 +msgid "Email Settings" msgstr "" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adresa" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Neplatné heslo" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Neplatné jméno nebo heslo" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Odstranit" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +#: actions/emailsettings.php:113 msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregistrovanou " -"u vašeho účtu." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Neplatná adresa obrázku '%s'" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Zrušit" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" +#: actions/emailsettings.php:121 +msgid "Email Address" msgstr "" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Neplatná adresa '%s'" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Neplatná adresa licence '%s'" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Neplatný obsah sdělení" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Přidat" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Neplatná uri sdělení" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Neplatná url sdělení" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Neplatná adresa profilu '%s'." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Neplatná adresa profilu (špatný formát)" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Neplatná adresa profilu, vrácená serverem" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Nastavení" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Neplatná velikost" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Neplatné jméno nebo heslo" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -"Běží na [StatusNet](http://status.net/) mikroblogovací program, verze %s, " -"dostupná pod [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID již patří jinému uživateli" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Uložit" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber nebo GTalk adresy, například \"jmeno@neco.cz\". Neprve se ujistěte že " -"jste přidal %s do vašeho seznamu kontaktů." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Nastavení uloženo" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" msgstr "" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Umístění" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Přihlásit" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Přihlaste se pomocí [OpenID](%%doc.openid%%) účtu." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Nelze vložit potvrzující kód" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format +#: actions/emailsettings.php:358 msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +"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 "" -"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " -"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" -"action.openidlogin%%)." - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Odhlásit" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Nečeká žádné potvrzení na zrušení." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Ztracené nebo zapomenuté heslo?" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Toto je špatná IM adresa" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Potvrď zrušení" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Členem od" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Mikroblog od %s" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Adresa byla odstraněna" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Mé texty a soubory jsou k dispozici pod" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nová přezdívka" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nové sdělení" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "Žádné takové oznámení." -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nové heslo" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Žádné takové oznámení." -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Přezdívka" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Přezdívku již někdo používá. Zkuste jinou" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer" +#: 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/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Přezdívka není povolena" +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Přezdívka uživatele, kterého chcete sledovat" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Přezdívka nebo email" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Mikroblog od %s" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Žádné Jabber ID." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Žádné potvrení!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Žádný potvrzující kód." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nové sdělení" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Žádný obsah!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nové sdělení" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Žádné id" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Nebyla poskytnuta žádná přezdívka od servru." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Nečekaná odpověď." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Žádná přezdívka." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Úživatel, kterému nasloucháte neexistuje." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Nečeká žádné potvrzení na zrušení." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Můžete použít místní odebírání." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Nebylo vráceno žádné URL profilu od servu." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Neautorizován." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Žádný registrovaný email pro tohoto uživatele." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Žádný požadavek nebyl nalezen!" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Neznámá verze OMB protokolu." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Žádné výsledky." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Chyba při aktualizaci vzdáleného profilu" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Žádná velikost" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Žádné takové oznámení." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Žádné takové oznámení." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Žádné takové oznámení." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Žádné takové OpenID" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Žádný takový dokument." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Žádné takové oznámení." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Uživatel nemá profil." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Žádný takový obnovující kód." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Neodeslal jste nám profil" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Žádné takové odebírání" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" msgstr "Žádný takový uživatel." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Nikdo k zobrazení!" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Není obnovujícím kódem" +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Není platným Jabber ID" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Není platným OpenID." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Nelze aktualizovat uživatele" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Není platnou mailovou adresou." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Nastavení uloženo" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Není platnou přezdívkou." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Neplatný adresa profilu (nesprává služba)" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Není platnou adresou profulu (XRDS nedefinováno)." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Není platnou adresou profilu (není YADIS dokumentem)." +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Obrázek nahrán" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Není obrázkem, nebo jde o poškozený soubor." +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Nahrávání obrázku selhalo." -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Neautorizován." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Nečekaná odpověď." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Nepřihlášen" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Nepřihlášen!" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, fuzzy, php-format -msgid "Notice feed for %s" -msgstr "Feed sdělení pro %s" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Sdělení nemá profil" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Sdělení" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "Žádný takový uživatel." -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Staré heslo" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Nastavení OpenID účtu" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Přihlásit automaticky pomocí OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID přihlášení" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID adresa" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Přihlašovaní pomocí OpenID zrušeno" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Přihlašovaní pomocí OpenID selhalo: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID selhalo: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID odstraněno" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Nastavení OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: actions/groupmembers.php:473 +msgid "Make Admin" msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Částečné náhrání." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Heslo" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Heslo a potvrzení nesouhlasí" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Heslo musí být alespoň 6 znaků dlouhé" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Mikroblog od %s" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Žádost o obnovu hesla" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " +"Minimální délka musí být alespoň 3 znaky" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Heslo uloženo" +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Hledání lidí" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Hesla nesouhlasí" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Žádné výsledky." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Hledání lidí" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Osobní" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" msgstr "" -#: ../actions/userauthorization.php:78 +#: actions/groups.php:90 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " -"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " -"klikněte na \"Zrušit\"" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status." - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Nastavení" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Nastavení uloženo" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Vytvořit nový účet" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Soukromí" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Problém při ukládání sdělení" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profil" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Uživatel nemá profil." -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Adresa Profilu" +#: actions/groupunblock.php:128 actions/unblock.php:108 +#, fuzzy +msgid "Error removing the block." +msgstr "Chyba při ukládaní uživatele" -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Nastavené Profilu" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM nastavení" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Neznámý profil" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%" +"%).Zadejte svou adresu níže." -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 +#: actions/imsettings.php:89 #, fuzzy -msgid "Public Stream Feed" -msgstr "Veřejný Stream Feed" +msgid "IM is not available." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Veřejné zprávy" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Potvrzené Jabber/GTalk adresy" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk " +"účtu. (Přidal jste si %s do vašich kontaktů?)" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM adresa" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" +"Jabber nebo GTalk adresy, například \"jmeno@neco.cz\". Neprve se ujistěte že " +"jste přidal %s do vašeho seznamu kontaktů." -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Obnovit" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Obnovit" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Obnovyt kód pro neznámého uživatele" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Zasílat oznámení pomocí Jabber/GTalk" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registrovat" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status." -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Odmítnout" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Zapamatuj si mě" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Žádné Jabber ID." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Vzdálený profil s nesouhlasícím profilem" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Nelze normalizovat JabberID" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Vzdálený odběr" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Není platným Jabber ID" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Odstranit" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Toto je již vaše Jabber" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Odstranit OpenID" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID již patří jinému uživateli" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/imsettings.php:327 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -"Odstranění jediného OpenID, bude mít za následek nemožnost dalšího " -"přihlášení, nejprve přidejte jiné OpenID" +"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " +"posílání zpráv." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Odpovědi" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Toto není váš Jabber" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/inbox.php:59 #, php-format -msgid "Replies to %s" -msgstr "Odpovědi na %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Reset" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Resetovat heslo" +msgid "Inbox for %s - page %d" +msgstr "" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Stejné jako heslo výše" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" msgstr "" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Uložit" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Hledat" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -#, fuzzy -msgid "Search Stream Feed" -msgstr "Hledat ve Stream Feed" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +msgid "%s (%s)" msgstr "" -"Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být " -"alespoň 3 znaky" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/invite.php:136 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"These people are already users and you were automatically subscribed to them:" msgstr "" -"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " -"Minimální délka musí být alespoň 3 znaky" -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" msgstr "" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Odeslat" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Zasílat oznámení pomocí Jabber/GTalk" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Nastavení" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Odeslat" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Nastavení uloženo" +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Někdo jiný již má toto OpenID" +#: actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "Již jste přihlášen" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Něco zvláštního se stalo" +#: actions/joingroup.php:128 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "Nelze přesměrovat na server: %s" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Zdroj" +#: actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Neodeslal jste nám profil" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistiky" +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Uložené OpenID nebylo nalezeno." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Odebírat" +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "Nelze vytvořit OpenID z: %s" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Odběratelé" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Odběr autorizován" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Již přihlášen" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Odběr odmítnut" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Neplatný obsah sdělení" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Odběry" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Neplatné jméno nebo heslo" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Chyba systému při nahrávání souboru" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Chyba nastavení uživatele" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Přihlásit" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Vyhledávání textu" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Toto OpenID vám nepatří" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Přezdívka" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Adresa již byla potvrzena" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Heslo" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Tento potvrzující kód vám nepatří!" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Zapamatuj si mě" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Příště automaticky přihlásit; ne pro počítače, které používá " -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Soubor je příliš velký" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Ztracené nebo zapomenuté heslo?" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Toto je již vaše Jabber" +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" +"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " +"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" +"action.openidlogin%%)." -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." msgstr "" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Toto není váš Jabber" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" msgstr "" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Toto je špatná IM adresa" +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/newgroup.php:53 +msgid "New group" msgstr "" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Adresa \"%s\" byla potvrzena pro váš účet" +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Žádný obsah!" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Adresa byla odstraněna" +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " -"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " -"je:" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " -"nápovědě jak správně postupovat při zamítání odběru" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" +msgid "Direct message to %s sent" +msgstr "" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Toto jsou lidé, kteří naslouchají vašim sdělením " +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nové sdělení" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Toto jsou lidé, jejiž sdělením nasloucháte" +#: actions/newnotice.php:199 +#, fuzzy +msgid "Notice posted" +msgstr "Sdělení" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 +#: actions/noticesearch.php:68 +#, php-format msgid "" -"These people are already users and you were automatically subscribed to them:" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" +"Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být " +"alespoň 3 znaky" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Tento potvrzující kód je příliš starý Prosím zkuste znovu" +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Vyhledávání textu" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Tento formulář by se měl odeslat sám, pokud ne tak klikněte na tlašítko pro " -"přechod k vašemu OpenID poskytovately." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Hledej \"%s\" ve Streamu" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearch.php:121 #, 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 "" -"Toto je poprvé co jste se přihlásil na %s proto musíme propojit vaše OpenID " -"k našemu účtu. Můžete buď vytvořit nový účet, nebo propojit OpenID k vašemu " -"již existujícímu účtu, pokud již takový máte." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Tato stránka není k dispozici v typu média která přijímáte." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Mikroblog od %s" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Všechny položky obsahující \"%s\"" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format +#: actions/nudge.php:85 msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"Pro odebírání, se musíte [přihlásit](%%action.login%%), nebo [registrovat](%%" -"action.register%%) nový účet. Pokud již máte účet na [kompatibilních " -"mikroblozích](%%doc.openmublog%%), vložte níže asdresu " -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "Adresa profilu na jiných kompatibilních mikroblozích." +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Sdělení nemá profil" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Nečekaná forma submission." +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1 statusů na %2" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Nečekané resetování hesla." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Připojit" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/oembed.php:160 +msgid "Only " msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Neznámá verze OMB protokolu." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/opensearch.php:64 +msgid "People Search" msgstr "" -"Pokud není uvedeno jinak, obsah těchto stránek chráněn autorským právem, " -"patří přispěvatelů a je k dipozici pod" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Neznámý typ adresy %s" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Odhlásit" +#: actions/othersettings.php:60 +#, fuzzy +msgid "Other Settings" +msgstr "Nastavení" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Nepodporovaná verze OMB." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Nepodporovaný formát obrázku." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Nastavené Profilu" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" + +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" +msgid "Outbox for %s - page %d" msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" +msgid "Outbox for %s" msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Upload" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Zde nahrajte nový obrázek k vašemu profilu. Po tom co nahrajete obrázek ho " -"již nemůžete editovat, proto se ujistěte že jde víceméně o čtverec." -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Změnit heslo" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Změnit heslo" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Heslo uloženo" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Úživatel, kterému nasloucháte neexistuje." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Staré heslo" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Uživatel nemá profil." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nové heslo" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Přezdívka" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 a více znaků" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Heslo znovu" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "stejné jako heslo výše" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Co se děje %s?" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Změnit" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Místo. Město, stát." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Neplatný typ obrázku pro '%s'" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Hesla nesouhlasí" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Neplatná velikost obrázku '%s'" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Neplatné heslo" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Chyba při ukládaní uživatele; neplatný" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Již máte toto OpenID!" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Nelze uložit nové heslo" + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Heslo uloženo" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +#: actions/peoplesearch.php:52 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " +"Minimální délka musí být alespoň 3 znaky" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Již jste přihlášen" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Hledání lidí" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" +#: actions/peopletag.php:70 +#, fuzzy, php-format +msgid "Not a valid people tag: %s" +msgstr "Není platnou mailovou adresou." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" msgstr "" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Zde můžeze změnit heslo." - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Můžete vytvožit nový účet a začít posílat oznámení." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Neplatný obsah sdělení" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/postnotice.php:90 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Nastavené Profilu" + +#: actions/profilesettings.php:71 msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Můžete odstranit OpenID z vašeho účtu, kliknutím na tlačítko \"Odebrat\"." - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%" -"%).Zadejte svou adresu níže." - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." +"You can update your personal profile info here so people know more about you." msgstr "" "Zde můžete aktualizovat informace o vašem profilu, aby se lidé o vás mohli " "více dozvědět." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Můžete použít místní odebírání." +#: actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "Neznámý profil" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Neodeslal jste nám profil" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Celé jméno" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Moje stránky" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Popiš sebe a své zájmy ve 140 znacích" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Popiš sebe a své zájmy ve 140 znacích" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Byl jste identifikován. Zadejte nové heslo" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "O mě" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Vaše OpenID adresa" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Umístění" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Vaše přezdívka na tomto servu, nebo váš email zadaný při registraci" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Místo. Město, stát." -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " -"Zde může spravovat vaše OpenID" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "před pár sekundami" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "před %d dny" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "asi před %d hodinami" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "asi před %d minutami" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "asi před %d mesíci" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "asi přede dnem" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "asi před minutou" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "asi před měsícem" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "asi před rokem" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "asi před hodinou" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Neplatná adresa '%s'" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "odpověd na ..." +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Nelze uložit profil" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "odpověď" +#: actions/profilesettings.php:336 +#, fuzzy +msgid "Couldn't save tags." +msgstr "Nelze uložit profil" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "stejné jako heslo výše" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Nastavení uloženo" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -#: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy -msgid "« After" -msgstr "« Novější" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Veřejné zprávy" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Veřejné zprávy" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Veřejný Stream Feed" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Veřejný Stream Feed" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Veřejný Stream Feed" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/public.php:233 #, php-format -msgid "%s favorite notices" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 +#: actions/public.php:238 #, php-format -msgid "Feed of favorite notices of %s" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Veřejný Stream Feed" + +#: actions/publictagcloud.php:63 #, php-format -msgid "Inbox for %s - page %d" +msgid "These are most popular recent tags on %s " msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/publictagcloud.php:69 #, php-format -msgid "Inbox for %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/invite.php:178 actions/invite.php:213 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Již jste přihlášen" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Žádný takový obnovující kód." -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Není obnovujícím kódem" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Obnovyt kód pro neznámého uživatele" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Chyba v ověřovacím kódu" + +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Tento potvrzující kód je příliš starý Prosím zkuste znovu" + +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/recoverpassword.php:152 msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Vaše přezdívka na tomto servu, nebo váš email zadaný při registraci" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Obnovit" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Resetovat heslo" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Obnovit" -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Žádost o obnovu hesla" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 a více znaků, a nezapomeňte" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Stejné jako heslo výše" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Reset" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Zadej přezdívku nebo emailovou adresu" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Žádný registrovaný email pro tohoto uživatele." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Chyba při ukládání potvrzení adresy" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" +"Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregistrovanou " +"u vašeho účtu." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Nečekané resetování hesla." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Heslo musí být alespoň 6 znaků dlouhé" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Heslo a potvrzení nesouhlasí" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen." -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Chyba v ověřovacím kódu" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registrovat" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Není platnou mailovou adresou." -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Emailová adresa již existuje" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Neplatné jméno nebo heslo" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/register.php:429 +msgid "6 or more characters. Required." msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Email" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Mé texty a soubory jsou k dispozici pod" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" +" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " +"číslo." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/register.php:537 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/twittersettings.php:27 +#: actions/register.php:561 msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" +"Pro odebírání, se musíte [přihlásit](%%action.login%%), nebo [registrovat](%%" +"action.register%%) nový účet. Pokud již máte účet na [kompatibilních " +"mikroblozích](%%doc.openmublog%%), vložte níže asdresu " -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Vzdálený odběr" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Odběr autorizován" -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Přezdívka" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Přezdívka uživatele, kterého chcete sledovat" -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Adresa Profilu" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "Adresa profilu na jiných kompatibilních mikroblozích." -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Odebírat" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Neplatná adresa profilu (špatný formát)" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 +#: actions/remotesubscribe.php:168 +#, fuzzy msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Není platnou adresou profilu (není YADIS dokumentem)." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Nelze získat řetězec požadavku." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Odpovědi na %s" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "Odpovědi na %s" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed sdělení pro %s" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed sdělení pro %s" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Odpovědi na %s" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Žádné takové oznámení." -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed přítel uživatele: %s" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed přítel uživatele: %s" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed přítel uživatele: %s" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/showfavorites.php:205 +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 "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 +#: actions/showfavorites.php:211 #, php-format -msgid "%1$s (%2$s)" +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "Location: %s" +msgid "%s group" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 +#: actions/showgroup.php:84 #, php-format -msgid "Homepage: %s" +msgid "%s group, page %d" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" +#: actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "Žádné takové oznámení." + +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +#, fuzzy +msgid "Note" +msgstr "Sdělení" + +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +#, fuzzy +msgid "Members" +msgstr "Členem od" + +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistiky" + +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Vytvořit" + +#: actions/showgroup.php:448 #, php-format -msgid "Subscribed to %s" +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 "" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +#: actions/showgroup.php:454 +#, 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 "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." +#: actions/showmessage.php:81 +msgid "No such message." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Sdělení" + +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" msgstr "" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/showstream.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/showstream.php:234 #, php-format -msgid "New private message from %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/showstream.php:239 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." + +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +#: actions/smssettings.php:130 +msgid "Confirmation code" msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s a přátelé" +#: actions/smssettings.php:347 +#, fuzzy +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 "Tento potvrzující kód vám nepatří!" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -#, fuzzy -msgid "Avatar settings" -msgstr "Nastavení" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/smssettings.php:476 +#, php-format +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 "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 +#: actions/subedit.php:70 #, fuzzy -msgid "Lost our file." -msgstr "Žádné takové oznámení." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" +msgid "You are not subscribed to that profile." +msgstr "Neodeslal jste nám profil" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" +#: actions/subedit.php:83 +#, fuzzy +msgid "Could not save subscription." +msgstr "Nelze vytvořit odebírat" -#: actions/block.php:111 actions/block.php:134 +#: actions/subscribe.php:55 #, fuzzy -msgid "Block user" +msgid "Not a local user." msgstr "Žádný takový uživatel." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - -#: actions/block.php:162 actions/block.php:165 +#: actions/subscribe.php:69 #, fuzzy -msgid "You have already blocked this user." -msgstr "Již jste přihlášen" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" +msgid "Subscribed" +msgstr "Odebírat" -#: actions/confirmaddress.php:159 +#: actions/subscribers.php:50 #, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "Adresa byla odstraněna" +msgid "%s subscribers" +msgstr "Odběratelé" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Toto jsou lidé, kteří naslouchají vašim sdělením " -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/subscribers.php:67 #, php-format -msgid "Edit %s group" -msgstr "" +msgid "These are the people who listen to %s's notices." +msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "Žádná přezdívka." - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "Žádné takové oznámení." - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Všechny odběry" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer" +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "Všechny odběry" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Toto jsou lidé, jejiž sdělením nasloucháte" -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "Nelze aktualizovat uživatele" +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" -#: actions/editgroup.php:226 actions/editgroup.php:269 -#, fuzzy -msgid "Options saved." -msgstr "Nastavení uloženo" +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Chyba v ověřovacím kódu" - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" +msgid "%s is not listening to anyone." +msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" +#: actions/subscriptions.php:194 +#, fuzzy +msgid "Jabber" +msgstr "Žádné Jabber ID." -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/emailsettings.php:321 +#: actions/tagother.php:33 #, fuzzy -msgid "That email address already belongs " -msgstr "Emailová adresa již existuje" +msgid "Not logged in" +msgstr "Nepřihlášen" -#: actions/emailsettings.php:343 +#: actions/tagother.php:39 #, fuzzy -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " -"posílání zpráv." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" +msgid "No id argument." +msgstr "Žádný takový dokument." -#: actions/facebookhome.php:196 +#: actions/tagother.php:65 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "Tag %s" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +#, fuzzy +msgid "User profile" +msgstr "Uživatel nemá profil." -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "Žádný obsah!" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -#, fuzzy -msgid "After" -msgstr "« Novější" +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 +#: actions/tagother.php:200 #, fuzzy -msgid "Before" -msgstr "Starší »" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" +msgid "Could not save tags." +msgstr "Nelze uložin informace o obrázku" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Mikroblog od %s" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Feed přítel uživatele: %s" +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed sdělení pro %s" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed sdělení pro %s" -#: actions/facebookremove.php:56 +#: actions/tagrss.php:35 #, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "Nelze aktualizovat uživatele" +msgid "No such tag." +msgstr "Žádné takové oznámení." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/twitapitrends.php:87 +msgid "API method under construction." msgstr "" -#: actions/facebooksettings.php:67 +#: actions/unsubscribe.php:77 #, fuzzy -msgid "Sync preferences saved." -msgstr "Nastavení uloženo" - -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" +msgid "No profile id in request." +msgstr "Nebylo vráceno žádné URL profilu od servu." -#: actions/facebooksettings.php:106 +#: actions/unsubscribe.php:84 #, fuzzy -msgid "Prefix" -msgstr "Profil" +msgid "No profile with that id." +msgstr "Vzdálený profil s nesouhlasícím profilem" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "Odhlásit" -#: actions/facebooksettings.php:124 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "If you would like %s to automatically update " +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/facebooksettings.php:147 +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autorizovaný odběr" + +#: actions/userauthorization.php:110 #, fuzzy -msgid "Sync preferences" -msgstr "Nastavení" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " +"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " +"klikněte na \"Zrušit\"" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Přijmout" + +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "Popular notices" -msgstr "Žádné takové oznámení." +msgid "Subscribe to this user" +msgstr "Odběr autorizován" -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "Žádné takové oznámení." +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Odmítnout" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Všechny odběry" + +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Žádné potvrení!" + +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Odběr autorizován" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" +"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " +"je:" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Odběr odmítnut" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" +"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při zamítání odběru" -#: actions/featured.php:71 +#: actions/userauthorization.php:296 #, php-format -msgid "Featured users, page %d" +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/featured.php:99 +#: actions/userauthorization.php:301 #, php-format -msgid "A selection of some of the great users on %s" +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Nelze přečíst adresu obrázku '%s'" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "Obrázek nahrán" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Neplatný typ obrázku pro '%s'" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Žádné id" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #, fuzzy -msgid "Failed updating logo." -msgstr "Nahrávání obrázku selhalo." +msgid "Profile design" +msgstr "Nastavené Profilu" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: actions/groups.php:64 +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Neodeslal jste nám profil" + +#: actions/usergroups.php:158 #, php-format -msgid "Groups, page %d" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/groups.php:90 +#: classes/File.php:137 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Vytvořit nový účet" +#: classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " -"Minimální délka musí být alespoň 3 znaky" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "Hledání lidí" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: actions/imsettings.php:120 +#: classes/Notice.php:164 #, php-format -msgid "Jabber or GTalk address, " +msgid "DB error inserting hashtag: %s" msgstr "" -#: actions/imsettings.php:147 +#: classes/Notice.php:179 #, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Zasílat oznámení pomocí Jabber/GTalk" +msgid "Problem saving notice. Too long." +msgstr "Problém při ukládání sdělení" -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Žádný potvrzující kód." +#: classes/Notice.php:183 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "Problém při ukládání sdělení" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -#, fuzzy -msgid "You are already a member of that group" -msgstr "Již jste přihlášen" +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "Nelze přesměrovat na server: %s" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Problém při ukládání sdělení" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: classes/Notice.php:1120 #, php-format -msgid "%s joined group %s" -msgstr "" +msgid "DB error inserting reply: %s" +msgstr "Chyba v DB při vkládání odpovědi: %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 +#: lib/accountsettingsaction.php:112 #, fuzzy -msgid "No such group." -msgstr "Žádné takové oznámení." +msgid "Upload an avatar" +msgstr "Nahrávání obrázku selhalo." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -#, fuzzy -msgid "You are not a member of that group." -msgstr "Neodeslal jste nám profil" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "Nelze vytvořit OpenID z: %s" +#: lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Uživatel nemá profil." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" +#: lib/action.php:144 +#, php-format +msgid "%s - %s" msgstr "" -#: actions/newgroup.php:53 -msgid "New group" +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "Nelze uložin informace o obrázku" +#: lib/action.php:430 +msgid "Home" +msgstr "Domů" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "Nelze vytvořit odebírat" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" -#: actions/newmessage.php:119 actions/newnotice.php:132 +#: lib/action.php:432 #, fuzzy -msgid "That's too long. " -msgstr "Soubor je příliš velký" +msgid "Account" +msgstr "O nás" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 +#: lib/action.php:435 +msgid "Connect" +msgstr "Připojit" + +#: lib/action.php:435 #, fuzzy -msgid "Notice posted" -msgstr "Sdělení" +msgid "Connect to services" +msgstr "Nelze přesměrovat na server: %s" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" +#: lib/action.php:445 +msgid "Logout" +msgstr "Odhlásit" -#: actions/nudge.php:97 -msgid "Nudge sent!" +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#: lib/action.php:450 #, fuzzy -msgid "OpenID login" -msgstr "OpenID přihlášení" +msgid "Create an account" +msgstr "Vytvořit nový účet" -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "Odstranit OpenID" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "" -#: actions/othersettings.php:60 +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Nápověda" + +#: lib/action.php:456 #, fuzzy -msgid "Other Settings" -msgstr "Nastavení" +msgid "Help me!" +msgstr "Nápověda" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" +#: lib/action.php:459 +msgid "Search" +msgstr "Hledat" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/othersettings.php:112 +#: lib/action.php:480 #, fuzzy -msgid "Service" -msgstr "Hledat" +msgid "Site notice" +msgstr "Nové sdělení" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 +#: lib/action.php:612 #, fuzzy -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" +msgid "Page notice" +msgstr "Nové sdělení" -#: actions/passwordsettings.php:69 +#: lib/action.php:714 #, fuzzy -msgid "Change your password." -msgstr "Změnit heslo" +msgid "Secondary site navigation" +msgstr "Odběry" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -#, fuzzy -msgid "Password change" -msgstr "Heslo uloženo" +#: lib/action.php:721 +msgid "About" +msgstr "O nás" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "Není platnou mailovou adresou." +#: lib/action.php:723 +msgid "FAQ" +msgstr "FAQ" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Soukromí" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy -msgid "Profile information" -msgstr "Neznámý profil" +#: lib/action.php:732 +msgid "Source" +msgstr "Zdroj" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" +#: lib/action.php:734 +msgid "Contact" +msgstr "Kontakt" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Neplatná adresa '%s'" - -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "Nelze uložit profil" - -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Veřejné zprávy" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/public.php:220 +#: lib/action.php:767 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." +"broughtby%%](%%site.broughtbyurl%%). " -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "Veřejný Stream Feed" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** je služba mikroblogů." -#: actions/publictagcloud.php:63 +#: lib/action.php:771 #, php-format -msgid "These are most popular recent tags on %s " +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Běží na [StatusNet](http://status.net/) mikroblogovací program, verze %s, " +"dostupná pod [GNU Affero General Public License](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)." -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Nové sdělení" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." +#: lib/action.php:799 +msgid "license." +msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/register.php:368 +#: lib/action.php:1062 #, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" +msgid "After" +msgstr "« Novější" -#: actions/register.php:382 actions/register.php:386 +#: lib/action.php:1070 #, fuzzy -msgid "Used only for updates, announcements, " -msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla." +msgid "Before" +msgstr "Starší »" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "Popiš sebe a své zájmy ve 140 znacích" +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "Místo. Město, stát." +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" -#: actions/register.php:432 +#: lib/attachmentlist.php:278 #, fuzzy -msgid " except this private data: password, " +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -"až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "Odpovědi na %s" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "" -#: actions/showfavorites.php:79 +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: lib/command.php:88 #, php-format -msgid "%s favorite notices, page %d" +msgid "Could not find a user with nickname %s" +msgstr "Nelze aktualizovat uživatele" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: lib/command.php:99 #, php-format -msgid "%s group" +msgid "Nudge sent to %s" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: lib/command.php:126 #, php-format -msgid "%s group, page %d" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy -msgid "Group profile" -msgstr "Žádné takové oznámení." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -#, fuzzy -msgid "Note" -msgstr "Sdělení" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "Feed sdělení pro %s" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -#, fuzzy -msgid "Members" -msgstr "Členem od" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: lib/command.php:327 +#, php-format +msgid "About: %s" msgstr "" -#: actions/showgroup.php:378 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: lib/command.php:431 #, php-format -msgid "%s, page %d" +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Profil" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Odpovědi na %s" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 +#: lib/command.php:441 #, fuzzy -msgid "User profile" -msgstr "Uživatel nemá profil." +msgid "Error saving notice." +msgstr "Problém při ukládání sdělení" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "Odběratelé" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" - -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Zasílat oznámení pomocí Jabber/GTalk" - -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Tento potvrzující kód vám nepatří!" - -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/subedit.php:70 -#, fuzzy -msgid "You are not subscribed to that profile." -msgstr "Neodeslal jste nám profil" - -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "Nelze vytvořit odebírat" - -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "Žádný takový uživatel." - -#: actions/subscribe.php:69 -#, fuzzy -msgid "Subscribed" -msgstr "Odebírat" - -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "Odběratelé" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" - -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" - -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Všechny odběry" - -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "Všechny odběry" - -#: actions/subscriptions.php:65 -#, fuzzy -msgid "These are the people whose notices " -msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" - -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "Žádné Jabber ID." - -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#: lib/command.php:597 #, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Mikroblog od %s" +msgid "Could not create login token for %s" +msgstr "Nelze vytvořit OpenID z: %s" -#: actions/tag.php:66 actions/tag.php:73 +#: lib/command.php:602 #, php-format -msgid "Messages tagged \"%s\", most recent first" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/tagother.php:33 -#, fuzzy -msgid "Not logged in" -msgstr "Nepřihlášen" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: actions/tagother.php:39 +#: lib/common.php:191 #, fuzzy -msgid "No id argument." -msgstr "Žádný takový dokument." +msgid "No configuration file found. " +msgstr "Žádný potvrzující kód." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy -msgid "Could not save tags." -msgstr "Nelze uložin informace o obrázku" - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/tagrss.php:35 -#, fuzzy -msgid "No such tag." -msgstr "Žádné takové oznámení." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "Mikroblog od %s" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 +#: lib/designsettings.php:105 #, fuzzy -msgid "Not found." -msgstr "Žádný požadavek nebyl nalezen!" +msgid "Upload file" +msgstr "Upload" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy -msgid "Twitter password" -msgstr "Nové heslo" - -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "Nelze smazat potvrzení emailu" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 +#: lib/designsettings.php:170 #, fuzzy -msgid "Error removing the block." -msgstr "Chyba při ukládaní uživatele" +msgid "Change colours" +msgstr "Změnit heslo" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "Nebylo vráceno žádné URL profilu od servu." +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +#: lib/designsettings.php:191 #, fuzzy -msgid "No profile with that id." -msgstr "Vzdálený profil s nesouhlasícím profilem" +msgid "Content" +msgstr "Připojit" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +#: lib/designsettings.php:204 #, fuzzy -msgid "Unsubscribed" -msgstr "Odhlásit" - -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" +msgid "Sidebar" +msgstr "Hledat" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 +#: lib/designsettings.php:230 #, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "Problém při ukládání sdělení" +msgid "Links" +msgstr "Přihlásit" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "Nahrávání obrázku selhalo." +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Account" -msgstr "O nás" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Vytvořit nový účet" - -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "Žádné takové OpenID" - -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Nápověda" - -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "Nové sdělení" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Nové sdělení" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy -msgid "Secondary site navigation" -msgstr "Odběry" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" +msgid "Favor this notice" +msgstr "Žádné takové oznámení." -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "Žádný takový uživatel." - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "Vytvořit nový účet" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "Veřejné" - -#: lib/favorform.php:114 lib/favorform.php:140 -#, fuzzy -msgid "Favor this notice" -msgstr "Žádné takové oznámení." - -#: lib/feedlist.php:64 -msgid "Export data" +#: lib/feed.php:91 +msgid "FOAF" msgstr "" #: lib/galleryaction.php:121 @@ -5290,67 +3867,87 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + #: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Odběry" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Popiš sebe a své zájmy ve 140 znacích" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Místo. Město, stát." +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Žádný takový uživatel." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Žádný takový uživatel." -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Odhlásit" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "" @@ -5365,10 +3962,44 @@ msgid "Tags in %s group's notices" msgstr "" #: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " +msgid "This page is not available in a media type you accept" msgstr "Tato stránka není k dispozici v typu média která přijímáte." +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Částečné náhrání." + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Chyba systému při nahrávání souboru" + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Není obrázkem, nebo jde o poškozený soubor." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Nepodporovaný formát obrázku." + +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Žádné takové oznámení." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Nové sdělení" + #: lib/joinform.php:114 #, fuzzy msgid "Join" @@ -5379,2252 +4010,632 @@ msgstr "Přihlásit" msgid "Leave" msgstr "Uložit" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Neplatné jméno nebo heslo" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Vytvořit nový účet" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/mailbox.php:139 +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/mail.php:175 +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " od " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Potvrzení emailové adresy" + +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1 naslouchá vašim sdělením na %s. \n" +"\n" +"\t%3\n" +"\n" +"S úctou váš,\n" +"%4$s.\n" + +#: lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Umístění %s\n" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Moje stránky: %s\n" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 #, php-format -msgid "You've been nudged by %s" +msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:465 +#: lib/mail.php:288 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1 od teď naslouchá tvým sdělením v %2" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: lib/mail.php:412 +#, php-format +msgid "%s status" msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "Nové sdělení" - -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "6 a více znaků" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy -msgid "in reply to" -msgstr "odpověd na ..." +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -#, fuzzy -msgid "Reply" -msgstr "odpověď" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1 od teď naslouchá tvým sdělením v %2" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Veřejné" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy -msgid "Popular" -msgstr "Hledání lidí" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" -#: lib/searchgroupnav.php:82 +#: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy -msgid "Notice" -msgstr "Sdělení" +msgid "Could not determine file's mime-type!" +msgstr "Nelze aktualizovat uživatele" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "Vzdálený odběr" - -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "Vzdálený odběr" - -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: lib/subs.php:53 lib/subs.php:52 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "User has blocked you." -msgstr "Uživatel nemá profil." +msgid "Available characters" +msgstr "6 a více znaků" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 +#: lib/noticeform.php:145 #, fuzzy -msgid "Subscribe to this user" -msgstr "Odběr autorizován" +msgid "Send a notice" +msgstr "Nové sdělení" -#: lib/tagcloudsection.php:56 -msgid "None" +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Co se děje %s?" + +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 +#: lib/noticelist.php:478 #, fuzzy -msgid "Unblock this user" -msgstr "Žádný takový uživatel." +msgid "in context" +msgstr "Žádný obsah!" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" +#: lib/noticelist.php:498 +msgid "Reply to this notice" msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: lib/noticelist.php:499 +#, fuzzy +msgid "Reply" +msgstr "odpověď" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed přítel uživatele: %s" +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed přítel uživatele: %s" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed přítel uživatele: %s" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Chyba při vkládání nového profilu" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s a přátelé" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Chyba při kládání obrázku" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Chyba při vkládaní vzdáleného profilu" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/oauthstore.php:345 #, fuzzy -msgid "Avatar deleted." -msgstr "Obrázek nahrán" +msgid "Duplicate notice" +msgstr "Nové sdělení" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Nelze vložit odebírání" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Osobní" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Odpovědi" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +msgid "Tags in %s's notices" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Odběry" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Mikroblog od %s" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Všechny odběry" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " -"Minimální délka musí být alespoň 3 znaky" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Odběratelé" -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Odběratelé" + +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Členem od" + +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Hledej \"%s\" ve Streamu" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Veřejné" -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Veřejný Stream Feed" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Veřejný Stream Feed" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: lib/publicgroupnav.php:92 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Veřejný Stream Feed" +msgid "Popular" +msgstr "Hledání lidí" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Hledat" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Hledat" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " -"číslo." -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 +#: lib/searchgroupnav.php:82 #, fuzzy -msgid "Created" -msgstr "Vytvořit" +msgid "Notice" +msgstr "Sdělení" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Žádné takové oznámení." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Profil" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Feed sdělení pro %s" +#: lib/section.php:106 +msgid "More..." +msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: lib/subgroupnav.php:83 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Feed sdělení pro %s" +msgid "People %s subscribes to" +msgstr "Vzdálený odběr" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: lib/subgroupnav.php:91 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Feed sdělení pro %s" +msgid "People subscribed to %s" +msgstr "Vzdálený odběr" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: lib/subgroupnav.php:99 #, php-format -msgid "FOAF for %s" +msgid "Groups %s is a member of" msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Obrázek" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Nastavené Profilu" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 +#: lib/subs.php:52 #, fuzzy -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 "Tento potvrzující kód vám nepatří!" +msgid "User has blocked you." +msgstr "Uživatel nemá profil." -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Žádný takový uživatel." - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Nelze smazat potvrzení emailu" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Nepřihlášen!" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " -"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " -"klikněte na \"Zrušit\"" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Nelze smazat odebírání" -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: lib/tagcloudsection.php:56 +msgid "None" msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Odhlásit" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "Obrázek" -#: lib/dberroraction.php:60 -msgid "Database error" +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "" -"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " -"účet s OpenID." +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "Nastavené Profilu" -#: lib/feed.php:85 -msgid "RSS 1.0" +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "před pár sekundami" -#: lib/imagefile.php:75 +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "asi před minutou" + +#: lib/util.php:848 #, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" +msgid "about %d minutes ago" +msgstr "asi před %d minutami" + +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "asi před hodinou" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/util.php:852 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +msgid "about %d hours ago" +msgstr "asi před %d hodinami" -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1 naslouchá vašim sdělením na %s. \n" -"\n" -"\t%3\n" -"\n" -"S úctou váš,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Hledat" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Žádný takový dokument." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Nelze přesměrovat na server: %s" - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Žádný takový uživatel." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Uživatel nemá profil." - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s a přátelé" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Žádný takový uživatel." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Umístění" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Žádné takové oznámení." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Neplatná adresa '%s'" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Přezdívku již někdo používá. Zkuste jinou" - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Nelze uložin informace o obrázku" - -#: 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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Nové sdělení" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Nové sdělení" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Není platnou přezdívkou." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Uživatel nemá profil." - -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Neodeslal jste nám profil" - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Žádný takový uživatel." - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Nelze aktualizovat uživatele" - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Nastavení uloženo" - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Žádné výsledky." - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "Uživatel nemá profil." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Nelze uložit profil" - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) vám dovoluje použít stejný účet na více stránkách. " -"Zde může spravovat vaše OpenID" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Nastavené Profilu" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na vaší " -"emailovou adresu uloženou u vašeho účtu." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Byl jste identifikován. Zadejte nové heslo" - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Žádost o obnovu hesla" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Chyba v ověřovacím kódu" - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Odběr autorizován" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Žádné takové oznámení." - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Feed sdělení pro %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Feed sdělení pro %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Feed sdělení pro %s" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Žádný takový uživatel." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Feed sdělení pro %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1 od teď naslouchá tvým sdělením v %2" - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Feed sdělení pro %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Feed sdělení pro %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Nelze aktualizovat uživatele" - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Nelze aktualizovat uživatele" - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1 statusů na %2" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Mikroblog od %s" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Všechny odběry" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Nastavené Profilu" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Neodeslal jste nám profil" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Problém při ukládání sdělení" - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Uživatel nemá profil." - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Profil" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Upload" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Změnit heslo" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Připojit" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Hledat" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Přihlásit" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Žádný takový uživatel." - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Žádný takový uživatel." - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Žádný obsah!" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Hledat" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Stránka není platnou URL." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Žádné takové oznámení." - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Nelze přesměrovat na server: %s" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Již jste přihlášen" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Nelze přesměrovat na server: %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Neodeslal jste nám profil" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Nelze vytvořit OpenID z: %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Profil" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Neodeslal jste nám profil" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Obrázek nahrán" - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Nepodporovaný formát obrázku." - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Mikroblog od %s" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Úživatel, kterému nasloucháte neexistuje." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Neautorizován." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Neznámá verze OMB protokolu." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Žádné takové oznámení." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Žádné takové oznámení." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Mikroblog od %s" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Tato stránka není k dispozici v typu média která přijímáte." - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " -"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" -"action.openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Mikroblog od %s" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Všechny položky obsahující \"%s\"" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Připojit" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Popiš sebe a své zájmy ve 140 znacích" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Popiš sebe a své zájmy ve 140 znacích" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Není platnou adresou profilu (není YADIS dokumentem)." - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Nelze získat řetězec požadavku." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Feed sdělení pro %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Feed sdělení pro %s" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Feed sdělení pro %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Odpovědi na %s" - -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed přítel uživatele: %s" - -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed přítel uživatele: %s" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed přítel uživatele: %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "Feed sdělení pro %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Sdělení" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Tato stránka není k dispozici v typu média která přijímáte." - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Feed sdělení pro %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " -"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " -"klikněte na \"Zrušit\"" - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " -"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " -"je:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " -"nápovědě jak správně postupovat při zamítání odběru" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Nelze přečíst adresu obrázku '%s'" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Neplatný typ obrázku pro '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Nelze přesměrovat na server: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Nové sdělení" - -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "Nelze aktualizovat uživatele" - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "asi přede dnem" -#: lib/command.php:99 +#: lib/util.php:856 #, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +msgid "about %d days ago" +msgstr "před %d dny" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "asi před měsícem" -#: lib/command.php:431 +#: lib/util.php:860 #, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Odpovědi na %s" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Problém při ukládání sdělení" - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Žádný potvrzující kód." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Popiš sebe a své zájmy ve 140 znacích" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Popiš sebe a své zájmy ve 140 znacích" +msgid "about %d months ago" +msgstr "asi před %d mesíci" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Nové sdělení" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "asi před rokem" -#: lib/mail.php:554 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%1 od teď naslouchá tvým sdělením v %2" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "%s is not a valid color!" +msgstr "Stránka není platnou URL." -#: lib/mail.php:611 +#: lib/webcolor.php:123 #, php-format -msgid "%s (@%s) sent a notice to your attention" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " od " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." msgstr "" -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Nelze aktualizovat uživatele" - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Nové sdělení" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Neplatný obsah sdělení" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Nelze vytvořit OpenID z: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/de/LC_MESSAGES/statusnet.mo b/locale/de/LC_MESSAGES/statusnet.mo index 00856c2f7..fa4ddeb8c 100644 Binary files a/locale/de/LC_MESSAGES/statusnet.mo and b/locale/de/LC_MESSAGES/statusnet.mo differ diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 09a14daea..d6c1f3fdb 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -6,4612 +6,1745 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:13+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:57:55+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Suche im Stream nach „%s“" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " -"Telefonnummer." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Tag nicht vorhanden." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "von" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Unbekannter Benutzer." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s Antworten an %2$s" +msgid "%s and friends, page %d" +msgstr "%s und Freunde, Seite %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen." +msgid "%s and friends" +msgstr "%s und Freunde" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s hat Dich eingeladen, auch bei %2$s mitzumachen. (%3$s).\n" -"\n" -"%2$s ist ein Microblogging-Service der Dich über Deine Freunde auf dem " -"Laufenden hält und Deine Freunde über Dich informiert. \n" -"\n" -"Du kannst Neuigkeiten über Dich und Deine Gedanken verbreiten. Lerne neue " -"Leute mit ähnlichen Interessen kennen. \n" -"\n" -"%1$s sagte:\n" -"\n" -"%4$s\n" -"\n" -"Du kannst die Profilseite von %1$s bei %2$s hier finden:\n" -"\n" -"%5$s\n" -"\n" -"Wenn Du den Service ausprobieren möchtest klicke den Link unten an, um die " -"Einladung anzunehmen.\n" -"\n" -"%6$s\n" -"\n" -"Wenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine " -"Zeit\n" -"\n" -"Schöne Grüße von %2$s\n" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed der Freunde von %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s hat deine Nachrichten auf %2$s abonniert." +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed der Freunde von %s" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed der Freunde von %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s hat deine Nachrichten auf %2$s abonniert.\n" -"\n" -"\t%3$s\n" -"\n" -"Gruß,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "Nachrichten von %1$, die auf Nachrichten von %2$ / %3$ antworten." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s Status auf %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s öffentlicher Stream" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s und Freunde" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "%s öffentliche Zeitleiste" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s Status" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API-Methode nicht gefunden!" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s Zeitleiste" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Diese Methode benötigt ein POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "%s Nachrichten von allen!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer " -"Mailadresse erhalten.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" -"site.broughtbyurl%%)." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Benutzer hat kein Profil." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** ist ein Microbloggingdienst." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Blockieren des Benutzers fehlgeschlagen." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -"Lizenz. Die ursprünglichen Autoren sollten mit ihrem vollen Namen oder " -"Nutzernamen genannt werden." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Freigeben des Benutzers fehlgeschlagen." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Fehlender Nachrichtentext!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." msgstr "" -"1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. " -"Pflicht." +"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 oder mehr Zeichen" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Empfänger nicht gefunden." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 oder mehr Zeichen, und nicht vergessen!" +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 oder mehr Buchstaben. Pflicht." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direkte Nachricht an %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Ein Bestätigungscode wurde an die IM Adresse geschickt, die du hinzugefügt " -"hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." +msgid "All the direct messages sent from %s" +msgstr "Alle von %s gesendeten direkten Nachrichten" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Ein Bestätigungscode wurde an die angegebene E-Mail Adresse geschickt. " -"Überprüfen Sie Ihren Posteingang (auch den Spamordner!) für den Code und " -"Anweisungen, wie dieser benutzt wird." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Direkte Nachricht an %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " -"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " -"den Code und die Anweisungen, um ihn zu benutzen." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Alle an %s gesendeten direkten Nachrichten" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API-Methode nicht gefunden!" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Keine Nachricht mit dieser ID gefunden." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API-Methode im Aufbau." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Diese Nachricht ist bereits ein Favorit!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Über" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Konnte keinen Favoriten erstellen." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Akzeptieren" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Diese Nachricht ist kein Favorit!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Hinzufügen" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Konnte Favoriten nicht löschen." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "OpenID hinzufügen" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "OpenIDs hinzufügen oder löschen" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Kann Nutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -"Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro " -"Zeile)" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Alle Abonnements" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden." -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Alle Aktualisierungen für %s" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Konnte öffentlichen Stream nicht abrufen." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Konnte keine Statusmeldungen finden." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Bereits angemeldet." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Konnte Gruppe nicht erstellen." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Bereits abonniert!" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Konnte keinen Favoriten erstellen." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Sind sie sicher, dass sie diese Nachricht löschen wollen?" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Konnte Gruppenmitgliedschaft nicht setzen." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Abonnement bestätigen" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " +"Leerzeichen sind nicht erlaubt." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Ungültiger Nutzername." + +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." msgstr "" -"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" -"Menschen)" +"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Ihr vollständiger Name ist zu lang (maximal 255 Zeichen)." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Avatar aktualisiert." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Too many aliases! Maximum %d." msgstr "" -"Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung " -"sollte in deinem Jabber/GTalk Konto eingehen. (Hast du %s zu deiner " -"Freundeliste hinzugefügt?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ungültiger Tag: \"%s\"" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang " -"(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Warte auf die Bestätigung dieser Telefonnummer." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du bist bereits Mitglied dieser Gruppe" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Ältere" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Biografie" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du bist kein Mitglied dieser Gruppe." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Die Nachricht konnte nicht gelöscht werden." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Konnte Avatar-URL nicht öffnen „%s“" +msgid "%s groups" +msgstr "%s Gruppen" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Konnte neues Passwort nicht speichern" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Gruppenaktionen" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Abbrechen" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s Gruppen" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Konnte kein OpenID consumer Objekt erzeugen." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Gruppen zu denen %s gehört" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Konnte diese Jabber ID nicht normalisieren" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Diese Methode benötigt ein POST oder DELETE." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Ändern" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar aktualisiert." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Ändere die E-Mail Verarbeitung" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Keine Nachricht mit dieser ID gefunden." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Passwort ändern" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, 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 140 Zeichen beschränkt." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Ändere dein Passwort" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Nicht gefunden" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Ändern der Profileinstellungen" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Bestätigen" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Bildformat wird nicht unterstützt." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Adresse bestätigen" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favoriten von %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Bestätigung abgebrochen." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s Aktualisieurng in den Favoriten von %s / %s." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Bestätigungscode" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s Zeitleiste" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Bestätigungscode nicht gefunden." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Aktualisierungen von %1$s auf %2$s!" + +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s Antworten an %2$s" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Hallo %s, herzlich willkommen auf %%%%site.name%%%%.\n" -"\n" -"Danke für deine Anmeldung, wir hoffen das dir der Service gefällt.\n" -"\n" -"Als nächstes möchtest du eventuell …\n" -"\n" -"* zu [deinem Profil gehen](%s) und deine erste Nachricht schreiben\n" -"* deine [Jabber/GTalk Adresse](%%%%action.imsettings%%%%) eintragen damit du " -"Nachrichten über diese Dienste schreiben kannst.\n" -"* [Leute suchen](%%%%action.peoplesearch%%%%) die du kennst oder die " -"gleichen Interessen wie du haben.\n" -"* deine [Profildaten ergänzen](%%%%action.profilesettings%%%%) um mehr über " -"dich zu veröffentlichen\n" -"* die [Dokumentation](%%%%doc.help%%%%) lesen um mehr über weitere Features " -"zu erfahren" - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Verbinden" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Verbinde bestehendes Konto" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Kontakt" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "Nachrichten von %1$, die auf Nachrichten von %2$ / %3$ antworten." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Konnte OpenID-Formular nicht erstellen: %s" +msgid "%s public timeline" +msgstr "%s öffentliche Zeitleiste" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Kann Nutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" +msgid "%s updates from everyone!" +msgstr "%s Nachrichten von allen!" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Konnte nicht zum Server umleiten: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Konnte Avatarinfo nicht speichern" +msgid "Notices tagged with %s" +msgstr "Nachrichten, die mit %s getagt sind" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Neue Profildaten konnten nicht gespeichert werden." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Updates von %1$s auf %2$s!" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Die Gegenseite konnte Dich nicht abonnieren." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Nicht gefunden." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Konnte nicht abbonieren." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Unbekanntes Dokument." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Kein Nutzername." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Keine Größe." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Konnte E-Mail-Bestätigung nicht löschen." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Ungültige Größe." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Konnte Abonnement nicht löschen." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Konnte keine Statusmeldungen finden." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kannst dein persönliches Avatar hochladen." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Konnte keinen Anfrage-Token bekommen." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Benutzer ohne passendes Profil" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Konnte keinen Bestätigungscode einfügen." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Avatar-Einstellungen" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Konnte neues Abonnement nicht eintragen." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Original" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Konnte Profil nicht speichern." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Vorschau" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Autosubscribe konnte nicht aktiviert werden." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#, fuzzy +msgid "Delete" +msgstr "Löschen" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Konnte Nutzereintrag nicht schreiben" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Hochladen" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Konnte Benutzerdaten nicht aktualisieren." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Zuschneiden" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Erstellen" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Neuen Nutzer mit diesem Nicknamen erstellen." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Unerwartete Formulareingabe." -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Neues Konto anlegen" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "" +"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Erzeugen eines Kontos zu einer OpenID, die schon einem Nutzer gehört." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Daten verloren." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Avatar aktualisiert." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Aktuelle für den SMS-Dienst bestätigte Telefon-Nummer." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Aktualisierung des Avatars fehlgeschlagen." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Aktuelle bestätigte E-Mail Adresse" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar aktualisiert." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Momentan" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Kein Benutzername" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Keine derartige Gruppe" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Datenbankfehler beim Einfügen der Antwort: %s" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Benutzerprofil" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Notiz löschen" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s und Freunde, Seite %d" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Beschreibe dich selbst in 140 Zeichen" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Liste der Benutzer in dieser Gruppe." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "E-Mail" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Freigeben des Benutzers fehlgeschlagen." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "E-Mail-Adresse" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Freigeben" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "E-Mail-Einstellungen" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "Benutzer freigeben" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Diese E-Mail-Adresse existiert bereits." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Nicht angemeldet." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Bestätigung der E-Mail-Adresse" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Kein Profil angegeben." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "E-Mail-Adresse, beispielsweise „Benutzername@example.org“" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Kein Benutzer-Profil mit dieser ID." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "E-Mail-Adressen" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Benutzer blockieren" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Gib einen Spitznamen oder eine E-Mail-Adresse ein." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Nein" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Fehler beim Autorisieren des Tokens" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Liste der Benutzer in dieser Gruppe." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Fehler beim Verbinden des Nutzers mit der OpenID." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Ja" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Fehler beim Verbinden des Nutzers." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Liste der Benutzer in dieser Gruppe." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Fehler beim Einfügen des Avatars" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Du hast diesen Benutzer bereits blockiert." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Neues Profil konnte nicht angelegt werden" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Konnte Blockierungsdaten nicht speichern." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Fehler beim Einfügen des entfernten Profils" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Fehler beim Speichern der Adressbestätigung." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Fehler beim Speichern des entfernten Profils" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Fehler bei Speichern des Profils." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Fehler beim Speichern des Nutzers." +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Fehler beim Speichern des Nutzers, ungültig." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Kein Bestätigungs-Code." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Fehler bei den Nutzereinstellungen." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Bestätigungscode nicht gefunden." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Fehler beim Aktualisieren des Profils" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Dieser Bestätigungscode ist nicht für dich!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Fehler beim Aktualisieren des entfernten Profils" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Nicht erkannter Adresstyp %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Fehler beim Bestätigungscode." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Diese Adresse wurde bereits bestätigt." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Nick wird bereits verwendet" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Konnte Benutzerdaten nicht aktualisieren." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "FAQ" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Konnte E-Mail-Bestätigung nicht löschen." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Aktualisierung des Avatars fehlgeschlagen." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Adresse bestätigen" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Feed der Freunde von %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Die Adresse „%s“\" wurde für dein Konto bestätigt." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed der Antworten an %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bestätigungscode" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed für den Tag %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Nachrichten" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Durchsuche den Inhalt der Notices" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Unbekannte Nachricht." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Finde Leute auf dieser Seite" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Die Nachricht konnte nicht gelöscht werden." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " -"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Vollständiger Name" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Ihr vollständiger Name ist zu lang (maximal 255 Zeichen)." - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Hilfe" +"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " +"ist irreversibel." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Startseite" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Notiz löschen" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Homepage" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Sind sie sicher, dass sie diese Nachricht löschen wollen?" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "" -"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Die Nachricht konnte nicht gelöscht werden." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Ich möchte Einträge per E-Mail veröffentlichen." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy +msgid "Delete this notice" +msgstr "Notiz löschen" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/deletenotice.php:157 +#, fuzzy +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/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM Adresse" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Diese Nachricht ist kein Favorit!" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM Einstellungen" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Zu Favoriten hinzufügen" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Wenn du schon ein Konto hast, dann melde dich mit Nutzernamen und Passwort " -"an, um deine OpenID zu verknüpfen." +#: actions/doc.php:69 +msgid "No such document." +msgstr "Unbekanntes Dokument." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier " -"ein und klicke auf „Hinzufügen“." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Gruppe %s bearbeiten" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" -"Mail-Adresse, die in deinem Benutzerkonto eingetragen ist, ein neues " -"zusenden lassen." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Eingehende E-Mail" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Eingehende E-Mail-Adresse entfernt" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Altes Passwort falsch" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Falscher Benutzername oder Passwort." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Konnte Gruppe nicht aktualisieren." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Anweisungen für die Wiederherstellung deines Passworts wurden an deine " -"hinterlegte E-Mail-Adresse geschickt." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Einstellungen gespeichert." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Ungültiger Avatar-URL „%s“" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "E-Mail-Einstellungen" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" -msgstr "Ungültige E-Mail-Adresse: %s" +msgid "Manage how you get email from %%site.name%%." +msgstr "Einstellen, wie und wann du E-Mails von %%site.name%% bekommst." -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Ungültige Homepage „%s“" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adresse" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Ungültige Lizenz-URL „%s“" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Aktuelle bestätigte E-Mail Adresse" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Ungültiger Nachrichteninhalt" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Entfernen" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Ungülte Nachrichten-URI" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang " +"(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Ungültige Nachrichten-URL" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Abbrechen" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Ungültige Profil-URL „%s“." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "E-Mail-Adresse" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Ungültige Profil-URL (falsches Format)" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "E-Mail-Adresse, beispielsweise „Benutzername@example.org“" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Server antwortete mit ungültiger Profil-URL." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Hinzufügen" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Ungültige Größe." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Eingehende E-Mail" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Benutzername oder Passwort falsch." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Schicke ein E-Mail an diese Adresse um eine Nachricht zu posten." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Einladung(en) verschickt" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" +"Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch " +"deaktiviert." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Einladung(en) an folgende Personen geschickt:" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Neu" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Einladen" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Einstellungen" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Lade neue Leute ein" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Informiere mich über neues Abonnements per E-Mail." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -" Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) " -"(Version %s) betrieben, die unter der [GNU Affero General Public License]" -"(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." +"Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" +"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -"Jabber- oder GoogleTalk-Adresse, z.B. \"UserName@example.org\". Aber " -"versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM " -"Programm oder GTalk aufgenommen hast." +"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Sprache" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Ich möchte Einträge per E-Mail veröffentlichen." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Aufenthaltsort" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "MicroID für meine E-Mail-Adresse veröffentlichen." -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Speichern" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Einloggen" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Einstellungen gesichert." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Mit [OpenID](%%doc.openid%%)-Konto anmelden." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Keine E-Mail-Adresse." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " -"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " -"[OpenID](%%action.openidlogin%%)." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Abmelden" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Längerer Name, bevorzugt dein „echter“ Name" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Dies ist bereits deine E-Mail-Adresse." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Passwort vergessen?" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Konnte keinen Bestätigungscode einfügen." + +#: actions/emailsettings.php:358 +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 "" -"Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch " -"deaktiviert." +"Ein Bestätigungscode wurde an die angegebene E-Mail Adresse geschickt. " +"Überprüfen Sie Ihren Posteingang (auch den Spamordner!) für den Code und " +"Anweisungen, wie dieser benutzt wird." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Einstellen, wie und wann du E-Mails von %%site.name%% bekommst." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Mitglied seit" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Das ist die falsche IM Adresse." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Microblog von %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Bestätigung abgebrochen." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-" -"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %" -"s." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Dies ist nicht deine E-Mail-Adresse." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Meine Texte und Daten sind verfügbar unter" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Die Adresse wurde entfernt." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Neu" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Keine Eingangs-E-Mail-Adresse." -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Neue E-Mail-Adresse um auf %s zu schreiben" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Konnte Nutzereintrag nicht schreiben" + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Eingehende E-Mail-Adresse entfernt" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Neuer Nutzername" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Neue Nachricht" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Neues Passwort" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Beliebte Nachrichten" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt angemeldet." +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Beliebte Nachrichten, Seite %d" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Nutzername" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Die momentan beliebtesten Nachrichten auf dieser Seite." -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: 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 "" -"Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " -"Leerzeichen sind nicht erlaubt." -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Nutzername nicht erlaubt." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Nutzername des Nutzers, dem du folgen möchtest" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "%ss favorisierte Nachrichten" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Nutzername oder E-Mail" +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Aktualisierungen von %1$s auf %2$s!" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Nein" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Diese Nachricht ist bereits ein Favorit!" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Keine Jabber-ID" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Aus Favoriten entfernen" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Keine Bestätigungsanfrage!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Top-Benutzer" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Kein Netzanbieter ausgewählt." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Top-Benutzer, Seite %d" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Kein Code eingegeben" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Eine Auswahl der tollen Benutzer auf %s" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Kein Bestätigungs-Code." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Neue Nachricht" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Kein Inhalt!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Neue Nachricht" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Keine E-Mail-Adresse." +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Keine ID." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Keine Eingangs-E-Mail-Adresse." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Der entferne Server hat keinen Nutzernamen geliefert." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Unerwartete Antwort!" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Kein Nutzername." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Aufgeführte Nutzer existiert nicht." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Du kannst ein lokales Abonnement erstellen!" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Keine Telefonnummer." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Der entfernte Server hat keine Profil-URL geliefert." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Nicht autorisiert." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Der Nutzer hat keine registrierte E-Mail-Adresse." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Keine Anfrage gefunden!" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Unbekannte OMB-Protokollversion." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Keine Ergebnisse" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Fehler beim Aktualisieren des entfernten Profils" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Keine Größe." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Keine derartige Gruppe." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Keine Nachricht mit dieser ID gefunden." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Unbekannte Nachricht." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Keine Nachricht mit dieser ID gefunden." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Daten verloren." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Diese OpenID ist nicht bekannt." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Kein Profil angegeben." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Unbekanntes Dokument." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Unbekannte Nachricht." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Dieser Benutzer hat dich blockiert." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Unbekannter Wiederherstellungscode." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du bist kein Mitglied dieser Gruppe." -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Unbekanntes Abonnement" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Unbekannter Benutzer." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Benutzer blockieren" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Niemand anzuzeigen!" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Kein Wiederherstellungscode." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Keine ID" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Kein registrierter Nutzer." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Kein unterstütztes Datenformat." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Gruppen" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Ungültige Jabber-ID" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Ungültige OpenID." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Konnte Benutzerdaten nicht aktualisieren." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Konnte Twitter Einstellungen nicht speichern!" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Ungültige E-Mail-Adresse." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synchronisationseinstellungen gespeichert." -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Ungültiger Nutzername." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Gruppen-Logo" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Ungültige Profil-URL (falsche Dienste)." +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Du kannst ein Logo für Deine Gruppe hochladen." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Ungültige Profil-URL (XRDS nicht definiert)." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "" +"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Logo aktualisiert." -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Kein Bild oder defekte Datei." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Aktualisierung des Logos fehlgeschlagen." -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Nicht autorisiert." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "%s Gruppen-Mitglieder" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Unerwartete Antwort!" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "%s Gruppen-Mitglieder, Seite %d" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Nicht gefunden" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Liste der Benutzer in dieser Gruppe." -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Nicht angemeldet." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +#, fuzzy +msgid "Admin" +msgstr "Admin" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Nicht abonniert!" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Blockieren" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Nachrichtensuche" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "Benutzer blockieren" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Feed der Nachrichten von %s" +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Nachricht hat kein Profil" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Nachrichten" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/grouprss.php:133 #, php-format -msgid "Notices tagged with %s" -msgstr "Nachrichten, die mit %s getagt sind" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Altes Passwort" +msgid "Updates from members of %1$s on %2$s!" +msgstr "Aktualisierungen von %1$s auf %2$s!" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID-Benutzerkonto erstellen" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID Automatische Übertragung" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID-Anmeldung" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID-URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID-Authentifizierung abgebrochen." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID-Authentifizierung fehlgeschlagen: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID-Fehler: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID entfernt." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID-Einstellungen" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" -"Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " -"anfügen." - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Unvollständiges Hochladen." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Passwort" +"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " +"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " +"mindestens 3 Zeichen bestehen." -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Passwort und seine Bestätigung stimmen nicht überein." +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Gruppen-Suche" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Passwort muss mehr als 6 Zeichen enthalten" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Keine Ergebnisse" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Wiederherstellung des Passworts angefordert" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Passwort gespeichert." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Passwörter stimmen nicht überein." +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Gruppen" -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Leute" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Gruppen, Seite %d" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Suche nach Nutzern" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Suche nach anderen Nutzern" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Eigene" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Private Nachricht" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Dieser Benutzer hat dich blockiert." -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Fehler beim Freigeben des Benutzers." + +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM Einstellungen" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:70 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." 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 " -"„Abbrechen“." - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk Status verändert." +"Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " +"senden. Stelle deine Adresse und Einstellungen unten ein." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Einstellungen" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Diese Seite liegt in nicht verfügbar in einem " -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Einstellungen gesichert." +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Bevorzugte Sprache" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung " +"sollte in deinem Jabber/GTalk Konto eingehen. (Hast du %s zu deiner " +"Freundeliste hinzugefügt?)" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Privatsphäre" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM Adresse" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Problem bei Speichern der Nachricht." +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber- oder GoogleTalk-Adresse, z.B. \"UserName@example.org\". Aber " +"versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM " +"Programm oder GTalk aufgenommen hast." -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profil" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Profil-URL" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk Status verändert." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Profil-Einstellungen" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" +"GTalk." -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Profil unbekannt" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen." -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Feed des öffentlichen Streams" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Keine Jabber-ID" -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Öffentliche Zeitleiste" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Konnte diese Jabber ID nicht normalisieren" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen." +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Ungültige Jabber-ID" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "MicroID für meine E-Mail-Adresse veröffentlichen." +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Diese JabberID hast du schon angegeben." -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Neueste Tags" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet." -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Wiederherstellung" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Ein Bestätigungscode wurde an die IM Adresse geschickt, die du hinzugefügt " +"hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Stelle Passwort wieder her" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Dies ist nicht deine JabberID." -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Wiederherstellungscode für unbekannten Nutzer." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Posteingang von %s - Seite %d" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registrieren" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Posteingang von %s" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Registrierung nicht gestattet" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten " +"enthält." -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Registrierung erfolgreich" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Ablehnen" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Anmeldedaten merken" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Ungültige E-Mail-Adresse: %s" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Entferntes Profil ohne ein passendes Profil" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Einladung(en) verschickt" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Entferntes Abonnement" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Lade neue Leute ein" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Entfernen" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Du hast diese Benutzer bereits abonniert:" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Entferne OpenID" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/invite.php:136 msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"These people are already users and you were automatically subscribed to them:" msgstr "" -"Wenn du deine einzige OpenID entfernst, kannst du dich nicht mehr anmelden! " -"Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu." +"Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch " +"abonniert." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Antworten" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Einladung(en) an folgende Personen geschickt:" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "Antworten an %s" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Du wirst benachrichtigt, wenn deine Einladungen angenommen wurden und sich " +"die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu " +"wachsen!" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Zurücksetzen" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen." -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Passwort zurücksetzen" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "E-Mail-Adressen" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" +"Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro " +"Zeile)" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS-Telefonnummer" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Private Nachricht" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS-Einstellungen" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS-Konfiguration" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Gleiches Passwort wie zuvor" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Speichern" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Suchen" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Stream-Feed suchen" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Dursuche den Inhalt der Nachrichten auf %%site.name%%. Trenne mehrere " -"Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 " -"Zeichen bestehen." - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " -"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " -"mindestens 3 Zeichen bestehen." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Wähle einen Netzanbieter" +"Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " +"anfügen." -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 msgid "Send" msgstr "Senden" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Schicke ein E-Mail an diese Adresse um eine Nachricht zu posten." - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Informiere mich über neues Abonnements per E-Mail." - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei " -"meinem Netzbetreiber entstehen können." - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" -"GTalk." - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Einstellungen" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Einstellungen gespeichert." - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Die populärsten Tags der letzten Woche" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Jemand anderes hat schon diese OpenID." - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Etwas eigenartiges ist passiert." - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Sorry, keinen eingehenden E-Mails gestattet." - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Sorry, das ist nicht deine Adresse für eingehende E-Mails." - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Quellcode" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistiken" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Gespeicherte OpenID nicht gefunden." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Abonnieren" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Abonnenten" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Abonnement autorisiert" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Abonnement abgelehnt" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Abonnements" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Systemfehler beim hochladen der Datei." - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Tags" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Text" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Volltextsuche" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Diese OpenID gehört dir nicht." - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Diese Adresse wurde bereits bestätigt." - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Dieser Bestätigungscode ist nicht für dich!" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer." - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Diese Datei ist zu groß." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Diese JabberID hast du schon angegeben." - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Dies ist bereits deine E-Mail-Adresse." - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Dies ist bereits deine Telefonnummer." - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Dies ist nicht deine JabberID." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Dies ist nicht deine E-Mail-Adresse." - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Dies ist nicht deine Telefonnummer." - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Das ist die falsche IM Adresse." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Die Bestätigungsnummer ist falsch." - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet." - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "" -"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" -"Das war zu lang. Die Länge einer Nachricht ist auf 255 Zeichen beschränkt." - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Die Adresse „%s“\" wurde für dein Konto bestätigt." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Die Adresse wurde entfernt." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " -"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " -"bestätigt werden. Dein Abonnement-Token ist:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " -"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " -"vollständig abgelehnt werden. Dein Abonnement-Token ist:" - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 +#: actions/invite.php:226 #, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Dies sind die Leute, die %ss Nachrichten lesen." - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Dies sind die Leute, die deine Nachrichten lesen." +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen." -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/invite.php:228 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Dies sind die Leute, deren Nachrichten %s liest." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Dies sind die Leute, deren Nachrichten du liest." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -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 " -"abonniert." - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Der Bestätigungscode ist zu alt. Bitte fange nochmal von vorne an." - -#: ../lib/openid.php:195 lib/openid.php:206 msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Dieses Formular sollte automatisch übermittelt werden. Wenn nicht, dann " -"klicke auf „Senden“, um zu deinem OpenID-Anbieter zu gelangen." - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Dies ist das erste Mal, dass du dich bei %s anmeldest. Deshalb müssen wir " -"deine OpenID mit einem lokalen Konto verbinden. Du kannst entweder ein neues " -"Konto erstellen oder mit einem vorhandenen Konto anmelden." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Diese Methode benötigt ein POST oder DELETE." - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Diese Methode benötigt ein POST." - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Zeitzone" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Keine Zeitzone ausgewählt." - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) oder " -"ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein Konto " -"auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib " -"deine Profil-URL unten an." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden." - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Unerwartete Formulareingabe." - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Unerwarteter Passwortreset." - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Unbekannter Befehl" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Unbekannte OMB-Protokollversion." - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Wenn nicht anders angegeben unterstehen die Inhalte dieser Site dem " -"Urheberrecht der Autoren und sind unter der" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Nicht erkannter Adresstyp %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Abbestellen" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Nicht unterstützte OMB-Version" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Bildformat wird nicht unterstützt." - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Aktualisierungen via SMS" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Aktualisierungen via Instant Messenger (IM)" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Aktualisierungen von %1$s auf %2$s!" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Hochladen" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Hier kannst du einen neuen „Avatar“ (Nutzerbild) hochladen. Du kannst das " -"Bild nach dem Hochladen nicht mehr verändern, also stell bitte sicher, dass " -"es halbwegs quadratisch ist. Es muss auch unter der Lizenz der Site zur " -"Verfügung gestellt werden. Nutze also ein Bild, das dir gehört und das du " -"auch weitergeben möchtest." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Neues Bild für dein Profil hochladen" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen." - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Wird nur für Updates, wichtige Mitteilungen und zur " -"Passwortwiederherstellung verwendet" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Aufgeführte Nutzer existiert nicht." - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Benutzer hat kein Profil." - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Benutzername" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Benutzer nicht gefunden." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "In welcher Zeitzone befinden Sie sich üblicherweise?" - -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Was ist los, %s?" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Wo du bist, beispielsweise „Stadt, Gebiet, Land“" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Falscher Bildtyp für „%s“" - -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Falsche Bildgröße bei „%s“" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Ja" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Diese OpenID hast du schon angegeben!" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " -"ist irreversibel." - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Du bist bereits angemeldet!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Du hast diese Benutzer bereits abonniert:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Der angebene Benutzer gehört nicht zu Deinem Freunde-Netzwerk" - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Hier kannst du dein Passwort ändern. Wähle ein Gutes!" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Du kannst ein neues Konto erstellen, um Nachrichten zu verschicken." - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Du kannst SMS per E-Mail empfangen von %%site.name%%." - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Du kannst eine OpenID aus deinem Konto entfernen, indem du auf „Entfernen“ " -"klickst." - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " -"senden. Stelle deine Adresse und Einstellungen unten ein." - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Du kannst dein Profil auf den neusten Stand bringen, damit andere Leute mehr " -"über dich erfahren können." - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Du kannst ein lokales Abonnement erstellen!" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -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." - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Dieses Profil hast du uns nicht geschickt" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" +"%1$s hat Dich eingeladen, auch bei %2$s mitzumachen. (%3$s).\n" "\n" -"Schicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n" +"%2$s ist ein Microblogging-Service der Dich über Deine Freunde auf dem " +"Laufenden hält und Deine Freunde über Dich informiert. \n" "\n" -"Weitere E-Mail-Anweisungen unter %3$s.\n" +"Du kannst Neuigkeiten über Dich und Deine Gedanken verbreiten. Lerne neue " +"Leute mit ähnlichen Interessen kennen. \n" "\n" -"Viele Grüße,\n" -"%4$s" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Du wirst benachrichtigt, wenn deine Einladungen angenommen wurden und sich " -"die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu " -"wachsen!" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein." - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Deine OpenID-URL" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Dein Benutzername oder E-Mail-Adresse auf diesem Server." - -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " -"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "vor wenigen Sekunden" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "vor %d Tagen" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "vor %d Stunden" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "vor %d Minuten" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "vor %d Monaten" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "vor einem Tag" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "vor einer Minute" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "vor einem Monat" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "vor einem Jahr" - -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "vor einer Stunde" - -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "löschen" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "als Antwort auf …" - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "antworten" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "Gleiches Passwort wie oben" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "Nicht unterstützter Dateityp" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "Früher" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Diese Nachricht ist kein Favorit!" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Konnte Favoriten nicht löschen." - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Zu Favoriten hinzufügen" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" -"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Diese Nachricht ist bereits ein Favorit!" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Konnte keinen Favoriten erstellen." - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Aus Favoriten entfernen" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "%ss Favoriten" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Feed von %ss Favoriten" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Posteingang von %s - Seite %d" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Posteingang von %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten " -"enthält." - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s hat dich zu %2$s (%3$s) eingeladen.\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "In Zukunft automatisch anmelden; " - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Aus Sicherheitsgründen, bitte erneut eingeben " - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Anmelden mit deinem Benutzernamen und Passwort. " - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" -"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Kein Empfänger angegeben." - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Du kannst diesem Benutzer keine Nachricht schicken." - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't 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/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Kein solcher Benutzer" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Neue Nachricht" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Nachricht ohne entsprechendes Profil" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden " - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Wenn du deinem Konto eine OpenID hinzufügen möchtest, " - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Das Entfernen deiner einzigen OpenID würde die Anmeldung unmöglich machen!" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Du kannst eine OpenID von deinem Konto entfernen " - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Postausgang von %s - Seite %d" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Postausgang von %s" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen. " - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Du kannst dein persönliches Profil hier aktualisieren " - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Benutzer ohne passendes Profil" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Dieser Bestätigungscode ist zu alt. " - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Keine Erinnerung mehr an dein" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Du wurdest identifiziert. Eingabe eines " - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Dein Benutzername auf diesem Server, " - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Anweisungen zur Passwort-Wiederherstellung " - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Neues Passwort erfolgreich gespeichert. " - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen." - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. Jetzt möchtest du " -"vielleicht …" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Du solltest jeden Moment eine E-Mail erhalten mit " - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Zum Abonnieren bitte [anmelden](%%action.login%%)," - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Feed der Favoriten von %s" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Konnte Favoriten nicht abrufen." - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Keine derartige Nachricht." - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Nur der Absender und der Empfänger können diese Nachricht lesen." - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Nachricht an %1$s auf %2$s" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Nachricht von %1$s auf %2$s" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Eine Nachricht verschicken" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Mobilfunkanbieter deines Telefons. " - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Direkte Nachricht an %s" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Alle an %s gesendeten direkten Nachrichten" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Von dir gesendete direkte Nachrichten" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Alle von %s gesendeten direkten Nachrichten" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Fehlender Nachrichtentext!" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Empfänger nicht gefunden." - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -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." - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favoriten von %s" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s Aktualisieurng in den Favoriten von %s / %s." - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s hat deine Nachricht als Favorit gespeichert" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s hat soeben deine Nachricht von %2$s zu seinen Favoriten hinzugefügt.\n" -"\n" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter " -"zu übermitteln, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Twitter-Einstellungen" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Twitter-Konto" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Derzeit bestätigtes Twitter-Konto." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Twitter-Benutzername" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Keine Leerzeichen, bitte." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Twitter-Passwort" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Sende meine Nachrichten automatisch an Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Sende lokale „@“-Antworten an Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Hier meine Twitter-Freunde abonnieren." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Der Benutzername darf nur Zahlen, Groß- und Kleinbuchstaben und Unterstriche " -"(_) enthalten. Maximal 15 Zeichen." - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Das Überprüfen deiner Twitter-Berechtigungen war nicht erfolgreich!" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" -"Es konnten keine Kontoinformationen zu „%s“ von Twitter empfangen werden." - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Konnte Twitter-Einstellungen nicht speichern!" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Twitter-Einstellungen gespeichert." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Das ist nicht dein Twitter-Konto." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Konnte Twitter-Benutzer nicht entfernen." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Twitter-Konto entfernt." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Konnte Twitter-Einstellungen nicht speichern." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Twitter-Einstellungen gespeichert." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Bitte überprüfe die Details um sicherzustellen, dass " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Das Abonnement wurde genehmigt, aber kein " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Das Abonnement wurde abgelehnt, aber kein " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Befehl-Ergebnisse" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Befehl ausgeführt" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Befehl fehlgeschlagen" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Leider ist dieser Befehl noch nicht implementiert." - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Abonnements: %1$s\n" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Benutzer hat keine letzte Nachricht" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Nachricht als Favorit markiert." - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Vollständiger Name: %s" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Standort: %s" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Homepage: %s" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Über: %s" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Direkte Nachricht an %s abgeschickt" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Fehler beim Senden der Nachricht" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "%s abonniert" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "%s nicht mehr abonniert" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Befehl noch nicht implementiert." - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Benachrichtigung deaktiviert." - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Konnte Benachrichtigung nicht deaktivieren." - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Benachrichtigung aktiviert." - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Konnte Benachrichtigung nicht aktivieren." - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Befehle:\n" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Konnte Nachricht nicht einfügen." - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Konnte Nachricht nicht mit neuer URI versehen." - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Benutzer ohne entsprechendes Profil im System." - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" -"\n" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "Neue private Nachricht von %s" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) hat dir einen private Nachricht geschickt:\n" -"\n" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Dieses Formular sollte sich automatisch abschicken. " - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Favoriten" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "%ss favorisierte Nachrichten" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Benutzer" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Posteingang" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Deine eingehenden Nachrichten" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Postausgang" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Deine gesendeten Nachrichten" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Twitter-Integrationseinstellungen" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "An" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Konnte Nachricht nicht parsen." - -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, php-format -msgid "%s and friends, page %d" -msgstr "%s und Freunde, Seite %d" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Du kannst dein persönliches Avatar hochladen." - -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Avatar-Einstellungen" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Original" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Vorschau" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Zuschneiden" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" -"Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "" -"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Daten verloren." - -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Daten verloren." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Unbekannter Dateityp" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Kein Profil angegeben." - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Kein Benutzer-Profil mit dieser ID." - -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Benutzer blockieren" - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Bist du sicher, dass du diesen Benutzer blockieren möchtest? " - -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Du hast diesen Benutzer bereits blockiert." - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Konnte Blockierungsdaten nicht speichern." - -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "Die Adresse „%s“ wurde " - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Du bist dabei diese Nachricht dauerhaft zu entfernen. " - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Zu Favoriten hinzufügen" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "Gruppe %s bearbeiten" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Posteingänge müssen aktiviert sein, damit Gruppen funktionieren" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." - -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Kein Benutzername" - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Keine derartige Gruppe" - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." - -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Der Benutzername darf nur aus Kleinbuchstaben bestehen " - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." - -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Konnte Gruppe nicht aktualisieren." - -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Einstellungen gespeichert." - -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Warte auf die Bestätigung dieser Adresse. " - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Neue E-Mail-Adresse um Nachrichten auf %s hinzuzufügen; " - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Schicke mir eine E-Mail, wenn jemand " - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden." - -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Diese E-Mail-Adresse gehört " - -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Ein Bestätigungscode wurde an die E-Mail-Adresse geschickt, die du " -"hinzugefügt hast. " - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Serverfehler - Benutzer nicht gefunden!" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest " - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Erlaube %s meinen Facebook-Status zu aktualisieren" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Überspringen" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Kein Inhalt!" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Seitenerstellung" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Später" - -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Vorher" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Danke, dass du deine Freunde zu %s einlädst" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Einladungen an folgende Personen geschickt:" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "Du wurdest von %s angestupst" - -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Lade deine Freunde ein %s zu nutzen" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Freunde, die %s bereits benutzen:" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "Einladungen versenden" - -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Konnte Facebook-Benutzer nicht entfernen." - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" -"Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." - -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Synchronisationseinstellungen gespeichert." - -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" -"Meinen Facebook-Status automatisch über meine Nachrichten aktualisieren." - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Schicke „@“-Antworten an Facebook." - -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Präfix" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Eine Zeichenfolge, die deinen Nachrichten vorangestellt wird." - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "Wenn du %s automatisch aktualisieren lassen möchtest " - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Synchronisationseinstellungen" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Aus Favoriten entfernen" - -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Beliebte Nachrichten" - -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Beliebte Nachrichten, Seite %d" - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Die momentan beliebtesten Nachrichten auf dieser Seite." - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Top-Benutzer" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Top-Benutzer, Seite %d" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Eine Auswahl der tollen Benutzer auf %s" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Keine ID" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Gruppen-Logo" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Du kannst ein Logo für Deine Gruppe hochladen." - -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Logo aktualisiert." - -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Aktualisierung des Logos fehlgeschlagen." - -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "%s Gruppen-Mitglieder" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "%s Gruppen-Mitglieder, Seite %d" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Liste der Benutzer in dieser Gruppe." - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "Gruppen, Seite %d" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%%-Gruppen - finde und tausche dich aus mit " - -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Gruppen-Suche" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "Du kannst Nachrichten senden und empfangen über " - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber- oder GTalk-Adressen, " - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Schicke mir Nachrichten mittels Jabber/GTalk " - -#: actions/imsettings.php:321 -#, php-format -msgid "A confirmation code was sent " -msgstr "Es wurde ein Bestätigungscode gesendet " +"%1$s sagte:\n" +"\n" +"%4$s\n" +"\n" +"Du kannst die Profilseite von %1$s bei %2$s hier finden:\n" +"\n" +"%5$s\n" +"\n" +"Wenn Du den Service ausprobieren möchtest klicke den Link unten an, um die " +"Einladung anzunehmen.\n" +"\n" +"%6$s\n" +"\n" +"Wenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine " +"Zeit\n" +"\n" +"Schöne Grüße von %2$s\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden." -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Du bist bereits Mitglied dieser Gruppe" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s ist der Gruppe %s beigetreten" #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Damit Gruppen funktionieren müssen Posteingänge aktiviert sein." - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Keine derartige Gruppe." - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Du bist kein Mitglied dieser Gruppe." -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" -"Du kannst eine Gruppe nicht verlassen solange du der Administrator bist." - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Konnte Mitgliedseintrag nicht finden." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s hat die Gruppe %s verlassen" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Bereits angemeldet." + +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Ungültiger Nachrichteninhalt" + +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Falscher Benutzername oder Passwort." + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Fehler bei den Nutzereinstellungen." + +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Einloggen" + +#: actions/login.php:243 msgid "Login to site" msgstr "An Seite anmelden" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Nutzername" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Passwort" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Anmeldedaten merken" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!" + +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Passwort vergessen?" + +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " +"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." + +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " +"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " +"[OpenID](%%action.openidlogin%%)." + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/microsummary.php:69 msgid "No current status" msgstr "Kein aktueller Status" @@ -4620,39 +1753,98 @@ msgstr "Kein aktueller Status" msgid "New group" msgstr "Neue Gruppe" -#: actions/newgroup.php:115 actions/newgroup.php:110 +#: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen." -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Konnte Gruppe nicht erstellen." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Neue Nachricht" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Konnte Gruppenmitgliedschaft nicht setzen." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Du kannst diesem Benutzer keine Nachricht schicken." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Das ist zu lang. " +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Kein Inhalt!" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Schreibe dir selbst keine Nachrichten; " +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Kein Empfänger angegeben." -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Nachricht hinzugefügt" +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't 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/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Nachricht" + +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Direkte Nachricht an %s abgeschickt" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 msgid "Ajax Error" msgstr "Ajax-Fehler" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Neue Nachricht" + +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Nachricht hinzugefügt" + +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Dursuche den Inhalt der Nachrichten auf %%site.name%%. Trenne mehrere " +"Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 " +"Zeichen bestehen." + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Volltextsuche" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Suche im Stream nach \"%s\"" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Updates von %1$s auf %2$s!" + +#: actions/noticesearchrss.php:91 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten" + #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set his email yet." @@ -4664,73 +1856,245 @@ msgstr "" msgid "Nudge sent" msgstr "Stups abgeschickt" -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Stups gesendet!" +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Stups gesendet!" + +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Nachricht hat kein Profil" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s Status auf %2$s" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Verbinden" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Kein unterstütztes Datenformat." + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Suche nach Nutzern" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Nachrichtensuche" + +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Andere Einstellungen" + +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Verwalte zahlreiche andere Einstellungen." + +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "URL-Auto-Kürzungs-Dienst." + +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil Einstellungen" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "URL-Auto-Kürzungs-Dienst ist zu lange (max. 50 Zeichen)" + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "Postausgang von %s - Seite %d" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Postausgang von %s" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" +"Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Passwort ändern" + +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Ändere dein Passwort." + +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Passwort geändert" + +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Altes Passwort" + +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Neues Passwort" + +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 oder mehr Zeichen" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "OpenID-Anmeldung" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Bestätigen" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Entfernen deiner einzigen OpenID " +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "Gleiches Passwort wie oben" -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Andere Einstellungen" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Ändern" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Verwalte zahlreiche andere Einstellungen." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen." -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "URL-Auto-Verkürzung" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Passwörter stimmen nicht überein." -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Dienst" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Altes Passwort falsch" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "URL-Auto-Kürzungs-Dienst." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Fehler beim Speichern des Nutzers, ungültig." -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "URL-Auto-Kürzungs-Dienst ist zu lange (max. 50 Zeichen)" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Konnte neues Passwort nicht speichern" -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Ändere dein Passwort." +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Passwort gespeichert." -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Passwort geändert" +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " +"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " +"mindestens 3 Zeichen bestehen." + +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Suche nach anderen Nutzern" -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Ungültiger Personen-Tag: %s" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d" -#: actions/peopletag.php:91 +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Ungültiger Nachrichteninhalt" + +#: actions/postnotice.php:90 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Benutzer die sich selbst mit „%s“ getagged haben " +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Profil-Einstellungen" + +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Du kannst dein Profil auf den neusten Stand bringen, damit andere Leute mehr " +"über dich erfahren können." -#: actions/profilesettings.php:91 actions/profilesettings.php:99 +#: actions/profilesettings.php:99 msgid "Profile information" msgstr "Profilinformation" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen" + +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Vollständiger Name" + +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Homepage" + +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "" +"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" + +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Beschreibe dich selbst in 140 Zeichen" + +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Beschreibe dich selbst und deine " + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Biografie" + +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Aufenthaltsort" + +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Wo du bist, beispielsweise „Stadt, Gebiet, Land“" + +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Tags" + #: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" @@ -4739,37 +2103,127 @@ msgstr "" "Leerzeichen getrennt" #: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Abonniere automatisch alle Kontakte, die mich abonnieren " +msgid "Language" +msgstr "Sprache" + +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Bevorzugte Sprache" + +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Zeitzone" + +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "In welcher Zeitzone befinden Sie sich üblicherweise?" + +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" +"Menschen)" + +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" + +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Keine Zeitzone ausgewählt." + +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/profilesettings.php:246 actions/tagother.php:178 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ungültiger Tag: „%s“" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Autosubscribe konnte nicht aktiviert werden." + +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Konnte Profil nicht speichern." + #: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Konnte Tags nicht speichern." -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Einstellungen gespeichert." + +#: actions/public.php:83 #, php-format -msgid "Public timeline, page %d" -msgstr "Öffentliche Zeitleiste, Seite %d" +msgid "Beyond the page limit (%s)" +msgstr "" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 #: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Konnte öffentlichen Stream nicht abrufen." -#: actions/public.php:220 +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Öffentliche Zeitleiste, Seite %d" + +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Öffentliche Zeitleiste" + +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:233 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" "Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/" "Mikro-blogging) Dienst " @@ -4783,2317 +2237,2060 @@ msgstr "Öffentliche Tag-Wolke" msgid "These are most popular recent tags on %s " msgstr "Das sind die beliebtesten Tags auf %s " -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Tag-Wolke" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung." - -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "Du kannst dich nicht registrieren, wenn du nicht " - -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Dieses Formular hilft dir beim Erstellen von " - -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 Kleinbuchstaben oder Ziffern, " - -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Verwendet nur für Aktualisierungen und wichtige Mitteilungen, " - -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "URL deiner Homepage, Blogs, " - -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Beschreibe dich selbst und deine " - -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Wo du bist, beispielsweise \"Stadt, " +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " außer folgende private Daten: Passwort, " +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/register.php:471 +#: actions/publictagcloud.php:75 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. " - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(Du solltest eine Nachricht per E-Mail erhalten " +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Tag-Wolke" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "Antworten an %s, Seite %d" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Du bist bereits angemeldet!" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "%ss favorisierte Nachrichten, Seite %d" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Unbekannter Wiederherstellungscode." -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "%s Gruppe" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Kein Wiederherstellungscode." -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "%s Gruppe, Seite %d" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Wiederherstellungscode für unbekannten Nutzer." -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Gruppenprofil" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Fehler beim Bestätigungscode." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Der Bestätigungscode ist zu alt. Bitte fange nochmal von vorne an." -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Nachricht" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden." -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Gruppenaktionen" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "Nachrichtenfeed der Gruppe %s" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Mitglieder" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(Kein)" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Alle Mitglieder" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Dein Benutzername oder E-Mail-Adresse auf diesem Server." -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [mikro-blogging-" -"Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) " +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Wiederherstellung" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Nur der Absender und Empfänger " +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Passwort zurücksetzen" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, Seite %d" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Stelle Passwort wieder her" -#: actions/showstream.php:143 -msgid "'s profile" -msgstr "s Profil" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Wiederherstellung des Passworts angefordert" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Benutzerprofil" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Unbekannter Befehl" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Foto" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 oder mehr Zeichen, und nicht vergessen!" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Benutzeraktionen" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Gleiches Passwort wie zuvor" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Direkte Nachricht an Benutzer verschickt" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Zurücksetzen" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Nachricht" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Gib einen Spitznamen oder eine E-Mail-Adresse ein." -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Alle Abonnenten" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen." -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Alle Gruppen" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Der Nutzer hat keine registrierte E-Mail-Adresse." -#: actions/showstream.php:542 -#, php-format +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Fehler beim Speichern der Adressbestätigung." + +#: actions/recoverpassword.php:325 msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"**%s** hat ein Konto auf %%%%site.name%%%%, einem [mikro-blogging-Dienst]" -"(http://de.wikipedia.org/wiki/Mikro-blogging) " +"Anweisungen für die Wiederherstellung deines Passworts wurden an deine " +"hinterlegte E-Mail-Adresse geschickt." -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Telefonnummer, keine Satz- oder Leerzeichen, " +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Unerwarteter Passwortreset." -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Schicke mir Nachrichten per SMS; " +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Passwort muss mehr als 6 Zeichen enthalten" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"Ein Bestätigungscode wurde an die Telefonnummer gesendet, die du hinzugefügt " -"hast. " +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Passwort und seine Bestätigung stimmen nicht überein." -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Netzanbieter" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt angemeldet." -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Du hast dieses Profil nicht abonniert." +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung." -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Konnte Abonnement nicht erstellen." +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Fehler beim Bestätigungscode." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Kein lokaler Benutzer." +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Registrierung erfolgreich" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Abonniert" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registrieren" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "%s Abonnenten" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Registrierung nicht gestattet" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "%s Abonnenten, Seite %d" +#: actions/register.php:198 +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." -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Folgende Leute lesen " +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Ungültige E-Mail-Adresse." -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Folgende Leute " +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Diese E-Mail-Adresse existiert bereits." -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "%s Abonnements" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Benutzername oder Passwort falsch." -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "%s Abonnements, Seite %d" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Dies sind die Leute, deren Nachrichten " +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. " +"Pflicht." -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "Dies sind die Leute, deren " +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 oder mehr Buchstaben. Pflicht." -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Nachrichten, die mit %s getagt sind, Seite %d" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "E-Mail" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Nachrichten getagt mit „%s“, neueste zuerst" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Wird nur für Updates, wichtige Mitteilungen und zur " +"Passwortwiederherstellung verwendet" -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Nicht angemeldet" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Längerer Name, bevorzugt dein „echter“ Name" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Kein id Argument." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Meine Texte und Daten sind verfügbar unter" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Tag %s" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Benutzer taggen" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " +"Telefonnummer." + +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Hallo %s, herzlich willkommen auf %%%%site.name%%%%.\n" +"\n" +"Danke für deine Anmeldung, wir hoffen das dir der Service gefällt.\n" +"\n" +"Als nächstes möchtest du eventuell …\n" +"\n" +"* zu [deinem Profil gehen](%s) und deine erste Nachricht schreiben\n" +"* deine [Jabber/GTalk Adresse](%%%%action.imsettings%%%%) eintragen damit du " +"Nachrichten über diese Dienste schreiben kannst.\n" +"* [Leute suchen](%%%%action.peoplesearch%%%%) die du kennst oder die " +"gleichen Interessen wie du haben.\n" +"* deine [Profildaten ergänzen](%%%%action.profilesettings%%%%) um mehr über " +"dich zu veröffentlichen\n" +"* die [Dokumentation](%%%%doc.help%%%%) lesen um mehr über weitere Features " +"zu erfahren" -#: actions/tagother.php:149 actions/tagother.php:151 +#: actions/register.php:561 msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -"Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder " -"Leerzeichen getrennt" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Es gab ein Problem mit deinem Sessiontoken." +"(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer " +"Mailadresse erhalten.)" -#: actions/tagother.php:191 actions/tagother.php:193 +#: actions/remotesubscribe.php:98 +#, php-format msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert " -"haben." - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Konnte Tags nicht speichern." +"Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) oder " +"ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein Konto " +"auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib " +"deine Profil-URL unten an." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Benutze dieses Formular, um Tags zu deinen Abonnenten oder Abonnements " -"hinzuzufügen." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Entferntes Abonnement" -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Tag nicht vorhanden." +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Abonniere diesen Benutzer" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Mikroblog getaggt mit %s" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Benutzername" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Blockieren des Benutzers fehlgeschlagen." +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Nutzername des Nutzers, dem du folgen möchtest" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Freigeben des Benutzers fehlgeschlagen." +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Profil-URL" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nicht gefunden." +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Füge dein Twitter-Konto hinzu zum automatischen Versenden von " +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Abonnieren" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Twitter-Benutzername" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Ungültige Profil-URL (falsches Format)" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Twitter-Passwort" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Twitter-Freunde" +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Für den Benutzernamen gelten nur Nummern, " +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Konnte keinen Anfrage-Token bekommen." -#: actions/twittersettings.php:341 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "Unable to retrieve account information " -msgstr "Konnte Kontoinformationen nicht abrufen " - -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Fehler beim Freigeben des Benutzers." +msgid "Replies to %s" +msgstr "Antworten an %s" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Keine Profil-ID in der Anfrage." +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Antworten an %s, Seite %d" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Kein Profil mit dieser ID." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed der Nachrichten von %s" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Abbestellt" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed der Nachrichten von %s" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: actions/replies.php:158 #, php-format -msgid "%s groups" -msgstr "%s Gruppen" +msgid "Replies feed for %s (Atom)" +msgstr "Feed der Nachrichten von %s" -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: actions/replies.php:198 #, php-format -msgid "%s groups, page %d" -msgstr "%s Gruppen, Seite %d" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " -"ein paar Minuten ab." -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Avatar hochladen" - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Sonstige" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Sonstige Optionen" - -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: actions/replies.php:205 #, php-format -msgid "%s - %s" -msgstr "%s - %s" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Seite ohne Titel" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Hauptnavigation" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Persönliches Profil und Freundes-Zeitleiste" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Suche nach Leuten oder Text" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Konto" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Verbinde zu IM, SMS, Twitter" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Von der Seite abmelden" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Auf der Seite anmelden" - -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Neues Konto erstellen" - -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Mit OpenID anmelden" - -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Hilf mir!" - -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Seitennachricht" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Lokale Ansichten" - -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "Neue Nachricht" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Unternavigation" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "StatusNet-Software-Lizenz" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -#, fuzzy -msgid "All " -msgstr "Alle " - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -#, fuzzy -msgid "license." -msgstr "Lizenz." +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "Benutzer blockieren" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Nachricht an %1$s auf %2$s" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Blockieren" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%ss favorisierte Nachrichten, Seite %d" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -#, fuzzy -msgid "Disfavor this notice" -msgstr "Aus Favoriten entfernen" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Konnte Favoriten nicht abrufen." -#: lib/facebookaction.php:268 +#: actions/showfavorites.php:170 #, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden " - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr " ein neues Konto." - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "Öffentlich" - -#: lib/favorform.php:114 lib/favorform.php:140 -#, fuzzy -msgid "Favor this notice" -msgstr "Zu den Favoriten hinzufügen" - -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Daten exportieren" +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed der Freunde von %s" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Tags filtern" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed der Freunde von %s" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Alle" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed der Freunde von %s" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Tag" +#: actions/showfavorites.php:205 +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 "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -#, fuzzy -msgid "Choose a tag to narrow list" -msgstr "Wähle einen Tag, um die Liste einzuschränken" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -#, fuzzy -msgid "Go" -msgstr "Los" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -#, fuzzy -msgid "URL of the homepage or blog of the group or topic" -msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Beschreibung" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "%s Gruppe" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "%s Gruppe, Seite %d" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -#, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Ort der Gruppe, optional, z.B. \"Stadt, Gebiet (oder Region), Land\"" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Gruppenprofil" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Gruppe" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -#, fuzzy -msgid "Admin" -msgstr "Admin" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Nachricht" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, fuzzy, php-format -msgid "Edit %s group properties" -msgstr "%s Gruppeneinstellungen bearbeiten" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "Logo" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Gruppenaktionen" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/showgroup.php:328 #, fuzzy, php-format -msgid "Add or edit %s logo" -msgstr "%s Logo hinzufügen oder bearbeiten" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Gruppen mit den meisten Mitgliedern" +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Nachrichtenfeed der Gruppe %s" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "Gruppen mit den meisten Beiträgen" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Nachrichtenfeed der Gruppe %s" -#: lib/grouptagcloudsection.php:56 +#: actions/showgroup.php:340 #, fuzzy, php-format -msgid "Tags in %s group's notices" -msgstr "Tags in den Nachrichten der Gruppe %s" +msgid "Notice feed for %s group (Atom)" +msgstr "Nachrichtenfeed der Gruppe %s" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "Diese Seite liegt in nicht verfügbar in einem " +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Postausgang von %s" -#: lib/joinform.php:114 -#, fuzzy -msgid "Join" -msgstr "Beitreten" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Mitglieder" -#: lib/leaveform.php:114 -#, fuzzy -msgid "Leave" -msgstr "Verlassen" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(Kein)" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "Anmelden mit einem Benutzernamen und Passwort" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Alle Mitglieder" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "Für ein neues Konto registrieren" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistiken" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Anmelden oder registrieren mit OpenID" +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Erstellen" -#: lib/mail.php:175 -#, fuzzy, php-format +#: actions/showgroup.php:448 +#, php-format msgid "" -"Hey, %s.\n" -"\n" +"**%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 "" -"Hallo, %s.\n" -"\n" -#: lib/mail.php:236 +#: actions/showgroup.php:454 #, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s liest ab sofort " +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** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] " +"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " -#: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format -msgid "Location: %s\n" -msgstr "Standort: %s\n" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" -#: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format -msgid "Homepage: %s\n" -msgstr "Homepage: %s\n" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Keine derartige Nachricht." -#: lib/mail.php:258 lib/mail.php:257 -#, fuzzy, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Biografie: %s\n" -"\n" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Nur der Absender und der Empfänger können diese Nachricht lesen." -#: lib/mail.php:461 lib/mail.php:462 +#: actions/showmessage.php:108 #, php-format -msgid "You've been nudged by %s" -msgstr "Du wurdest von %s angestupst" - -#: lib/mail.php:465 -#, fuzzy, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%s$s (%2$s) fragt sich was du so machst " +msgid "Message to %1$s on %2$s" +msgstr "Nachricht an %1$s auf %2$s" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s hat deine Nachrichten von %2$s hinzugefügt" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Nachricht von %1$s auf %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +#: actions/shownotice.php:90 #, fuzzy -msgid "From" -msgstr "Von" +msgid "Notice deleted." +msgstr "Nachricht hinzugefügt" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -#, fuzzy -msgid "Send a direct notice" -msgstr "Versende eine direkte Nachricht" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Nachrichten, die mit %s getagt sind" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "Nachricht versenden" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "%s, Seite %d" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "Verfügbare Zeichen" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Nachrichtenfeed der Gruppe %s" -#: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy -msgid "in reply to" -msgstr "als Antwort auf" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed der Nachrichten von %s" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -#, fuzzy -msgid "Reply to this notice" -msgstr "Auf diese Nachricht antworten" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed der Nachrichten von %s" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -#, fuzzy -msgid "Reply" -msgstr "Antworten" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed der Nachrichten von %s" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -#, fuzzy -msgid "Delete this notice" -msgstr "Notiz löschen" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Postausgang von %s" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -#, fuzzy -msgid "Delete" -msgstr "Löschen" +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: lib/nudgeform.php:116 -#, fuzzy -msgid "Nudge this user" -msgstr "Diesen Benutzer stupsen" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: lib/nudgeform.php:128 -#, fuzzy -msgid "Nudge" -msgstr "Stups" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/nudgeform.php:128 -#, fuzzy -msgid "Send a nudge to this user" -msgstr "Sende diesem Benutzer einen Stupser" +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: lib/personaltagcloudsection.php:56 +#: actions/showstream.php:239 #, fuzzy, php-format -msgid "Tags in %s's notices" -msgstr "Tags in %ss Nachrichten" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." +"wikipedia.org/wiki/Mikro-blogging) Dienst " -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -#, fuzzy -msgid "(none)" -msgstr "(leer)" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS-Einstellungen" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Öffentlich" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Du kannst SMS per E-Mail empfangen von %%site.name%%." -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Benutzer-Gruppen" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Diese Seite liegt in nicht verfügbar in einem " -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Aktuelle Tags" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Aktuelle für den SMS-Dienst bestätigte Telefon-Nummer." -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Featured" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Warte auf die Bestätigung dieser Telefonnummer." -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Beliebt" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Bestätigungscode" -#: lib/searchgroupnav.php:82 -#, fuzzy -msgid "Notice" -msgstr "Nachricht" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast." -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Finde Gruppen auf dieser Seite" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS-Telefonnummer" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Abschnitt ohne Titel" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "Leute, die %s abonniert hat" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei " +"meinem Netzbetreiber entstehen können." -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "Leute, die %s abonniert haben" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Keine Telefonnummer." -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, fuzzy, php-format -msgid "Groups %s is a member of" -msgstr "Gruppen zu denen %s gehört" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Kein Netzanbieter ausgewählt." -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, fuzzy, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Lade Freunde und Kollegen ein dir auf %s beizutreten" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Dies ist bereits deine Telefonnummer." -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "Dieser Benutzer hat dich blockiert." +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet." -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 +#: actions/smssettings.php:347 #, fuzzy -msgid "Subscribe to this user" -msgstr "Abonniere diesen Benutzer" - -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Nichts" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Top-Schreiber" +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 "" +"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " +"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " +"den Code und die Anweisungen, um ihn zu benutzen." -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -#, fuzzy -msgid "Unblock this user" -msgstr "Benutzer freigeben" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Die Bestätigungsnummer ist falsch." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Freigeben" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Dies ist nicht deine Telefonnummer." -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Lösche dein Abonnement von diesem Benutzer" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Netzanbieter" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed der Freunde von %s" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Wähle einen Netzanbieter" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed der Freunde von %s" +#: actions/smssettings.php:476 +#, php-format +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 "" +"Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-" +"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %" +"s." -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed der Freunde von %s" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Kein Code eingegeben" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s und Freunde" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Du hast dieses Profil nicht abonniert." -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Du kannst dein persönliches Avatar hochladen." +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Konnte Abonnement nicht erstellen." -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -#, fuzzy -msgid "Avatar deleted." -msgstr "Avatar aktualisiert." +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Kein lokaler Benutzer." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Abonniert" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " -"ist irreversibel." +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "%s Abonnenten" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -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/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "%s Abonnenten, Seite %d" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" -"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Dies sind die Leute, die deine Nachrichten lesen." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Dies sind die Leute, die %ss Nachrichten lesen." + +#: actions/subscribers.php:108 msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: actions/subscribers.php:110 #, php-format -msgid "Okay, do it!" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscribers.php:114 #, php-format msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Du kannst ein Logo für Deine Gruppe hochladen." +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "%s Abonnements" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "" -"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "%s Abonnements, Seite %d" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Microblog von %s" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Dies sind die Leute, deren Nachrichten du liest." -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " -"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " -"mindestens 3 Zeichen bestehen." +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "Dies sind die Leute, deren Nachrichten %s liest." -#: actions/groups.php:90 +#: actions/subscriptions.php:121 #, php-format msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Fehler beim Senden der Nachricht" - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Suche im Stream nach \"%s\"" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/openidlogin.php:66 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " -"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." +msgid "%s is not listening to anyone." +msgstr "%1$s liest ab sofort " -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Feed des öffentlichen Streams" +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Feed des öffentlichen Streams" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Feed des öffentlichen Streams" +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Nicht angemeldet" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Kein id Argument." -#: actions/register.php:286 actions/register.php:329 +#: actions/tagother.php:65 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +msgid "Tag %s" +msgstr "Tag %s" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Benutzerprofil" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Foto" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Benutzer taggen" + +#: actions/tagother.php:151 msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " -"Telefonnummer." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Erstellen" +"Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder " +"Leerzeichen getrennt" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format +#: actions/tagother.php:193 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%%%%))" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +"Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert " +"haben." -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Gruppenprofil" +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Konnte Tags nicht speichern." -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "s Profil" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Benutze dieses Formular, um Tags zu deinen Abonnenten oder Abonnements " +"hinzuzufügen." -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Nachrichten, die mit %s getagt sind, Seite %d" + +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed der Nachrichten von %s" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed der Nachrichten von %s" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (Atom)" msgstr "Feed der Nachrichten von %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Postausgang von %s" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Tag nicht vorhanden." -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Avatar" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API-Methode im Aufbau." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Profil Einstellungen" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Keine Profil-ID in der Anfrage." -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Kein Profil mit dieser ID." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Abbestellt" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Abonnement bestätigen" + +#: actions/userauthorization.php:110 #, fuzzy 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." +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " -"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " -"den Code und die Anweisungen, um ihn zu benutzen." +"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 " +"\"Abbrechen\"." -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +#: actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "Lizenz." -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Akzeptieren" + +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "No such user!" -msgstr "Kein solcher Benutzer" +msgid "Subscribe to this user" +msgstr "Abonniere diesen Benutzer" -#: actions/twittersettings.php:72 +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Ablehnen" + +#: actions/userauthorization.php:212 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter " -"zu übermitteln, " +msgid "Reject this subscription" +msgstr "%s Abonnements" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" -"Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Keine Bestätigungsanfrage!" + +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Abonnement autorisiert" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:249 #, fuzzy msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" 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 " -"\"Abbrechen\"." +"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"bestätigt werden. Dein Abonnement-Token ist:" -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Suche nach Leuten oder Text" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Abonnement abgelehnt" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#: actions/userauthorization.php:261 #, fuzzy msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " -"ein paar Minuten ab." +"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"vollständig abgelehnt werden. Dein Abonnement-Token ist:" -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Verbinde zu IM, SMS, Twitter" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Stups" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: actions/userauthorization.php:307 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 die %s Facebookanwendung zu benutzen, musst du dich anmelden " +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Konnte Avatar-URL nicht öffnen „%s“" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Falscher Bildtyp für „%s“" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Keine ID." -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil Einstellungen" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/imagefile.php:75 +#: actions/usergroups.php:64 #, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" +msgid "%s groups, page %d" +msgstr "%s Gruppen, Seite %d" -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#: actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Suche nach Leuten oder Text" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/usergroups.php:153 #, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s hat deine Nachrichten auf %2$s abonniert.\n" -"\n" -"\t%3$s\n" -"\n" -"Gruß,\n" -"%4$s.\n" +msgid "%s is not a member of any group." +msgstr "Du bist kein Mitglied dieser Gruppe." -#: lib/mail.php:466 +#: actions/usergroups.php:158 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: lib/mail.php:513 +#: classes/File.php:137 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 +#: classes/File.php:147 #, php-format -msgid "%s sent a notice to your attention" +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: classes/File.php:154 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Suchen" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Konnte Nachricht nicht einfügen." -#: lib/section.php:106 -msgid "More..." -msgstr "" +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Konnte Nachricht nicht mit neuer URI versehen." -#: actions/all.php:80 actions/all.php:127 +#: classes/Notice.php:164 #, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" + +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problem bei Speichern der Nachricht." + +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." + +#: classes/Notice.php:188 msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" +"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " +"ein paar Minuten ab." -#: actions/all.php:85 actions/all.php:132 -#, php-format +#: classes/Notice.php:194 +#, fuzzy msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" +"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " +"ein paar Minuten ab." -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" +"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." + +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Problem bei Speichern der Nachricht." -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/Notice.php:1120 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "DB error inserting reply: %s" +msgstr "Datenbankfehler beim Einfügen der Antwort: %s" + +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Nachricht an %1$s auf %2$s" + +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Ändern der Profileinstellungen" + +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Avatar hochladen" + +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Ändere dein Passwort" + +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Ändere die E-Mail Verarbeitung" + +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/attachment.php:73 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "No such attachment." -msgstr "Unbekanntes Dokument." +msgid "Design your profile" +msgstr "Benutzerprofil" -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Liste der Benutzer in dieser Gruppe." +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Sonstige" -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Liste der Benutzer in dieser Gruppe." +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Sonstige Optionen" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Benutzerprofil" +#: lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "%s - %s" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s und Freunde, Seite %d" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Seite ohne Titel" -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Liste der Benutzer in dieser Gruppe." +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Hauptnavigation" -#: actions/blockedfromgroup.php:281 +#: lib/action.php:430 +msgid "Home" +msgstr "Startseite" + +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Persönliches Profil und Freundes-Zeitleiste" + +#: lib/action.php:432 +msgid "Account" +msgstr "Konto" + +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" + +#: lib/action.php:435 +msgid "Connect" +msgstr "Verbinden" + +#: lib/action.php:435 #, fuzzy -msgid "Unblock user from group" -msgstr "Freigeben des Benutzers fehlgeschlagen." +msgid "Connect to services" +msgstr "Konnte nicht zum Server umleiten: %s" + +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Einladen" + +#: lib/action.php:440 lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Lade Freunde und Kollegen ein dir auf %s beizutreten" -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Bestätigungscode" +#: lib/action.php:445 +msgid "Logout" +msgstr "Abmelden" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Die Nachricht konnte nicht gelöscht werden." +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Von der Seite abmelden" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +#: lib/action.php:450 +msgid "Create an account" +msgstr "Neues Konto erstellen" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Ungültiger Tag: \"%s\"" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Auf der Seite anmelden" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Hilfe" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +#: lib/action.php:456 +msgid "Help me!" +msgstr "Hilf mir!" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Konnte keinen Favoriten erstellen." +#: lib/action.php:459 +msgid "Search" +msgstr "Suchen" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Suche nach Leuten oder Text" -#: 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 "" +#: lib/action.php:480 +msgid "Site notice" +msgstr "Seitennachricht" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +#: lib/action.php:546 +msgid "Local views" +msgstr "Lokale Ansichten" -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" +#: lib/action.php:612 +msgid "Page notice" msgstr "Neue Nachricht" -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Neue Nachricht" +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Unternavigation" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: lib/action.php:721 +msgid "About" +msgstr "Über" -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: lib/action.php:723 +msgid "FAQ" +msgstr "FAQ" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Ungültiger Nutzername." +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Kein Profil angegeben." +#: lib/action.php:730 +msgid "Privacy" +msgstr "Privatsphäre" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/action.php:732 +msgid "Source" +msgstr "Quellcode" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Dieser Benutzer hat dich blockiert." +#: lib/action.php:734 +msgid "Contact" +msgstr "Kontakt" -#: actions/groupblock.php:100 +#: lib/action.php:736 #, fuzzy -msgid "User is not a member of group." -msgstr "Du bist kein Mitglied dieser Gruppe." +msgid "Badge" +msgstr "Stups" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Benutzer blockieren" +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "StatusNet-Software-Lizenz" -#: actions/groupblock.php:155 +#: lib/action.php:767 #, php-format msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" +"site.broughtbyurl%%)." -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Gruppen" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** ist ein Microbloggingdienst." -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +#: lib/action.php:771 +#, php-format msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +" Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) " +"(Version %s) betrieben, die unter der [GNU Affero General Public License]" +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Konnte Benutzerdaten nicht aktualisieren." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Konnte Twitter Einstellungen nicht speichern!" +#: lib/action.php:785 +msgid "Site content license" +msgstr "StatusNet-Software-Lizenz" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 +#: lib/action.php:794 #, fuzzy -msgid "Design preferences saved." -msgstr "Synchronisationseinstellungen gespeichert." +msgid "All " +msgstr "Alle " -#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#: lib/action.php:799 #, fuzzy -msgid "Make user an admin of the group" -msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" +msgid "license." +msgstr "Lizenz." -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Admin" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Seitenerstellung" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +#: lib/action.php:1062 +msgid "After" +msgstr "Später" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Keine Ergebnisse" +#: lib/action.php:1070 +msgid "Before" +msgstr "Vorher" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Es gab ein Problem mit deinem Sessiontoken." -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/groupunblock.php:95 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "User is not blocked from group." -msgstr "Dieser Benutzer hat dich blockiert." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +msgid "Provider" +msgstr "Profil" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Befehl-Ergebnisse" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Befehl ausgeführt" -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Nachricht" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Befehl fehlgeschlagen" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Leider ist dieser Befehl noch nicht implementiert." -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#: lib/command.php:88 #, php-format -msgid " Try using another %s format." -msgstr "" +msgid "Could not find a user with nickname %s" +msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden." -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Stups abgeschickt" -#: actions/newnotice.php:208 lib/mediafile.php:147 +#: lib/command.php:126 +#, php-format msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Konnte Profil nicht speichern." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Benutzer hat keine letzte Nachricht" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Nachricht als Favorit markiert." -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "Vollständiger Name: %s" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Standort: %s" -#: actions/noticesearch.php:121 +#: lib/command.php:324 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +msgid "Homepage: %s" +msgstr "Homepage: %s" -#: actions/noticesearch.php:124 +#: lib/command.php:327 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +msgid "About: %s" +msgstr "Über: %s" -#: actions/openidsettings.php:70 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " -"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Fehler beim Senden der Nachricht" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Auf diese Nachricht antworten" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/command.php:441 #, fuzzy -msgid "View profile designs" -msgstr "Profil Einstellungen" +msgid "Error saving notice." +msgstr "Problem bei Speichern der Nachricht." -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest" -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:502 #, php-format -msgid "Beyond the page limit (%s)" -msgstr "" +msgid "Subscribed to %s" +msgstr "%s abonniert" -#: actions/public.php:179 +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest" + +#: lib/command.php:530 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" +msgid "Unsubscribed from %s" +msgstr "%s nicht mehr abonniert" -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Befehl noch nicht implementiert." -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Benachrichtigung deaktiviert." + +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Konnte Benachrichtigung nicht deaktivieren." + +#: lib/command.php:574 +msgid "Notification on." +msgstr "Benachrichtigung aktiviert." -#: actions/public.php:245 actions/public.php:238 +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Konnte Benachrichtigung nicht aktivieren." + +#: lib/command.php:597 #, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/" -"Mikro-blogging) Dienst " +msgid "Could not create login token for %s" +msgstr "Konnte OpenID-Formular nicht erstellen: %s" -#: actions/publictagcloud.php:69 +#: lib/command.php:602 #, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/publictagcloud.php:75 -#, php-format +#: lib/command.php:613 msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/recoverpassword.php:152 +#: lib/common.php:191 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +msgid "No configuration file found. " +msgstr "Kein Bestätigungs-Code." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" -"Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden " -"lassen." -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein." +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: actions/recoverpassword.php:188 +#: lib/common.php:194 #, fuzzy -msgid "Password recover" -msgstr "Wiederherstellung des Passworts angefordert" +msgid "Go to the installer." +msgstr "Auf der Seite anmelden" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Fehler beim Bestätigungscode." +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Abonniere diesen Benutzer" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Aktualisierungen via Instant Messenger (IM)" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Aktualisierungen via SMS" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%ss favorisierte Nachrichten, Seite %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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 "" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Hochladen" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format +#: lib/designsettings.php:109 msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Nachrichtenfeed der Gruppe %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Nachrichtenfeed der Gruppe %s" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Nachrichtenfeed der Gruppe %s" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Ändere dein Passwort" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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. " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] " -"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " -#: actions/showgroup.php:474 actions/showgroup.php:482 +#: lib/designsettings.php:191 #, fuzzy -msgid "Admins" -msgstr "Admin" +msgid "Content" +msgstr "Verbinden" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "Kein lokaler Benutzer." +msgid "Sidebar" +msgstr "Suchen" -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Nachrichten, die mit %s getagt sind" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Text" -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Nachrichtenfeed der Gruppe %s" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Liste" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." -"wikipedia.org/wiki/Mikro-blogging) Dienst " -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "Aus Favoriten entfernen" + +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Zu den Favoriten hinzufügen" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Zu Favoriten hinzufügen" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Daten exportieren" + +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s liest ab sofort " +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Feed der Nachrichten von %s" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Feed der Nachrichten von %s" +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Tags filtern" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Alle" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#: lib/galleryaction.php:139 #, fuzzy -msgid "This status is already a favorite!" -msgstr "Diese Nachricht ist bereits ein Favorit!" +msgid "Select tag to filter" +msgstr "Wähle einen Netzanbieter" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Tag" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#: lib/galleryaction.php:141 #, fuzzy -msgid "That status is not a favorite!" -msgstr "Diese Nachricht ist kein Favorit!" +msgid "Choose a tag to narrow list" +msgstr "Wähle einen Tag, um die Liste einzuschränken" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 +#: lib/galleryaction.php:143 #, fuzzy -msgid "Could not determine source user." -msgstr "Konnte öffentlichen Stream nicht abrufen." +msgid "Go" +msgstr "Los" -#: actions/twitapifriendships.php:215 +#: lib/groupeditform.php:163 #, fuzzy -msgid "Target user not specified." -msgstr "Kein Empfänger angegeben." +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#: lib/groupeditform.php:168 #, fuzzy -msgid "Could not find target user." -msgstr "Konnte keine Statusmeldungen finden." +msgid "Describe the group or topic" +msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#: lib/groupeditform.php:170 #, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s Antworten an %2$s" +msgid "Describe the group or topic in %d characters" +msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Updates von %1$s auf %2$s!" +#: lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Beschreibung" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Ort der Gruppe, optional, z.B. \"Stadt, Gebiet (oder Region), Land\"" + +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "Lizenz." +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Gruppe" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/groupnav.php:100 #, fuzzy -msgid "Reject this subscription" -msgstr "%s Abonnements" +msgid "Blocked" +msgstr "Blockieren" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Benutzer blockieren" + +#: lib/groupnav.php:107 +#, fuzzy, php-format +msgid "Edit %s group properties" +msgstr "%s Gruppeneinstellungen bearbeiten" + +#: lib/groupnav.php:112 #, fuzzy -msgid "Profile design" -msgstr "Profil Einstellungen" +msgid "Logo" +msgstr "Logo" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/groupnav.php:113 +#, fuzzy, php-format +msgid "Add or edit %s logo" +msgstr "%s Logo hinzufügen oder bearbeiten" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s Logo hinzufügen oder bearbeiten" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Gruppen mit den meisten Mitgliedern" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Gruppen mit den meisten Beiträgen" + +#: lib/grouptagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s group's notices" +msgstr "Tags in den Nachrichten der Gruppe %s" + +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor." -#: actions/usergroups.php:153 +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Du bist kein Mitglied dieser Gruppe." +msgid "That file is too big. The maximum file size is %s." +msgstr "Du kannst ein Logo für Deine Gruppe hochladen." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Unvollständiges Hochladen." -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Systemfehler beim hochladen der Datei." -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Kein Bild oder defekte Datei." -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Bildformat wird nicht unterstützt." -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Problem bei Speichern der Nachricht." +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Daten verloren." -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Nachricht an %1$s auf %2$s" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Unbekannter Dateityp" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Neue Nachricht" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#: lib/joinform.php:114 #, fuzzy -msgid "Design your profile" -msgstr "Benutzerprofil" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +msgid "Join" +msgstr "Beitreten" -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Verlassen" -#: lib/attachmentlist.php:278 +#: lib/logingroupnav.php:80 #, fuzzy -msgid "Provider" -msgstr "Profil" +msgid "Login with a username and password" +msgstr "Anmelden mit einem Benutzernamen und Passwort" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" +#: lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Für ein neues Konto registrieren" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." -#: lib/designsettings.php:101 -msgid "Change background image" +#: lib/mailbox.php:139 +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/designsettings.php:105 +#: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy -msgid "Upload file" -msgstr "Hochladen" +msgid "from" +msgstr "von" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Bestätigung der E-Mail-Adresse" -#: lib/designsettings.php:139 -msgid "On" +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s hat deine Nachrichten auf %2$s abonniert." -#: lib/designsettings.php:156 -msgid "Turn background image on or off." +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s hat deine Nachrichten auf %2$s abonniert.\n" +"\n" +"\t%3$s\n" +"\n" +"Gruß,\n" +"%4$s.\n" -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" +#: lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "Standort: %s\n" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Ändere dein Passwort" +#: lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "Homepage: %s\n" -#: lib/designsettings.php:178 -msgid "Background" +#: lib/mail.php:257 +#, fuzzy, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" +"Biografie: %s\n" +"\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Verbinden" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Suchen" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Liste" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Neue E-Mail-Adresse um auf %s zu schreiben" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" +"\n" +"Schicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n" +"\n" +"Weitere E-Mail-Anweisungen unter %3$s.\n" +"\n" +"Viele Grüße,\n" +"%4$s" -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s Status" -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS-Konfiguration" -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "Du wurdest von %s angestupst" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Neue private Nachricht von %s" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:513 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Blockieren" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Benutzer blockieren" - -#: lib/groupnav.php:119 +#: lib/mail.php:554 #, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "%s Logo hinzufügen oder bearbeiten" +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s hat deine Nachricht als Favorit gespeichert" #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -7111,658 +4308,449 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"The notice is here:\n" "\n" -"\t%2$s\n" +"\t%3$s\n" "\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" +"It reads:\n" "\n" -"Regards,\n" +"\t%4$s\n" "\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Kein Inhalt!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Benutzer" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Suchen" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Tag nicht vorhanden." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Direkte Nachricht an %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Du bist bereits Mitglied dieser Gruppe" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Du bist kein Mitglied dieser Gruppe." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s Gruppen" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Gruppen zu denen %s gehört" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Gruppenaktionen" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Avatar aktualisiert." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, 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 140 Zeichen beschränkt." +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Konnte öffentlichen Stream nicht abrufen." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 +#: lib/mediafile.php:270 #, php-format -msgid "Max notice size is %d chars, including attachment URL." +msgid " Try using another %s format." msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Bildformat wird nicht unterstützt." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Foto" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." - -#: actions/favoritesrss.php:115 +#: lib/mediafile.php:275 #, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Aktualisierungen von %1$s auf %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Aufgeführte Nutzer existiert nicht." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Nicht autorisiert." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." +msgid "%s is not a supported filetype on this server." +msgstr "" -#: actions/finishremotesubscribe.php:114 +#: lib/messageform.php:120 #, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Unbekannte OMB-Protokollversion." +msgid "Send a direct notice" +msgstr "Versende eine direkte Nachricht" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Unbekannte Nachricht." +#: lib/messageform.php:146 +msgid "To" +msgstr "An" -#: actions/getfile.php:79 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "Cannot read file." -msgstr "Daten verloren." - -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Aktualisierungen von %1$s auf %2$s!" +msgid "Available characters" +msgstr "Verfügbare Zeichen" -#: actions/imsettings.php:89 +#: lib/noticeform.php:145 #, fuzzy -msgid "IM is not available." -msgstr "Diese Seite liegt in nicht verfügbar in einem " - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " -"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " -"[OpenID](%%action.openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Updates von %1$s auf %2$s!" +msgid "Send a notice" +msgstr "Nachricht versenden" -#: actions/noticesearchrss.php:91 +#: lib/noticeform.php:158 #, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Verbinden" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +msgid "What's up, %s?" +msgstr "Was ist los, %s?" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Beschreibe dich selbst in 140 Zeichen" +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 +#: lib/noticelist.php:478 #, fuzzy -msgid "Describe yourself and your interests" -msgstr "Beschreibe dich selbst und deine " +msgid "in context" +msgstr "Kein Inhalt!" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" +#: lib/noticelist.php:498 +#, fuzzy +msgid "Reply to this notice" +msgstr "Auf diese Nachricht antworten" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/noticelist.php:499 +#, fuzzy +msgid "Reply" +msgstr "Antworten" -#: actions/remotesubscribe.php:168 +#: lib/nudgeform.php:116 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." +msgid "Nudge this user" +msgstr "Diesen Benutzer stupsen" -#: actions/remotesubscribe.php:176 +#: lib/nudgeform.php:128 #, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." +msgid "Nudge" +msgstr "Stups" -#: actions/remotesubscribe.php:183 +#: lib/nudgeform.php:128 #, fuzzy -msgid "Couldn’t get a request token." -msgstr "Konnte keinen Anfrage-Token bekommen." +msgid "Send a nudge to this user" +msgstr "Sende diesem Benutzer einen Stupser" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Feed der Nachrichten von %s" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Neues Profil konnte nicht angelegt werden" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Feed der Nachrichten von %s" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Fehler beim Einfügen des Avatars" -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Feed der Nachrichten von %s" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Fehler beim Einfügen des entfernten Profils" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Nachricht an %1$s auf %2$s" +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Notiz löschen" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed der Freunde von %s" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Konnte neues Abonnement nicht eintragen." -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed der Freunde von %s" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Eigene" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed der Freunde von %s" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Antworten" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favoriten" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Postausgang von %s" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Benutzer" -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Nachricht hinzugefügt" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Posteingang" -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Diese Seite liegt in nicht verfügbar in einem " +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Deine eingehenden Nachrichten" -#: actions/tag.php:92 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Postausgang" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Deine gesendeten Nachrichten" + +#: lib/personaltagcloudsection.php:56 #, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Feed der Nachrichten von %s" +msgid "Tags in %s's notices" +msgstr "Tags in %ss Nachrichten" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Abonnements" -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"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 " -"\"Abbrechen\"." +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Alle Abonnements" -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " -"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " -"bestätigt werden. Dein Abonnement-Token ist:" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Abonnenten" -#: actions/userauthorization.php:261 +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Alle Abonnenten" + +#: lib/profileaction.php:177 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " -"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " -"vollständig abgelehnt werden. Dein Abonnement-Token ist:" +msgid "User ID" +msgstr "Benutzer" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Mitglied seit" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Alle Gruppen" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Öffentlich" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Benutzer-Gruppen" -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Aktuelle Tags" -#: actions/userauthorization.php:343 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Konnte Avatar-URL nicht öffnen „%s“" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Featured" -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Falscher Bildtyp für „%s“" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Beliebt" -#: lib/action.php:435 +#: lib/searchaction.php:120 #, fuzzy -msgid "Connect to services" -msgstr "Konnte nicht zum Server umleiten: %s" +msgid "Search site" +msgstr "Suchen" -#: lib/action.php:785 -msgid "Site content license" -msgstr "StatusNet-Software-Lizenz" +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Suchen" -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden." +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Leute" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Finde Leute auf dieser Seite" + +#: lib/searchgroupnav.php:82 +#, fuzzy +msgid "Notice" +msgstr "Nachricht" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Durchsuche den Inhalt der Notices" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Finde Gruppen auf dieser Seite" -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Stups abgeschickt" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Abschnitt ohne Titel" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" +#: lib/section.php:106 +msgid "More..." msgstr "" -#: lib/command.php:358 scripts/xmppdaemon.php:321 +#: lib/subgroupnav.php:83 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" +msgid "People %s subscribes to" +msgstr "Leute, die %s abonniert hat" -#: lib/command.php:431 +#: lib/subgroupnav.php:91 #, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" +msgid "People subscribed to %s" +msgstr "Leute, die %s abonniert haben" -#: lib/command.php:439 +#: lib/subgroupnav.php:99 #, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Auf diese Nachricht antworten" +msgid "Groups %s is a member of" +msgstr "Gruppen zu denen %s gehört" -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Problem bei Speichern der Nachricht." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" -#: lib/common.php:191 +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/subscriptionlist.php:126 #, fuzzy -msgid "No configuration file found. " -msgstr "Kein Bestätigungs-Code." +msgid "(none)" +msgstr "(leer)" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "Dieser Benutzer hat dich blockiert." -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Auf der Seite anmelden" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Konnte nicht abbonieren." -#: lib/galleryaction.php:139 +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Die Gegenseite konnte Dich nicht abonnieren." + +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Nicht abonniert!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Konnte Abonnement nicht löschen." + +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Nichts" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Top-Schreiber" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Lösche dein Abonnement von diesem Benutzer" + +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Abbestellen" + +#: lib/userprofile.php:116 #, fuzzy -msgid "Select tag to filter" -msgstr "Wähle einen Netzanbieter" +msgid "Edit Avatar" +msgstr "Avatar" -#: lib/groupeditform.php:168 +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Benutzeraktionen" + +#: lib/userprofile.php:248 #, fuzzy -msgid "Describe the group or topic" -msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" +msgid "Edit profile settings" +msgstr "Profil Einstellungen" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" +#: lib/userprofile.php:249 +msgid "Edit" +msgstr "" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Neue Nachricht" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Direkte Nachricht an Benutzer verschickt" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s hat deine Nachricht als Favorit gespeichert" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Nachricht" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "vor wenigen Sekunden" -#: lib/mail.php:611 +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "vor einer Minute" + +#: lib/util.php:848 #, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgid "about %d minutes ago" +msgstr "vor %d Minuten" -#: lib/mail.php:613 +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "vor einer Stunde" + +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgid "about %d hours ago" +msgstr "vor %d Stunden" -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "von" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "vor einem Tag" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "vor %d Tagen" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Konnte öffentlichen Stream nicht abrufen." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "vor einem Monat" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Notiz löschen" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "vor %d Monaten" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Ungültiger Nachrichteninhalt" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "vor einem Jahr" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Konnte OpenID-Formular nicht erstellen: %s" +msgid "%s is not a valid color!" +msgstr "" +"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Du kannst ein Logo für Deine Gruppe hochladen." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Konnte Nachricht nicht parsen." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Kein registrierter Nutzer." + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Sorry, das ist nicht deine Adresse für eingehende E-Mails." + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Sorry, keinen eingehenden E-Mails gestattet." diff --git a/locale/el/LC_MESSAGES/statusnet.mo b/locale/el/LC_MESSAGES/statusnet.mo index f69914abe..b7bd29447 100644 Binary files a/locale/el/LC_MESSAGES/statusnet.mo and b/locale/el/LC_MESSAGES/statusnet.mo differ diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index a521aaa62..5abc36274 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -5,4520 +5,1755 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:16+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:57:58+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Αναζήτηση ροής για \"%s\"" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " -"διεύθυνση IM, τηλεφωνικό νούμερο." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "από" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "" - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" - -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "Δημόσια ροή %s" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s και οι φίλοι του/της" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "Κατάσταση του/της %s" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, fuzzy, php-format -msgid "%s timeline" -msgstr "Χρονοδιάγραμμα του χρήστη %s" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για " -"την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)" - -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, fuzzy, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " -"έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " - -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, fuzzy, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "" -"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" - -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά" - -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά. Απαραίτητο." - -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 ή περισσότεροι χαρακτήρες" - -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 ή περισσότεροι χαρακτήρες και μην το ξεχάσετε!" - -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο." - -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 -#, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. " -"Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση email που " -"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " -"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " -"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " -"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή." - -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Περί" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Αποδοχή" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Προσθήκη" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Προσθήκη OpenID" - -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Προσθήκη ή διαγραφή OpenIDs" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Διεύθυνση" - -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Διευθύνσεις φίλων σου που θες να προσκαλέσεις (μία ανά γραμμή)" - -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Όλες οι συνδρομές" - -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Όλες οι ενημερώσεις για %s" - -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Ήδη συνδεδεμένος." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Είσαι ήδη συνδρομητής!." - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;" - -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Εξουσιοδοτημένη συνδρομή" - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Αυτόματη σύνδεση στο μέλλον. ΟΧΙ για κοινόχρηστους υπολογιστές!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -#, fuzzy -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση " -"κυρίως από λογισμικό και όχι ανθρώπους)" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "" - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, fuzzy, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το Jabber/GTalk " -"λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη " -"λίστα φίλων?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -#, fuzzy -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το " -"φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου." - -#: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy -msgid "Before »" -msgstr "Προηγούμενο »" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Βιογραφικό" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -#, fuzzy -msgid "Can't delete this notice." -msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." - -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Ακύρωση" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Απέτυχη η χρήση αντικειμένου OpenID consumer." - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Αδυναμία κανονικοποίησης του Jabber ID" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Αλλαγή" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Αλλαγή κωδικού" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Αλλάξτε τον κωδικό σας" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Επιβεβαίωση" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Επιβεβαίωση διεύθυνσης" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Η επιβεβαίωση ακυρώθηκε." - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" - -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, fuzzy, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Συγχαρητήρια, %s! και καλωσήρθες στο %%%%site.name%%%%. Από εδώ μπορείς " -"να...\n" -"\n" -"* Πας στο [your profile](%s) και να στείλεις το πρώτο σου μήνυμα.\n" -"* Προσθέσεις ένα [Jabber/GTalk address](%%%%action.imsettings%%%%) ώστε να " -"δέχεσε μηνύματα στο instant messager σου.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή " -"που έχουν τα ίδια ενδιαφέροντα με σένα. \n" -"* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%" -"%) για να μάθουν οι άλλοι περισσότερα για σένα. \n" -"* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να " -"μην έχεις μάθει ακόμα. \n" -"\n" -"Ευχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία " -"μας." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Σύνδεση" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Σύνδεση με υπάρχων λογαριασμό" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Επικοινωνία" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" -"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Δε μπόρεσα να σώσω την πληροφορία του avatar" - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Απέτυχε η συνδρομή." - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Απέτυχε η διαγραφή συνδρομής." - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "" - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης." - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Απέτυχε η αποθήκευση του προφίλ." - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή." - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη." - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Απέτυχε η ενημέρωση του χρήστη." - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Δημιουργία" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Δημιουργία νέου χρήστη με αυτό το ψευδώνυμο." - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Δημιουργία νέου λογαριασμού" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -#, fuzzy -msgid "Creating new account for OpenID that already has a user." -msgstr "Μετατροπή υπάρχοντος λογαριασμού σε λογαριασμό OpenID." - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση." - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κινητού τηλεφώνου." - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση." - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Διαγραφή μηνύματος" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Email" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Διεύθυνση Email" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Ρυθμίσεις Email" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Η διεύθυνση email υπάρχει ήδη." - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Επιβεβαίωση διεύθυνσης email" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\"" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Διευθύνσεις email" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email." - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "" - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "" - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "" - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "" - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "" - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "" - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "Συχνές ερωτήσεις" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "" - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Ροή φίλων του/της %s" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Ροή απαντήσεων προς τον/την %s" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " -"σας, πριν αλλάξετε τις ρυθμίσεις σας." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Ονοματεπώνυμο" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Βοήθεια" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Αρχή" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Αρχική σελίδα" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "ΙΜ" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Διεύθυνση ΙΜ" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Ρυθμίσεις ΙΜ" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " -"να τον συνδέσετε στο OpenID σας." - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Εάν θέλετε να προσθέσετε ένα OpenID στον λογαριασμό σας, πληκτρολογήστε τον " -"από κάτω και πατήστε \"Προσθήκη\"." - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί " -"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Εισερχόμενο email" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Λάθος παλιός κωδικός" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Λάθος όνομα χρήστη ή κωδικός" - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email " -"που έχετε καταχωρίσει στον λογαριασμό σας." - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "" - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "" - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "" - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "" - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Τοποθεσία" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Σύνδεση" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Συνδεθείτε με έναν λογαριασμό [OpenID](%%doc.openid%%)." - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " -"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " -"δοκιμάστε το [OpenID](%%action.openidlogin%%). " - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Αποσύνδεση" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Χάσατε ή ξεχάσατε τον κωδικό σας;" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Μέλος από" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Νέο ψευδώνυμο" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Νέος κωδικός" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "" - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Ψευδώνυμο" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Το ψευδώνυμο αυτό δεν επιτρέπεται." - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Το ψευδώνυμο του χρήστη που θέλετε να παρακολουθήσετε" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Ψευδώνυμο ή email" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "" - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "" - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "" - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "" - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "" - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "" - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "Το OpenID αφαιρέθηκε." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Ρυθμίσεις OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Κωδικός" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυτίζονται." - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι." - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Ο κωδικός αποθηκεύτηκε." - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Οι κωδικοί δεν ταυτίζονται." - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Προσωπικά" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Προτιμήσεις" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Οι προτιμήσεις αποθηκεύτηκαν" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "" - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s και οι φίλοι του/της" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "" +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 +#, php-format +msgid "%s and friends" +msgstr "%s και οι φίλοι του/της" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Ροή φίλων του/της %s" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Ροή φίλων του/της %s" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." +#: actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." +#: actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s και οι φίλοι του/της" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." msgstr "" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." msgstr "" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +msgid "That's too long. Max message size is %d chars." msgstr "" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." msgstr "" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 +#: actions/apidirectmessage.php:89 #, php-format -msgid "These are the people who listen to %s's notices." +msgid "Direct messages from %s" msgstr "" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/apidirectmessage.php:101 #, php-format -msgid "These are the people whose notices %s listens to." +msgid "Direct messages to %s" msgstr "" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." msgstr "" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" msgstr "" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." msgstr "" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." msgstr "" +"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 +#: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." msgstr "" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Updates from %1$s and friends on %2$s!" +msgid "Too many aliases! Maximum %d." msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +msgid "Invalid alias: \"%s\"" msgstr "" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." msgstr "" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "What's up, %s?" +msgid "%s groups" msgstr "" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Βρες ομάδες στο site" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Ομάδες χρηστών" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Ομάδες με τα περισσότερα μέλη" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." msgstr "" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Ρυθμίσεις OpenID" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." msgstr "" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/apistatusesupdate.php:193 +msgid "Not found" msgstr "" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." msgstr "" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "%s / Favorites from %s" msgstr "" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/apitimelinefavorites.php:119 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, fuzzy, php-format +msgid "%s timeline" +msgstr "Χρονοδιάγραμμα του χρήστη %s" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" msgstr "" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." +#: actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" msgstr "" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +msgid "%s public timeline" msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "You must be logged in to invite other users to use %s" +msgid "Notices tagged with %s" msgstr "" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " +#: actions/apiusershow.php:96 +msgid "Not found." msgstr "" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" +#: actions/attachment.php:73 +msgid "No such attachment." msgstr "" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." msgstr "" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: actions/avatarbynickname.php:64 +msgid "No size." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 +#: actions/avatarsettings.php:78 #, php-format -msgid "about %d hours ago" +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Ρυθμίσεις OpenID" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." msgstr "" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Ρυθμίσεις OpenID" + +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "Νέο ψευδώνυμο" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s και οι φίλοι του/της" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" msgstr "" -#: actions/invite.php:178 actions/invite.php:213 -#, php-format +#: actions/block.php:136 msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " +#: actions/block.php:149 +msgid "Do not block this user from this group" msgstr "" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" msgstr "" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." +#: actions/block.php:150 +msgid "Block this user from this group" msgstr "" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." +#: actions/block.php:165 +msgid "You have already blocked this user." msgstr "" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." +#: actions/block.php:170 +msgid "Failed to save block information." msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +#: actions/bookmarklet.php:50 +msgid "Post to " msgstr "" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." msgstr "" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/confirmaddress.php:90 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgid "Unrecognized address type %s" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Επιβεβαίωση διεύθυνσης" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/confirmaddress.php:159 #, php-format -msgid "Outbox for %s" +msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Τοποθεσία" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" msgstr "" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" +#: actions/deletenotice.php:71 +#, fuzzy +msgid "Can't delete this notice." +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Διαγραφή μηνύματος" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +#: actions/doc.php:69 +msgid "No such document." msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#: actions/editgroup.php:56 #, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +msgid "Edit %s group" msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" +#: actions/editgroup.php:269 +msgid "Options saved." msgstr "" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Ρυθμίσεις Email" -#: actions/smssettings.php:312 actions/smssettings.php:464 +#: actions/emailsettings.php:71 #, php-format -msgid "Mobile carrier for your phone. " +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Διεύθυνση" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση." -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" +#: actions/emailsettings.php:113 +#, fuzzy +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" +"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το " +"φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Ακύρωση" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Διεύθυνση Email" + +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\"" + +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Προσθήκη" + +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Εισερχόμενο email" + +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Προτιμήσεις" + +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email" + +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" msgstr "" -#: actions/twittersettings.php:63 -msgid "Twitter Username" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Οι προτιμήσεις αποθηκεύτηκαν" + +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" -#: actions/twittersettings.php:67 -msgid "Twitter Password" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." +#: actions/emailsettings.php:333 +msgid "That is already your email address." msgstr "" -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης." -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 +#: actions/emailsettings.php:358 msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +"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 "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση email που " +"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " +"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." msgstr "" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." msgstr "" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Η επιβεβαίωση ακυρώθηκε." -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." msgstr "" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη." -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." msgstr "" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: 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 "" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" msgstr "" -#: classes/Command.php:96 classes/Command.php:113 +#: actions/favoritesrss.php:115 #, php-format -msgid "Subscriptions: %1$s\n" +msgid "Updates favored by %1$s on %2$s!" msgstr "" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 +#: actions/featured.php:71 #, php-format -msgid "Fullname: %s" +msgid "Featured users, page %d" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/featured.php:99 #, php-format -msgid "Location: %s" +msgid "A selection of some of the great users on %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Μήνυμα" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Μήνυμα" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." msgstr "" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: actions/groupblock.php:95 +msgid "User is already blocked from group." msgstr "" -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" +#: actions/groupblock.php:100 +msgid "User is not a member of group." msgstr "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/groupblock.php:155 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Οι προτιμήσεις αποθηκεύτηκαν" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" msgstr "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Αποσύνδεση" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s και οι φίλοι του/της" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -#, fuzzy -msgid "Avatar settings" -msgstr "Ρυθμίσεις OpenID" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Διαχειριστής" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 +#: actions/groupmembers.php:473 #, fuzzy -msgid "Lost our file." -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" +msgid "Make Admin" +msgstr "Διαχειριστής" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/groupsearch.php:52 +#, php-format +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 "" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." +#: actions/groupsearch.php:58 +msgid "Group search" msgstr "" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." msgstr "" -#: actions/confirmaddress.php:159 +#: actions/groupsearch.php:82 #, php-format -msgid "The address \"%s\" has been " +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/groups.php:64 #, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +msgid "Groups, page %d" msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 #, fuzzy -msgid "No nickname" -msgstr "Νέο ψευδώνυμο" +msgid "Create a new group" +msgstr "Δημιουργία νέου λογαριασμού" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Ρυθμίσεις ΙΜ" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" -#: actions/editgroup.php:218 actions/editgroup.php:253 +#: actions/imsettings.php:89 #, fuzzy -msgid "Could not update group." -msgstr "Αδύνατη η αποθήκευση του προφίλ." +msgid "IM is not available." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση." + +#: actions/imsettings.php:114 +#, fuzzy, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το Jabber/GTalk " +"λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη " +"λίστα φίλων?)" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Διεύθυνση ΙΜ" + +#: actions/imsettings.php:126 #, php-format -msgid "Awaiting confirmation on this address. " +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "Η διεύθυνση email υπάρχει ήδη." - -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/imsettings.php:285 +msgid "No Jabber ID." msgstr "" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Αδυναμία κανονικοποίησης του Jabber ID" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. " +"Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." msgstr "" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" msgstr "" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/inbox.php:62 #, php-format -msgid "Thanks for inviting your friends to use %s" +msgid "Inbox for %s" msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Ροή φίλων του/της %s" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/invite.php:41 #, php-format -msgid "Friends already using %s:" +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/invite.php:72 #, php-format -msgid "Send invitations" +msgid "Invalid email address: %s" msgstr "" -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." +#: actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/invite.php:112 +msgid "Invite new users" msgstr "" -#: actions/facebooksettings.php:67 -#, fuzzy -msgid "Sync preferences saved." -msgstr "Οι προτιμήσεις αποθηκεύτηκαν" - -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: actions/facebooksettings.php:106 -msgid "Prefix" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -#: actions/facebooksettings.php:147 -#, fuzzy -msgid "Sync preferences" -msgstr "Προτιμήσεις" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Διευθύνσεις email" -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Διευθύνσεις φίλων σου που θες να προσκαλέσεις (μία ανά γραμμή)" + +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" msgstr "" -#: actions/featured.php:71 +#: actions/invite.php:226 #, php-format -msgid "Featured users, page %d" +msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/featured.php:99 +#: actions/invite.php:228 #, php-format -msgid "A selection of some of the great users on %s" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" msgstr "" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "Αποσύνδεση" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "" + +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format -msgid "%s group members" +msgid "Could not remove user %s to group %s" msgstr "" -#: actions/groupmembers.php:96 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format -msgid "%s group members, page %d" +msgid "%s left group %s" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Ήδη συνδεδεμένος." + +#: actions/login.php:110 actions/login.php:120 +msgid "Invalid or expired token." msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Λάθος όνομα χρήστη ή κωδικός" + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." msgstr "" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Σύνδεση" + +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Ψευδώνυμο" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Κωδικός" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Δημιουργία νέου λογαριασμού" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Αυτόματη σύνδεση στο μέλλον. ΟΧΙ για κοινόχρηστους υπολογιστές!" -#: actions/groupsearch.php:57 -#, php-format +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Χάσατε ή ξεχάσατε τον κωδικό σας;" + +#: actions/login.php:282 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" +"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " +"σας, πριν αλλάξετε τις ρυθμίσεις σας." -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" +"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " +"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " +"δοκιμάστε το [OpenID](%%action.openidlogin%%). " -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." msgstr "" -#: actions/imsettings.php:120 +#: actions/makeadmin.php:95 #, php-format -msgid "Jabber or GTalk address, " +msgid "%s is already an admin for group \"%s\"." msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." - -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" +#: actions/newgroup.php:53 +msgid "New group" msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "%s left group %s" +msgid "Direct message to %s sent" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" +#: actions/newnotice.php:69 +msgid "New notice" msgstr "" -#: actions/newgroup.php:53 -msgid "New group" +#: actions/newnotice.php:199 +msgid "Notice posted" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Αναζήτηση ροής για \"%s\"" -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" #: actions/nudge.php:85 msgid "" @@ -4533,13 +1768,35 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + +#: actions/oembed.php:157 #, fuzzy -msgid "OpenID login" -msgstr "Ρυθμίσεις OpenID" +msgid "content type " +msgstr "Σύνδεση" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "" + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" #: actions/othersettings.php:60 @@ -4551,2307 +1808,2313 @@ msgstr "Ρυθμίσεις OpenID" msgid "Manage various other options." msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - -#: actions/othersettings.php:112 -msgid "Service" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + #: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Αλλαγή κωδικού" + #: actions/passwordsettings.php:69 #, fuzzy msgid "Change your password." msgstr "Αλλαγή κωδικού" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Ο κωδικός αποθηκεύτηκε." -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "" + +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Νέος κωδικός" + +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 ή περισσότεροι χαρακτήρες" + +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Επιβεβαίωση" + +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "" + +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Αλλαγή" + +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Οι κωδικοί δεν ταυτίζονται." + +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Λάθος παλιός κωδικός" + +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "" + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Ο κωδικός αποθηκεύτηκε." + +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "" + +#: actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " +#: actions/postnotice.php:84 +msgid "Invalid notice content" msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +#: actions/profilesettings.php:60 +msgid "Profile settings" msgstr "" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" +#: actions/profilesettings.php:99 +msgid "Profile information" msgstr "" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Ονοματεπώνυμο" -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Αρχική σελίδα" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Βιογραφικό" -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Τοποθεσία" -#: actions/register.php:286 -msgid "With this form you can create " +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " +#: actions/profilesettings.php:144 +msgid "Language" msgstr "" -#: actions/register.php:404 -msgid "Describe yourself and your " +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: actions/register.php:410 -msgid "Where you are, like \"City, " +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: actions/register.php:432 -msgid " except this private data: password, " +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" msgstr "" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: actions/profilesettings.php:160 +#, fuzzy +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" +"Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση " +"κυρίως από λογισμικό και όχι ανθρώπους)" -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: actions/showfavorites.php:79 +#: actions/profilesettings.php:246 actions/tagother.php:178 #, php-format -msgid "%s favorite notices, page %d" +msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή." -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Απέτυχε η αποθήκευση του προφίλ." -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 +#: actions/profilesettings.php:336 #, fuzzy -msgid "Group profile" +msgid "Couldn't save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: actions/profilesettings.php:344 +msgid "Settings saved." msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: actions/public.php:129 #, php-format -msgid "Notice feed for %s group" +msgid "Public timeline, page %d" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -#, fuzzy -msgid "Members" -msgstr "Μέλος από" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/showgroup.php:378 +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Δημόσια ροή %s" + +#: actions/public.php:179 #, php-format msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: actions/public.php:186 #, php-format -msgid "%s, page %d" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/showstream.php:542 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" msgstr "" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " +#: actions/recoverpassword.php:62 +msgid "No such recovery code." msgstr "" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." msgstr "" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." msgstr "" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" - -#: actions/subscribe.php:55 -msgid "Not a local user." +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." msgstr "" -#: actions/subscribe.php:69 -msgid "Subscribed" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." msgstr "" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." + +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" msgstr "" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " +#: actions/recoverpassword.php:208 +msgid "Reset password" msgstr "" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " +#: actions/recoverpassword.php:209 +msgid "Recover password" msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 ή περισσότεροι χαρακτήρες και μην το ξεχάσετε!" + +#: actions/recoverpassword.php:240 +msgid "Same as password above" msgstr "" -#: actions/tagother.php:33 -msgid "Not logged in" +#: actions/recoverpassword.php:243 +msgid "Reset" msgstr "" -#: actions/tagother.php:39 -msgid "No id argument." +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email." + +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 +#: actions/recoverpassword.php:325 msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" +"Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email " +"που έχετε καταχωρίσει στον λογαριασμό σας." -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι." -#: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy -msgid "Could not save tags." -msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυτίζονται." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." msgstr "" -#: actions/tagrss.php:35 -msgid "No such tag." +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" +#: actions/register.php:92 +msgid "Sorry, invalid invitation code." msgstr "" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Όνομα χρήστη στο Twitter" - -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Κωδικός στο Twitter" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Φίλοι στο Twitter" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Η διεύθυνση email υπάρχει ήδη." -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Το όνομα χρήστη πρέπει να έχει μόνο νούμερα," +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά. Απαραίτητο." + +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο." + +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Email" + +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" +#: actions/register.php:493 +msgid "My text and files are available under " msgstr "" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" +"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " +"διεύθυνση IM, τηλεφωνικό νούμερο." -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." +#: actions/register.php:537 +#, fuzzy, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" +"Συγχαρητήρια, %s! και καλωσήρθες στο %%%%site.name%%%%. Από εδώ μπορείς " +"να...\n" +"\n" +"* Πας στο [your profile](%s) και να στείλεις το πρώτο σου μήνυμα.\n" +"* Προσθέσεις ένα [Jabber/GTalk address](%%%%action.imsettings%%%%) ώστε να " +"δέχεσε μηνύματα στο instant messager σου.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή " +"που έχουν τα ίδια ενδιαφέροντα με σένα. \n" +"* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%" +"%) για να μάθουν οι άλλοι περισσότερα για σένα. \n" +"* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να " +"μην έχεις μάθει ακόμα. \n" +"\n" +"Ευχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία " +"μας." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/register.php:561 msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" +"(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για " +"την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" msgstr "" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Γίνε συνδρομητής αυτού του χρήστη" + +#: actions/remotesubscribe.php:129 +msgid "User nickname" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Το ψευδώνυμο του χρήστη που θέλετε να παρακολουθήσετε" + +#: actions/remotesubscribe.php:133 +msgid "Profile URL" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: actions/remotesubscribe.php:183 #, fuzzy -msgid "Account" -msgstr "Περί" +msgid "Couldn’t get a request token." +msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Ροή φίλων του/της %s" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Δημιουργία νέου λογαριασμού" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Ροή φίλων του/της %s" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Βοήθεια" - -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s και οι φίλοι του/της" + +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Ροή φίλων του/της %s" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: actions/showfavorites.php:205 +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 "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" msgstr "" -#: lib/facebookaction.php:268 +#: actions/showgroup.php:84 #, php-format -msgid "To use the %s Facebook Application you need to login " +msgid "%s group, page %d" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 +#: actions/showgroup.php:218 #, fuzzy -msgid " a new account." -msgstr "Δημιουργία νέου λογαριασμού" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "" - -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "" +msgid "Group profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: lib/feedlist.php:64 -msgid "Export data" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" +#: actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" msgstr "" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Περιγραφή" - -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +#, fuzzy +msgid "Members" +msgstr "Μέλος από" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Ομάδα" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Διαχειριστής" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "Λογότυπο" +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Δημιουργία" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/showgroup.php:448 #, php-format -msgid "Add or edit %s logo" -msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Ομάδες με τα περισσότερα μέλη" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "Ομάδες με τις περισσότερες δημοσιεύσεις" +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 "" -#: lib/grouptagcloudsection.php:56 +#: actions/showgroup.php:454 #, php-format -msgid "Tags in %s group's notices" +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 "" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." - -#: lib/joinform.php:114 +#: actions/showgroup.php:482 #, fuzzy -msgid "Join" -msgstr "Συμμετοχή" - -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "Αποχώρηση" - -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "Σύνδεση με όνομα χρήστη και κωδικό" +msgid "Admins" +msgstr "Διαχειριστής" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "Δημιουργία νέου λογαριασμού" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Σύνδεση ή δημιουργία λογαριασμού με OpenID" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" -#: lib/mail.php:175 +#: actions/showmessage.php:108 #, php-format -msgid "" -"Hey, %s.\n" -"\n" +msgid "Message to %1$s on %2$s" msgstr "" -"Γεια σου, %s.\n" -"\n" -#: lib/mail.php:236 +#: actions/showmessage.php:113 #, php-format -msgid "%1$s is now listening to " +msgid "Message from %1$s on %2$s" msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format -msgid "Location: %s\n" -msgstr "Τοποθεσία: %s\n" - -#: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format -msgid "Homepage: %s\n" -msgstr "Αρχική σελίδα: %s\n" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Ρυθμίσεις OpenID" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showstream.php:73 #, php-format -msgid "" -"Bio: %s\n" -"\n" +msgid " tagged %s" msgstr "" -"Βιογραφικό: %s\n" -"\n" -#: lib/mail.php:461 lib/mail.php:462 +#: actions/showstream.php:79 #, php-format -msgid "You've been nudged by %s" +msgid "%s, page %d" msgstr "" -#: lib/mail.php:465 +#: actions/showstream.php:122 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "" -#: lib/mail.php:555 +#: actions/showstream.php:129 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Από" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +msgid "Notice feed for %s (RSS 1.0)" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "6 ή περισσότεροι χαρακτήρες" - -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: lib/personaltagcloudsection.php:56 +#: actions/smssettings.php:69 #, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -#, fuzzy -msgid "(none)" -msgstr "(κανένα)" - -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Δημόσια" - -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Ομάδες χρηστών" - -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Πρόσφατες ετικέτες " - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Προτεινόμενα" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Δημοφιλή" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Μήνυμα" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κινητού τηλεφώνου." -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Βρες ομάδες στο site" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου." -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Ενότητα χωρίς τίτλο" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Γίνε συνδρομητής αυτού του χρήστη" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Κανένα" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Κορυφαίοι δημοσιευτές" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " +"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " +"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Ροή φίλων του/της %s" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Ροή φίλων του/της %s" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Ροή φίλων του/της %s" +#: actions/smssettings.php:476 +#, php-format +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 "" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s και οι φίλοι του/της" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: actions/subedit.php:83 #, fuzzy -msgid "Avatar deleted." -msgstr "Ρυθμίσεις OpenID" +msgid "Could not save subscription." +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: actions/subscribe.php:55 +msgid "Not a local user." msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: actions/subscribe.php:69 +msgid "Subscribed" msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "" + +#: actions/subscribers.php:108 msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: actions/subscribers.php:110 #, php-format -msgid "Okay, do it!" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscribers.php:114 #, php-format msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + +#: actions/subscriptions.php:54 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +msgid "%s subscriptions, page %d" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 +#: actions/subscriptions.php:69 #, php-format -msgid "Microblog by %s group" +msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#: actions/subscriptions.php:121 #, php-format 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." +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/groups.php:90 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +msgid "%s is not listening to anyone." msgstr "" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: actions/subscriptions.php:194 +msgid "Jabber" msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Αναζήτηση ροής για \"%s\"" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#: actions/tagother.php:33 +msgid "Not logged in" msgstr "" -"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " -"σας, πριν αλλάξετε τις ρυθμίσεις σας." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" +#: actions/tagother.php:39 +msgid "No id argument." msgstr "" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" msgstr "" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: actions/tagother.php:77 lib/userprofile.php:75 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Δημόσια ροή %s" +msgid "User profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy +#: actions/tagother.php:193 msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " -"διεύθυνση IM, τηλεφωνικό νούμερο." -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 +#: actions/tagother.php:200 #, fuzzy -msgid "Created" -msgstr "Δημιουργία" +msgid "Could not save tags." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + +#: actions/tag.php:68 #, 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%%%%))" +msgid "Notices tagged with %s, page %d" +msgstr "" + +#: actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "" + +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή." + +#: actions/unsubscribe.php:77 +msgid "No profile id in request." msgstr "" -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, php-format -msgid "Notice feed for %s (Atom)" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Εξουσιοδοτημένη συνδρομή" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, php-format -msgid "FOAF for %s" +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -msgid "Edit Avatar" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Αποδοχή" + +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Γίνε συνδρομητής αυτού του χρήστη" + +#: actions/userauthorization.php:211 +msgid "Reject" msgstr "" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Edit profile settings" -msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" +msgid "Reject this subscription" +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: actions/userauthorization.php:225 +msgid "No authorization request!" msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy +#: actions/userauthorization.php:249 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." +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " -"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " -"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/twittersettings.php:72 +#: actions/userauthorization.php:261 msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#: actions/userauthorization.php:296 #, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: actions/userauthorization.php:348 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +msgid "Wrong image type for avatar URL ‘%s’." msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: actions/userbyid.php:70 +msgid "No id." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" msgstr "" -"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " -"να τον συνδέσετε στο OpenID σας." -#: lib/feed.php:85 -msgid "RSS 1.0" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: lib/imagefile.php:75 +#: actions/usergroups.php:153 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "%s is not a member of any group." msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: actions/usergroups.php:158 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: classes/File.php:137 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: lib/mail.php:466 +#: classes/File.php:147 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: lib/mail.php:513 +#: classes/File.php:154 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: classes/Message.php:55 +msgid "Could not insert message." msgstr "" -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" + +#: classes/Notice.php:179 +msgid "Problem saving notice. Too long." msgstr "" -#: lib/section.php:106 -msgid "More..." +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." msgstr "" -#: actions/all.php:80 actions/all.php:127 -#, php-format +#: classes/Notice.php:188 msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/all.php:85 actions/all.php:132 -#, php-format +#: classes/Notice.php:194 msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "" + +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s" + +#: classes/User.php:333 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/attachment.php:73 -msgid "No such attachment." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" msgstr "" -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" -#: actions/block.php:150 -msgid "Block this user from this group" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" msgstr "" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s και οι φίλοι του/της" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Αλλάξτε τον κωδικό σας" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/conversation.php:99 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Conversation" -msgstr "Τοποθεσία" +msgid "Design your profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 +#: lib/action.php:144 #, php-format -msgid "Invalid alias: \"%s\"" +msgid "%s - %s" msgstr "" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." +#: lib/action.php:159 +msgid "Untitled page" +msgstr "" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:430 +msgid "Home" +msgstr "Αρχή" + +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#: lib/action.php:432 #, fuzzy -msgid "Could not create aliases." -msgstr "Αδύνατη η αποθήκευση του προφίλ." +msgid "Account" +msgstr "Περί" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" 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." +#: lib/action.php:435 +msgid "Connect" +msgstr "Σύνδεση" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" + +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/favorited.php:156 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +msgid "Invite friends and colleagues to join you on %s" +msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" + +#: lib/action.php:445 +msgid "Logout" +msgstr "Αποσύνδεση" + +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/file.php:34 +#: lib/action.php:450 #, fuzzy -msgid "No notice id" -msgstr "Μήνυμα" +msgid "Create an account" +msgstr "Δημιουργία νέου λογαριασμού" -#: actions/file.php:38 +#: lib/action.php:453 +msgid "Login to the site" +msgstr "" + +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Βοήθεια" + +#: lib/action.php:456 #, fuzzy -msgid "No notice" -msgstr "Μήνυμα" +msgid "Help me!" +msgstr "Βοήθεια" -#: actions/file.php:42 -msgid "No attachments" +#: lib/action.php:459 +msgid "Search" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." +#: lib/action.php:480 +msgid "Site notice" msgstr "" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: lib/action.php:612 +msgid "Page notice" msgstr "" -#: actions/groupblock.php:95 -msgid "User is already blocked from group." +#: lib/action.php:714 +msgid "Secondary site navigation" msgstr "" -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" +#: lib/action.php:721 +msgid "About" +msgstr "Περί" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" +#: lib/action.php:723 +msgid "FAQ" +msgstr "Συχνές ερωτήσεις" + +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +#: lib/action.php:730 +msgid "Privacy" msgstr "" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." +#: lib/action.php:732 +msgid "Source" msgstr "" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." +#: lib/action.php:734 +msgid "Contact" +msgstr "Επικοινωνία" + +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +#: lib/action.php:767 +#, fuzzy, php-format msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " +"έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Απέτυχε η ενημέρωση του χρήστη." +#: lib/action.php:769 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "" +"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Οι προτιμήσεις αποθηκεύτηκαν" +#: lib/action.php:785 +msgid "Site content license" +msgstr "" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Διαχειριστής" +#: lib/action.php:799 +msgid "license." +msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." +#: lib/action.php:1062 +msgid "After" msgstr "" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +#: lib/action.php:1070 +msgid "Before" msgstr "" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/invite.php:39 -msgid "Invites have been disabled." +#: lib/attachmentlist.php:278 +msgid "Provider" msgstr "" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#: lib/command.php:99 #, php-format -msgid " Try using another %s format." +msgid "Nudge sent to %s" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#: lib/command.php:126 #, php-format -msgid "%s is not a supported filetype on this server." +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:321 +#, php-format +msgid "Location: %s" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Απέτυχε η αποθήκευση του προφίλ." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" +#: lib/command.php:327 +#, php-format +msgid "About: %s" msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/noticesearch.php:121 +#: lib/command.php:431 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/noticesearch.php:124 +#: lib/command.php:439 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgid "Reply to %s sent" msgstr "" -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: lib/command.php:441 +msgid "Error saving notice." msgstr "" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:530 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Unsubscribed from %s" msgstr "" -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/public.php:182 -msgid "Be the first to post!" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " -#: actions/publictagcloud.php:75 +#: lib/command.php:602 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/recoverpassword.php:152 -#, fuzzy +#: lib/command.php:613 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί " -"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/recoverpassword.php:188 +#: lib/common.php:191 #, fuzzy -msgid "Password recover" -msgstr "Ο κωδικός αποθηκεύτηκε." +msgid "No configuration file found. " +msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: actions/register.php:86 actions/register.php:92 -msgid "Sorry, invalid invitation code." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Γίνε συνδρομητής αυτού του χρήστη" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "ΙΜ" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s και οι φίλοι του/της" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: lib/designsettings.php:109 msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Αλλάξτε τον κωδικό σας" + +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Σύνδεση" + +#: lib/designsettings.php:204 +msgid "Sidebar" msgstr "" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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. " +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: actions/showgroup.php:474 actions/showgroup.php:482 +#: lib/designsettings.php:230 #, fuzzy -msgid "Admins" -msgstr "Διαχειριστής" +msgid "Links" +msgstr "Σύνδεση" -#: actions/shownotice.php:101 -msgid "Not a local notice" +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" +#: lib/galleryaction.php:121 +msgid "Filter tags" msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" +#: lib/galleryaction.php:131 +msgid "All" msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Απέτυχε η ενημέρωση του χρήστη." - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." +#: lib/galleryaction.php:139 +msgid "Select tag to filter" msgstr "" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" +#: lib/galleryaction.php:140 +msgid "Tag" msgstr "" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" msgstr "" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." +#: lib/galleryaction.php:143 +msgid "Go" msgstr "" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/groupeditform.php:168 #, fuzzy -msgid "Reject this subscription" -msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +msgid "Describe the group or topic" +msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Περιγραφή" + +#: lib/groupeditform.php:179 msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Ομάδα" + +#: lib/groupnav.php:100 +msgid "Blocked" msgstr "" -#: actions/usergroups.php:158 +#: lib/groupnav.php:101 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgid "%s blocked users" msgstr "" -#: classes/File.php:127 classes/File.php:137 +#: lib/groupnav.php:107 #, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" +msgid "Edit %s group properties" +msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s" + +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Λογότυπο" -#: classes/File.php:137 classes/File.php:147 +#: lib/groupnav.php:113 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +msgid "Add or edit %s logo" +msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Ομάδες με τα περισσότερα μέλη" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Ομάδες με τις περισσότερες δημοσιεύσεις" -#: classes/File.php:145 classes/File.php:154 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." +msgid "Tags in %s group's notices" msgstr "" -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" msgstr "" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/imagefile.php:75 #, php-format -msgid "Welcome to %1$s, @%2$s!" +msgid "That file is too big. The maximum file size is %s." msgstr "" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" +#: lib/imagefile.php:80 +msgid "Partial upload." msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." msgstr "" -#: lib/attachmentlist.php:87 -msgid "Attachments" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." msgstr "" -#: lib/attachmentlist.php:265 -msgid "Author" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." msgstr "" -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Μήνυμα" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "Συμμετοχή" -#: lib/designsettings.php:105 +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Αποχώρηση" + +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Σύνδεση με όνομα χρήστη και κωδικό" + +#: lib/logingroupnav.php:86 #, fuzzy -msgid "Upload file" -msgstr "Αδύνατη η αποθήκευση του προφίλ." +msgid "Sign up for a new account" +msgstr "Δημιουργία νέου λογαριασμού" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/designsettings.php:139 -msgid "On" +#: lib/mailbox.php:139 +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/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "από" + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Επιβεβαίωση διεύθυνσης email" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:156 -msgid "Turn background image on or off." +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/designsettings.php:161 -msgid "Tile background image" +#: lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Αλλάξτε τον κωδικό σας" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" +#: lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "Τοποθεσία: %s\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Σύνδεση" +#: lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "Αρχική σελίδα: %s\n" -#: lib/designsettings.php:204 -msgid "Sidebar" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" +"Βιογραφικό: %s\n" +"\n" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Σύνδεση" - -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" msgstr "" -#: lib/designsettings.php:248 -msgid "Restore default designs" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "Κατάσταση του/της %s" -#: lib/designsettings.php:257 -msgid "Save design" +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:509 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "New private message from %s" msgstr "" -#: lib/groupnav.php:100 -msgid "Blocked" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/groupnav.php:101 +#: lib/mail.php:554 #, php-format -msgid "%s blocked users" +msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" - #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -6869,628 +4132,436 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"The notice is here:\n" "\n" -"\t%2$s\n" +"\t%3$s\n" "\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" +"It reads:\n" "\n" -"Regards,\n" +"\t%4$s\n" "\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." - -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" - -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Αδύνατη η αποθήκευση του προφίλ." - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Ομάδες χρηστών" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Ομάδες με τα περισσότερα μέλη" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Βρες ομάδες στο site" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Ρυθμίσεις OpenID" - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Απέτυχε η ενημέρωση του χρήστη." + +#: lib/mediafile.php:270 #, php-format -msgid "That's too long. Max notice size is %d chars." +msgid " Try using another %s format." msgstr "" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 +#: lib/mediafile.php:275 #, php-format -msgid "Max notice size is %d chars, including attachment URL." +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: actions/bookmarklet.php:50 -msgid "Post to " +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." +#: lib/messageform.php:162 lib/noticeform.php:173 +#, fuzzy +msgid "Available characters" +msgstr "6 ή περισσότεροι χαρακτήρες" -#: actions/favoritesrss.php:115 +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "" + +#: lib/noticeform.php:158 #, php-format -msgid "Updates favored by %1$s on %2$s!" +msgid "What's up, %s?" msgstr "" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." +#: lib/noticelist.php:478 +msgid "in context" +msgstr "" -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." +#: lib/noticelist.php:498 +msgid "Reply to this notice" msgstr "" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "" -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" msgstr "" -"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " -"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " -"δοκιμάστε το [OpenID](%%action.openidlogin%%). " -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" msgstr "" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "" -#: actions/oembed.php:157 +#: lib/oauthstore.php:345 #, fuzzy -msgid "content type " -msgstr "Σύνδεση" +msgid "Duplicate notice" +msgstr "Διαγραφή μηνύματος" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Προσωπικά" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Ροή φίλων του/της %s" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Ροή φίλων του/της %s" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "" -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Ροή φίλων του/της %s" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Όλες οι συνδρομές" -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" msgstr "" -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Ροή φίλων του/της %s" +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "" -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Ροή φίλων του/της %s" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Ροή φίλων του/της %s" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Μέλος από" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Δημόσια" -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Ρυθμίσεις OpenID" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Ομάδες χρηστών" -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Πρόσφατες ετικέτες " -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Ροή φίλων του/της %s" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Προτεινόμενα" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Δημοφιλή" -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +#: lib/searchaction.php:120 +msgid "Search site" msgstr "" -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" +#: lib/searchaction.php:162 +msgid "Search help" msgstr "" -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Μήνυμα" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Βρες ομάδες στο site" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Ενότητα χωρίς τίτλο" + +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:307 +#: lib/subgroupnav.php:83 #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "People %s subscribes to" msgstr "" -#: actions/userauthorization.php:322 +#: lib/subgroupnav.php:91 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "People subscribed to %s" msgstr "" -#: actions/userauthorization.php:338 +#: lib/subgroupnav.php:99 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Groups %s is a member of" msgstr "" -#: actions/userauthorization.php:343 -#, php-format -msgid "Can’t read avatar URL ‘%s’." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: lib/action.php:435 +#: lib/subscriptionlist.php:126 #, fuzzy -msgid "Connect to services" -msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" +msgid "(none)" +msgstr "(κανένα)" -#: lib/action.php:785 -msgid "Site content license" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" +#: lib/subs.php:52 +msgid "User has blocked you." msgstr "" -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Απέτυχε η συνδρομή." -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." + +#: lib/subs.php:124 +msgid "Not subscribed!." msgstr "" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Απέτυχε η διαγραφή συνδρομής." + +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Κανένα" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Κορυφαίοι δημοσιευτές" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" msgstr "" -#: lib/command.php:439 -#, php-format -msgid "Reply to %s sent" +#: lib/userprofile.php:116 +msgid "Edit Avatar" msgstr "" -#: lib/command.php:441 -msgid "Error saving notice." +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: lib/common.php:191 +#: lib/userprofile.php:248 #, fuzzy -msgid "No configuration file found. " -msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." +msgid "Edit profile settings" +msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: lib/common.php:194 -msgid "Go to the installer." +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -#: lib/galleryaction.php:139 -msgid "Select tag to filter" +#: lib/util.php:844 +msgid "a few seconds ago" msgstr "" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" - -#: lib/jabber.php:192 -#, fuzzy, php-format -msgid "notice id: %s" -msgstr "Μήνυμα" - -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" +#: lib/util.php:846 +msgid "about a minute ago" msgstr "" -#: lib/mail.php:556 +#: lib/util.php:848 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" +msgid "about %d minutes ago" msgstr "" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" +#: lib/util.php:850 +msgid "about an hour ago" msgstr "" -#: lib/mail.php:613 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" +msgid "about %d hours ago" msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "από" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" msgstr "" -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Απέτυχε η ενημέρωση του χρήστη." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Διαγραφή μηνύματος" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "" -#: actions/login.php:110 actions/login.php:120 -msgid "Invalid or expired token." +#: lib/util.php:862 +msgid "about a year ago" msgstr "" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " +msgid "%s is not a valid color!" +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %s." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "" + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.mo b/locale/en_GB/LC_MESSAGES/statusnet.mo index ff0e83d81..dfe476cb9 100644 Binary files a/locale/en_GB/LC_MESSAGES/statusnet.mo and b/locale/en_GB/LC_MESSAGES/statusnet.mo differ diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index b8e8c5680..71bcfd906 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -11,5358 +11,3992 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:19+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:02+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Search Stream for \"%s\"" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" except this private data: password, e-mail address, IM address, phone " -"number." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "No such tag." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "from" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "No such user." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Updates replying to %2$s" +msgid "%s and friends, page %d" +msgstr "%s and friends, page %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s has invited you to join them on %2$s" +msgid "%s and friends" +msgstr "%s and friends" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed for friends of %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s is now listening to your notices on %2$s." +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed for friends of %s" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed for friends of %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s updates that reply to updates from %2$s / %3$s." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s's status on %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s Public Stream" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s and friends" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "%s public timeline" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Updates from %1$s and friends on %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s status" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API method not found!" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s timeline" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "This method requires a POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "%s updates from everyone!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(You should receive a message by e-mail momentarily, with instructions on " -"how to confirm your e-mail address.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "User has no profile." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** is a microblogging service." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Block user failed." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Contributors should be attributed by full name or nickname." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Unblock user failed." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "No message text!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "That's too long. Max message size is 140 chars." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 or more characters" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Recipient user not found." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 or more characters, and don't forget it!" +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 or more characters. Required." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direct messages to %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "All the direct messages sent from %s" +msgstr "All the direct messages sent from %s" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"A confirmation code was sent to the e-mail address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Direct messages to %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "All the direct messages sent to %s" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API method not found!" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "No status found with that ID." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API method under construction." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "This notice is already a favourite!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "About" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Could not create favourite." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Accept" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "This notice is not a favourite!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Add" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Could not delete favourite." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Add OpenID" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Could not follow user: User not found." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Add or remove OpenIDs" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Address" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Could not follow user: %s is already on your list." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Addresses of friends to invite (one per line)" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Could not follow user: User not found." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "All subscriptions" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "All updates for %s" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Two user ids or screen_names must be supplied." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "All updates matching search term \"%s\"" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Could not retrieve public stream." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Already logged in." +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Couldn't find any statuses." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Already subscribed!" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Could not create group." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Are you sure you want to delete this notice?" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Could not create favourite." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Authorise subscription" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Could not set group membership." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Automatically login in the future; not for shared computers!" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Nickname must have only lowercase letters and numbers, and no spaces." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Nickname already in use. Try another one." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Not a valid nickname." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Avatar updated." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Homepage is not a valid URL." + +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Full name is too long (max 255 chars)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:261 #, fuzzy, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Description is too long (max %d chars)." +msgstr "description is too long (max 140 chars)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Location is too long (max 255 chars)." + +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." msgstr "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Invalid tag: \"%s\"" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Nickname already in use. Try another one." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Awaiting confirmation on this phone number." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "You are already a member of that group" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Before »" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Bio" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Could not join user %s to group %s" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Bio is too long (max 140 chars)." +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "You are not a member of that group." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Can't delete this notice." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Could not remove user %s to group %s" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Can't read avatar URL '%s'" +msgid "%s groups" +msgstr "%s groups" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Can't save new password." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Group actions" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Cancel" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s groups" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Cannot create OpenID consumer object." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Groups %s is a member of" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Cannot normalise Jabber ID" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "This method requires a POST or DELETE." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Cannot normalise that e-mail address" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "You may not delete another user's status." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Change" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar updated." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Change e-mail handling" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "No status with that ID found." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Change password" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "That's too long. Max notice size is 140 chars." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Change your password" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Not found" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Change your profile settings" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Confirm" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Unsupported image file format." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Confirm Address" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favourites from %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Confirmation cancelled." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s updates favourited by %s / %s." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Confirmation code" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s timeline" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Confirmation code not found." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Updates replying to %2$s" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Connect" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Connect existing account" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Contact" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s updates that reply to updates from %2$s / %3$s." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Could not create OpenID from: %s" +msgid "%s public timeline" +msgstr "%s public timeline" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Could not follow user: %s is already on your list." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Could not follow user: User not found." +msgid "%s updates from everyone!" +msgstr "%s updates from everyone!" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Could not redirect to server: %s" +msgid "Notices tagged with %s" +msgstr "Notices tagged with %s" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Could not save avatar info" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Could not save new profile info" +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Not found." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Could not subscribe other to you." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No such document." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Could not subscribe." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "No nickname." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Couldn't update user with confirmed e-mail address." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "No size." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Couldn't convert request tokens to access tokens." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Invalid size." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Couldn't delete e-mail confirmation." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Couldn't delete subscription." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "You can upload your personal avatar." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Couldn't find any statuses." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "User without matching profile" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Couldn't get a request token." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Avatar settings" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Couldn't insert confirmation code." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Original" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Couldn't insert new subscription." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Preview" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Couldn't save profile." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Delete" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Couldn't update user for autosubscribe." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Upload" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Couldn't update user record." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Crop" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Couldn't update user." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "There was a problem with your session token. Try again, please." -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Create" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Unexpected form submission." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Create a new user with this nickname." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Pick a square area of the image to be your avatar" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Create new account" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Lost our file data." -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Creating new account for OpenID that already has a user." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Avatar updated." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Current confirmed Jabber/GTalk address." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Failed updating avatar." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Current confirmed SMS-enabled phone number." +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar updated." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Current confirmed e-mail address." +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "No nickname" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Currently" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "No such group" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "DB error inserting hashtag: %s" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "User profile" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "DB error inserting reply: %s" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s and friends, page %d" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Delete notice" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "A list of the users in this group." -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Describe yourself and your interests in 140 chars" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Unblock user failed." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "E-mail" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Unblock" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "E-mail Address" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Unblock this user" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "E-mail Settings" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Not logged in." -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "E-mail address already exists." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "No profile specified." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "E-mail address confirmation" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "No profile with that ID." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "E-mail address, like \"UserName@example.org\"" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Block user" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "E-mail addresses" +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Enter a nickname or e-mail address." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "No" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Enter the code you received on your phone." +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "A list of the users in this group." -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Error authorising token." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Yes" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Error connecting user to OpenID." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "A list of the users in this group." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Error connecting user." +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "You have already blocked this user." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Error inserting avatar." +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Failed to save block information." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Error inserting new profile." +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Photo" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Error inserting remote profile." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "No confirmation code." -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Error saving address confirmation." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Confirmation code not found." -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Error saving remote profile." +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "That confirmation code is not for you!" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Error saving the profile." +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Unrecognised address type %s" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Error saving the user." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "That address has already been confirmed." -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Error saving user; invalid." +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Couldn't update user." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Error setting user." +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Couldn't delete e-mail confirmation." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Error updating profile." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Confirm Address" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Error updating remote profile." +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "The address \"%s\" has been confirmed for your account." -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Error with confirmation code." +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Confirmation code" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Existing nickname" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Notices" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "F.A.Q." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "No such notice." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Failed updating avatar." +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Can't delete this notice." -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Feed for friends of %s" +#: actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed for replies to %s" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Delete notice" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed for tag %s" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Are you sure you want to delete this notice?" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Find content of notices" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Can't delete this notice." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Find people on this site" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Delete this notice" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +#: actions/deletenotice.php:157 +#, fuzzy +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/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Full name" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "This notice is not a favourite!" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Full name is too long (max 255 chars)." +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Add to favourites" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Help" +#: actions/doc.php:69 +msgid "No such document." +msgstr "No such document." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Home" +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Edit %s group" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Homepage" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "You must be logged in to create a group." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Homepage is not a valid URL." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "You must be an admin to edit the group" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "I want to post notices by e-mail." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Use this form to edit the group." -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "I.M." +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "description is too long (max 140 chars)." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "I.M. Address" +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Could not update group." -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "I.M. Settings" +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Options saved." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "E-mail Settings" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Manage how you get e-mail from %%site.name%%." + +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Address" + +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Current confirmed e-mail address." + +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Remove" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +#: actions/emailsettings.php:113 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"e-mail address you have stored in your account." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." + +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Cancel" + +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "E-mail Address" + +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "E-mail address, like \"UserName@example.org\"" + +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Add" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 #: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Incoming e-mail" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Incoming e-mail address removed." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Send e-mail to this address to post new notices." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Incorrect old password" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Make a new e-mail address for posting to - cancels the old one." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Incorrect username or password." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "New" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instructions for recovering your password have been sent to the e-mail " -"address registered to your account." +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Preferences" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Invalid avatar URL '%s'" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Send me notices of new subscriptions through e-mail." -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Invalid e-mail address: %s" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Send me e-mail when someone adds my notice as a favourite." -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Invalid homepage '%s'" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Send me e-mail when someone sends me a private message." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Invalid licence URL '%s'" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Send me e-mail when someone sends me a private message." -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Invalid notice content" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Allow friends to nudge me and send me an e-mail." -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Invalid notice URI" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "I want to post notices by e-mail." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Invalid notice URL" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publish a MicroID for my e-mail address." -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Invalid profile URL '%s'." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Save" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Invalid profile URL (bad format)" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Preferences saved." -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Invalid profile URL returned by server." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "No e-mail address." -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Invalid size." - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Invalid username or password." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Cannot normalise that e-mail address" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Invitation(s) sent" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Not a valid e-mail address." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Invitation(s) sent to the following people:" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "That is already your e-mail address." -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Invite" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "That e-mail address already belongs to another user." -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Invite new users" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Couldn't insert confirmation code." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format +#: actions/emailsettings.php:358 msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +"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 "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public Licence](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +"A confirmation code was sent to the e-mail address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID already belongs to another user." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "No pending confirmation to cancel." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "That is the wrong IM address." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Language" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Confirmation cancelled." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Language is too long (max 50 chars)." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "That is not your e-mail address." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Location" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "The address was removed." -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Location is too long (max 255 chars)." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "No incoming e-mail address." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Login" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Couldn't update user record." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Login with an [OpenID](%%doc.openid%%) account." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Incoming e-mail address removed." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "New incoming e-mail address added." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Logout" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Popular notices" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Longer name, preferably your \"real\" name" +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Popular notices, page %d" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Lost or forgotten password?" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "The most popular notices on the site right now." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Make a new e-mail address for posting to - cancels the old one." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Manage how you get e-mail from %%site.name%%." +#: 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/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Member since" +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 #, php-format -msgid "Microblog by %s" -msgstr "Microblog by %s" +msgid "%s's favorite notices" +msgstr "%s's favourite notices" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 +#: actions/favoritesrss.php:115 #, fuzzy, php-format -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 "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over e-" -"mail but isn't listed here, send e-mail to let us know at %s." +msgid "Updates favored by %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "My text and files are available under " +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "This notice is already a favourite!" -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "New" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Disfavor favourite" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Featured users" + +#: actions/featured.php:71 #, php-format -msgid "New email address for posting to %s" -msgstr "New e-mail address for posting to %s" +msgid "Featured users, page %d" +msgstr "Featured users, page %d" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "New incoming e-mail address added." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "A selection of some of the great users on %s" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "New nickname" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "New notice" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" msgstr "New notice" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "New password" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "New password successfully saved. You are now logged in." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Nickname" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Not expecting this response!" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Nickname already in use. Try another one." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "User being listened to doesn't exist." -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Nickname must have only lowercase letters and numbers, and no spaces." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "You can use the local subscription!" -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Nickname not allowed." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "That user has blocked you from subscribing." -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Nickname of the user you want to follow" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Not authorised." -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Nickname or e-mail" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Couldn't convert request tokens to access tokens." -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "No" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Unknown version of OMB protocol." -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "No Jabber ID." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Error updating remote profile." -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "No authorisation request!" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "No such group." -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 +#: actions/getfile.php:75 #, fuzzy -msgid "No carrier selected." -msgstr "No carrier selected." +msgid "No such file." +msgstr "No such notice." -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "No code entered" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "No confirmation code." - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "No content!" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Lost our file." -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "No e-mail address." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No profile specified." -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "No id." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "No incoming e-mail address." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "User has blocked you." -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "No nickname provided by remote server." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "You are not a member of that group." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "No nickname." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Block user" -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "No pending confirmation to cancel." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "No phone number." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "No profile URL returned by server." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "No ID" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "No registered e-mail address for that user." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "You must be logged in to create a group." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "No request found!" +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Groups" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "No results" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "No size." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Couldn't update user." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "No status found with that ID." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Unable to save your Twitter settings!" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "No status with that ID found." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Sync preferences saved." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "No such OpenID." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Group logo" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "No such document." +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "You can upload a logo image for your group." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "No such notice." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Pick a square area of the image to be your avatar" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "No such recovery code." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Logo updated." -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "No such subscription" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "No such user." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Failed updating logo." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "No user with that e-mail address or username." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "%s group members" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Nobody to show!" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "%s group members, page %d" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Not a recovery code." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "A list of the users in this group." -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Not a registered user." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Admin" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Not a supported data format." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Block" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Not a valid Jabber ID" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Block this user" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Not a valid OpenID." +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "You must be an admin to edit the group" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Not a valid e-mail address." +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Not a valid e-mail address." +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Not a valid nickname." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Not a valid profile URL (incorrect services)." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Not a valid profile URL (no XRDS defined)." +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Group search" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Not a valid profile URL (no YADIS document)." +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "No results" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Not an image or corrupt file." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Not authorised." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Not expecting this response!" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Groups" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Not found" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Groups, page %d" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Not logged in." +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Not subscribed!" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Create a new group" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Notice Search" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Notice feed for %s" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "User has blocked you." -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Notice has no profile" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Error removing the block." -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Notices" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "I.M. Settings" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/imsettings.php:70 #, php-format -msgid "Notices tagged with %s" -msgstr "Notices tagged with %s" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Old password" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID Account Setup" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID Auto-Submit" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID Login" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID authentication cancelled." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID authentication failed: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID failure: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID removed." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID settings" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Optionally add a personal message to the invitation." - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Partial upload." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Password" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Password and confirmation do not match." - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Password must be 6 chars or more." - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Password recovery requested" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Password saved." - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Passwords don't match." - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "People" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "People Search" +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "People Search" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "This page is not available in a " -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Personal" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Current confirmed Jabber/GTalk address." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Personal message" +#: actions/imsettings.php:114 +#, fuzzy, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Phone number, no punctuation or spaces, with area code" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "I.M. Address" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Send me notices through Jabber/GTalk." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Preferences" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferences saved." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Preferred language" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Privacy" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Problem saving notice." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profile" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Profile URL" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Profile settings" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Profile unknown" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Public Stream Feed" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Public timeline" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Send me replies through Jabber/GTalk from people I'm not subscribed to." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 +#: actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publish a MicroID for my Jabber/GTalk address." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publish a MicroID for my e-mail address." - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Recent Tags" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Recover" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Recover password" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Recovery code for unknown user." - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Register" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Registration not allowed." - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Registration successful" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Reject" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Remember me" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "No Jabber ID." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Remote profile with no matching profile" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Cannot normalise Jabber ID" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Remote subscribe" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Not a valid Jabber ID" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Remove" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "That is already your Jabber ID." -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Remove OpenID" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID already belongs to another user." -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/imsettings.php:327 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Replies" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "That is not your Jabber ID." -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/inbox.php:59 #, php-format -msgid "Replies to %s" -msgstr "Replies to %s" +msgid "Inbox for %s - page %d" +msgstr "Inbox for %s - page %d" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Reset" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Inbox for %s" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Reset password" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "This is your inbox, which lists your incoming private messages." -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS Phone number" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "You must be logged in to invite other users to use %s" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS Settings" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Invalid e-mail address: %s" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS confirmation" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Invitation(s) sent" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Same as password above" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Invite new users" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Same as password above. Required." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "You are already subscribed to these users:" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Save" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Search" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"These people are already users and you were automatically subscribed to them:" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Search Stream Feed" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Invitation(s) sent to the following people:" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format +#: actions/invite.php:150 msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/invite.php:162 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Use this form to invite your friends and colleagues to use this service." -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -#, fuzzy -msgid "Select a carrier" -msgstr "Select a carrier" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "E-mail addresses" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Send" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Addresses of friends to invite (one per line)" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Send e-mail to this address to post new notices." +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Personal message" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Send me notices of new subscriptions through e-mail." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Optionally add a personal message to the invitation." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Send me notices through Jabber/GTalk." +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Send" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -#, fuzzy +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s has invited you to join them on %2$s" + +#: actions/invite.php:228 +#, php-format msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "You must be logged in to join a group." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Settings" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "You are already a member of that group" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Settings saved." +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "Could not join user %s to group %s" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Showing most popular tags from the last week" +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s joined group %s" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Someone else already has this OpenID." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "You must be logged in to leave a group." -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Something weird happened." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "You are not a member of that group." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Sorry, no incoming e-mail allowed." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Could not find membership record." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Sorry, that is not your incoming e-mail address." +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "Could not remove user %s to group %s" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Source" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s left group %s" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistics" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Already logged in." -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Stored OpenID not found." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Subscribe" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Invalid notice content" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Subscribers" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Incorrect username or password." -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Subscription authorised" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Error setting user." -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Subscription rejected" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Login" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Subscriptions" +#: actions/login.php:243 +msgid "Login to site" +msgstr "Login to site" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "System error uploading file." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Nickname" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Tags" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Password" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Text" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Remember me" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Text search" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Automatically login in the future; not for shared computers!" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "That OpenID does not belong to you." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Lost or forgotten password?" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "That address has already been confirmed." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "That confirmation code is not for you!" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "That e-mail address already belongs to another user." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "That file is too big." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "That is already your Jabber ID." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "That is already your e-mail address." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "That is already your phone number." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "No current status" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "That is not your Jabber ID." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "New group" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "That is not your e-mail address." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Use this form to create a new group." -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "That is not your phone number." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "New message" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "That is the wrong IM address." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "You can't send a message to this user." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "That is the wrong confirmation number." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "No content!" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "That phone number already belongs to another user." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "No recipient specified." -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "That's too long. Max notice size is 140 chars." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't 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/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "That's too long. Max notice size is 255 chars." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Message" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "The address \"%s\" has been confirmed for your account." +msgid "Direct message to %s sent" +msgstr "Direct message to %s sent" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "The address was removed." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Ajax Error" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"The subscription has been authorised, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorise the " -"subscription. Your subscription token is:" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "New notice" + +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Notice posted" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 +#: actions/noticesearch.php:68 +#, php-format msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "These are the people who listen to %s's notices." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Text search" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "These are the people who listen to your notices." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Search Stream for \"%s\"" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "These are the people whose notices %s listens to." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "These are the people whose notices you listen to." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"These people are already users and you were automatically subscribed to them:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "This confirmation code is too old. Please start again." -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:124 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"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." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "This method requires a POST or DELETE." +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Updates from %1$s on %2$s!" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "This method requires a POST." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "All updates matching search term \"%s\"" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "This page is not available in a media type you accept" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"This user doesn't allow nudges or hasn't confirmed or set his e-mail yet." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Timezone" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Nudge sent" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Timezone not selected." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Nudge sent!" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Notice has no profile" + +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgid "%1$s's status on %2$s" +msgstr "%1$s's status on %2$s" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Two user ids or screen_names must be supplied." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Connect" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL of your homepage, blog, or profile on another site" +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL of your profile on another compatible microblogging service" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Not a supported data format." -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Unexpected form submission." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "People Search" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Unexpected password reset." +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Notice Search" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Unknown action" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Other Settings" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Unknown version of OMB protocol." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Manage various other options." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Unrecognised address type %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Unsubscribe" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Unsupported OMB version" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Automatic shortening service to use." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Unsupported image file format." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profile settings" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Updates by SMS" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Updates by instant messenger (I.M.)" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "URL shortening service is too long (max 50 chars)." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Updates from %1$s and friends on %2$s!" +msgid "Outbox for %s - page %d" +msgstr "Outbox for %s - page %d" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Updates from %1$s on %2$s!" +msgid "Outbox for %s" +msgstr "Outbox for %s" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Upload" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "This is your outbox, which lists private messages you have sent." -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site licence, also. Use a picture that belongs to you and that you want to " -"share." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Upload a new profile image" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Change password" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Used only for updates, announcements, and password recovery" +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Change your password." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "User being listened to doesn't exist." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Password change" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "User has no profile." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Old password" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "User nickname" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "New password" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "User not found." +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 or more characters" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "In which timezone are you?" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Confirm" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "What's up, %s?" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "same as password above" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Where you are, like \"City, State (or Region), Country\"" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Change" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Wrong image type for '%s'" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Password must be 6 or more characters." -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Wrong size image at '%s'" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Passwords don't match." -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Yes" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Incorrect old password" + +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Error saving user; invalid." + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Can't save new password." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "You already have this OpenID!" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Password saved." -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +#: actions/peoplesearch.php:52 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "You are already logged in!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "You are already subscribed to these users:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "You are not friends with the specified user." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "You can change your password here. Choose a good one!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "People Search" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "You can create a new account to start posting notices." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Not a valid people tag: %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "You can receive SMS messages through e-mail from %%site.name%%." +msgid "Users self-tagged with %s - page %d" +msgstr "Users self-tagged with %s - page %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Invalid notice content" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Profile settings" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" "You can update your personal profile info here so people know more about you." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "You can use the local subscription!" +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Profile information" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "You can't register if you don't agree to the licence." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "You did not send us that profile" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Full name" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"You have a new posting address on %1$s.\n" -"\n" -"Send e-mail to %2$s to post new messages.\n" -"\n" -"More e-mail instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Homepage" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "You may not delete another user's status." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL of your homepage, blog, or profile on another site" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "You must be logged in to invite other users to use %s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Describe yourself and your interests in 140 chars" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Describe yourself and your " + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Bio" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "You've been identified. Enter a new password below. " +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Location" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Your OpenID URL" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Where you are, like \"City, State (or Region), Country\"" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Your nickname on this server, or your registered e-mail address." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Tags" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "a few seconds ago" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "about %d days ago" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Language" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "about %d hours ago" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Preferred language" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "about %d minutes ago" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Timezone" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "about %d months ago" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "In which timezone are you?" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "about a day ago" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "about a minute ago" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Bio is too long (max 140 chars)." -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "about a month ago" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Timezone not selected." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "about a year ago" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Language is too long (max 50 chars)." -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "about an hour ago" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Invalid tag: \"%s\"" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "delete" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "in reply to…" - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "reply" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "same as password above" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Couldn't update user for autosubscribe." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "unsupported file type" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "← After" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Couldn't save profile." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "This notice is not a favourite!" +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Couldn't save tags." -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Could not delete favourite." +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Settings saved." -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Favour" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Send me e-mail when someone adds my notice as a favourite." +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Could not retrieve public stream." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Send me e-mail when someone sends me a private message." +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Public timeline, page %d" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "This notice is already a favourite!" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Public timeline" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Could not create favourite." +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Public Stream Feed" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Disfavour" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Public Stream Feed" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "%s's favorite notices" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Public Stream Feed" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 +#: actions/public.php:179 #, php-format -msgid "Feed of favorite notices of %s" -msgstr "Feed of favourite notices of %s" +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Inbox for %s - page %d" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/public.php:186 #, php-format -msgid "Inbox for %s" -msgstr "Inbox for %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "This is your inbox, which lists your incoming private messages." +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:233 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Automatically login in the future; " +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "For security reasons, please re-enter your " - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Login with your username and password. " +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Public tag cloud" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "That's too long. Max message size is 140 chars." +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "These are most popular recent tags on %s " -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "No recipient specified." +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "You can't send a message to this user." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/publictagcloud.php:75 +#, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -"Don't send a message to yourself; just say it to yourself quietly instead." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "No such user" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "New message" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Notice without matching profile" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Tag cloud" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) lets you log into many sites " +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "You are already logged in!" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "If you want to add an OpenID to your account, " +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "No such recovery code." -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Removing your only OpenID would make it impossible to log in! " +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Not a recovery code." -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "You can remove an OpenID from your account " +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Recovery code for unknown user." -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Outbox for %s - page %d" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Error with confirmation code." -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Outbox for %s" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "This confirmation code is too old. Please start again." -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "This is your outbox, which lists private messages you have sent." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Couldn't update user with confirmed e-mail address." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"Search for people on %%site.name%% by their name, location, or interests. " - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "You can update your personal profile info here " -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "User without matching profile" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "This confirmation code is too old. " +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "If you've forgotten or lost your" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "You've been identified. Enter a " +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Your nickname on this server, or your registered e-mail address." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Your nickname on this server, " +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Recover" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instructions for recovering your password " +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Reset password" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "New password successfully saved. " +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Recover password" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Password must be 6 or more characters." +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Password recovery requested" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to…" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Unknown action" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(You should receive a message by e-mail momentarily, with " +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 or more characters, and don't forget it!" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "To subscribe, you can [login](%%action.login%%)," +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Same as password above" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Feed for favourites of %s" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Reset" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Could not retrieve favourite notices." +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Enter a nickname or e-mail address." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "No such message." +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "No user with that e-mail address or username." -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Only the sender and recipient may read this message." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "No registered e-mail address for that user." -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Message to %1$s on %2$s" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Error saving address confirmation." -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Message from %1$s on %2$s" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Instructions for recovering your password have been sent to the e-mail " +"address registered to your account." -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Send a message" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Unexpected password reset." -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, fuzzy, php-format -msgid "Mobile carrier for your phone. " -msgstr "Mobile carrier for your phone. " +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Password must be 6 chars or more." -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Direct messages to %s" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Password and confirmation do not match." -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "All the direct messages sent to %s" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "New password successfully saved. You are now logged in." -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Direct Messages You've Sent" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Sorry, only invited people can register." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "All the direct messages sent from %s" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Error with confirmation code." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "No message text!" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Registration successful" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Recipient user not found." +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Register" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -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." +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Registration not allowed." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favourites from %s" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "You can't register if you don't agree to the licence." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s updates favourited by %s / %s." +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Not a valid e-mail address." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s added your notice as a favourite" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "E-mail address already exists." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s just added your notice from %2$s as one of their favourites.\n" -"\n" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Invalid username or password." -#: actions/twittersettings.php:27 +#: actions/register.php:342 msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Add your Twitter account to automatically send your notices to Twitter, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Twitter settings" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Twitter Account" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Current verified Twitter account." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Twitter Username" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "No spaces, please." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Twitter Password" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Automatically send my notices to Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Send local \"@\" replies to Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Subscribe to my Twitter friends here." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Could not verify your Twitter credentials!" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Unable to retrieve account information for \"%s\" from Twitter." +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 or more characters. Required." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Unable to save your Twitter settings!" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Same as password above. Required." -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Twitter settings saved." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "That is not your Twitter account." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Couldn't remove Twitter user." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Twitter account removed." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Couldn't save Twitter preferences." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Twitter preferences saved." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Please check these details to make sure " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "The subscription has been authorised, but no " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "The subscription has been rejected, but no " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Command results" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "E-mail" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Command complete" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Used only for updates, announcements, and password recovery" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Command failed" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Longer name, preferably your \"real\" name" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Sorry, this command is not yet implemented." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "My text and files are available under " -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Subscriptions: %1$s\n" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "User has no last notice" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" except this private data: password, e-mail address, IM address, phone " +"number." -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Notice marked as fave." - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Fullname: %s" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/register.php:537 #, php-format -msgid "Location: %s" -msgstr "Location: %s" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Homepage: %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(You should receive a message by e-mail momentarily, with instructions on " +"how to confirm your e-mail address.)" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 +#: actions/remotesubscribe.php:98 #, php-format -msgid "About: %s" -msgstr "About: %s" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Message too long - maximum is 140 characters, you sent %d" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Remote subscribe" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Direct message to %s sent" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscribe to this user" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Error sending direct message." +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "User nickname" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Specify the name of the user to subscribe to" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Nickname of the user you want to follow" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Subscribed to %s" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Profile URL" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Specify the name of the user to unsubscribe from" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL of your profile on another compatible microblogging service" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Unsubscribed from %s" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Subscribe" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Command not yet implemented." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Invalid profile URL (bad format)" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Notification off." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Not a valid profile URL (no YADIS document)." -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Can't turn off notification." +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "That's a local profile! Login to subscribe." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Notification on." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Couldn't get a request token." -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Can't turn on notification." +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Replies to %s" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Commands:\n" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Replies to %s, page %d" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Could not insert message." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Notice feed for %s" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Could not update message with new URI." +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Notice feed for %s" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "User without matching profile in system." +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Notice feed for %s" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/replies.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"You have a new posting address on %1$s.\n" -"\n" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/replies.php:203 #, php-format -msgid "New private message from %s" -msgstr "New private message from %s" +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/replies.php:205 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Only the user can read their own mailboxes." +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Message to %1$s on %2$s" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "This form should automatically submit itself. " +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favourite notices, page %d" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Favourites" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Could not retrieve favourite notices." -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showfavorites.php:170 #, php-format -msgid "%s's favorite notices" -msgstr "%s's favourite notices" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "User" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Inbox" +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed for friends of %s" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Your incoming messages" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed for friends of %s" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Outbox" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed for friends of %s" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Your sent messages" +#: actions/showfavorites.php:205 +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 "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Twitter integration options" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "To" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Could not parse message." +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "%s group" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showgroup.php:84 #, php-format -msgid "%s and friends, page %d" -msgstr "%s and friends, page %d" +msgid "%s group, page %d" +msgstr "%s group, page %d" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "You can upload your personal avatar." +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Group profile" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Avatar settings" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Original" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Note" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Preview" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Crop" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "There was a problem with your session token. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Pick a square area of the image to be your avatar" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Group actions" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Lost our file data." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Notice feed for %s group" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Lost our file." +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Notice feed for %s group" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Unknown file type" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Notice feed for %s group" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "No profile specified." +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Outbox for %s" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "No profile with that ID." +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Members" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Block user" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(None)" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Are you sure you want to block this user? " +#: actions/showgroup.php:392 +msgid "All members" +msgstr "All members" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "You have already blocked this user." +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistics" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Failed to save block information." +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Create" -#: actions/confirmaddress.php:159 +#: actions/showgroup.php:448 #, php-format -msgid "The address \"%s\" has been " -msgstr "The address \"%s\" has been " +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 "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "You are about to permanently delete a notice. " +#: actions/showgroup.php:454 +#, fuzzy, 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." +"wikipedia.org/wiki/Micro-blogging) service " -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Add to favourites" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "Edit %s group" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "No such message." -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Inboxes must be enabled for groups to work" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Only the sender and recipient may read this message." -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "You must be logged in to create a group." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Message to %1$s on %2$s" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "No nickname" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Message from %1$s on %2$s" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "No such group" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Notice posted" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "You must be an admin to edit the group" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Notices tagged with %s" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Use this form to edit the group." +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "%s, page %d" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Nickname must have only lowercase letters " +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Notice feed for %s group" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "description is too long (max 140 chars)." +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Notice feed for %s" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Could not update group." +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Notice feed for %s" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Options saved." +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Notice feed for %s" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Awaiting confirmation on this address. " +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Outbox for %s" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Make a new e-mail address for posting to; " +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Send me e-mail when someone " +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Allow friends to nudge me and send me an e-mail." +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "That e-mail address already belongs " +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "A confirmation code was sent to the e-mail address you added. " +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Server error - couldn't get user!" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS Settings" -#: actions/facebookhome.php:196 +#: actions/smssettings.php:69 #, php-format -msgid "If you would like the %s app to automatically update " -msgstr "If you would like the %s app to automatically update " +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "You can receive SMS messages through e-mail from %%site.name%%." -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Allow %s to update my Facebook status" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "This page is not available in a " -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Skip" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Current confirmed SMS-enabled phone number." -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "No notice content!" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Awaiting confirmation on this phone number." -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Pagination" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Confirmation code" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "After" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Enter the code you received on your phone." -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Before" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS Phone number" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Thanks for inviting your friends to use %s" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Phone number, no punctuation or spaces, with area code" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Invitations have been sent to the following users:" +#: actions/smssettings.php:174 +#, fuzzy +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "You have been invited to %s" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "No phone number." -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Invite your friends to use %s" +#: actions/smssettings.php:311 +#, fuzzy +msgid "No carrier selected." +msgstr "No carrier selected." -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Friends already using %s:" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "That is already your phone number." -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "Send invitations" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "That phone number already belongs to another user." -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Couldn't remove Facebook user." +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "There was a problem saving your sync preferences!" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "That is the wrong confirmation number." -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Sync preferences saved." +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "That is not your phone number." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Automatically update my Facebook status with my notices." +#: actions/smssettings.php:465 +#, fuzzy +msgid "Mobile carrier" +msgstr "Mobile carrier" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Send \"@\" replies to Facebook." +#: actions/smssettings.php:469 +#, fuzzy +msgid "Select a carrier" +msgstr "Select a carrier" -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Prefix" +#: actions/smssettings.php:476 +#, fuzzy, php-format +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 "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over e-" +"mail but isn't listed here, send e-mail to let us know at %s." -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "A string to prefix notices with." +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "No code entered" -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "If you would like %s to automatically update " - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Sync preferences" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Disfavor favourite" - -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Popular notices" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "You are not subscribed to that profile." -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Popular notices, page %d" +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Could not save subscription." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "The most popular notices on the site right now." +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Not a local user." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Featured users" +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Subscribed" -#: actions/featured.php:71 +#: actions/subscribers.php:50 #, php-format -msgid "Featured users, page %d" -msgstr "Featured users, page %d" +msgid "%s subscribers" +msgstr "%s subscribers" -#: actions/featured.php:99 +#: actions/subscribers.php:52 #, php-format -msgid "A selection of some of the great users on %s" -msgstr "A selection of some of the great users on %s" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "That user has blocked you from subscribing." - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "No ID" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Group logo" +msgid "%s subscribers, page %d" +msgstr "%s subscribers, page %d" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "You can upload a logo image for your group." +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "These are the people who listen to your notices." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Logo updated." +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "These are the people who listen to %s's notices." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Failed updating logo." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/subscribers.php:110 #, php-format -msgid "%s group members" -msgstr "%s group members" +msgid "%s has no subscribers. Want to be the first?" +msgstr "" -#: actions/groupmembers.php:96 +#: actions/subscribers.php:114 #, php-format -msgid "%s group members, page %d" -msgstr "%s group members, page %d" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "A list of the users in this group." - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Groups" +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" -#: actions/groups.php:64 +#: actions/subscriptions.php:52 #, php-format -msgid "Groups, page %d" -msgstr "Groups, page %d" +msgid "%s subscriptions" +msgstr "%s subscriptions" -#: actions/groups.php:90 +#: actions/subscriptions.php:54 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%% groups let you find and talk with " +msgid "%s subscriptions, page %d" +msgstr "%s subscriptions, page %d" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Create a new group" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "These are the people whose notices you listen to." -#: actions/groupsearch.php:57 +#: actions/subscriptions.php:69 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Search for groups on %%site.name%% by their name, location, or description. " - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Group search" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "You can send and receive notices through " +msgid "These are the people whose notices %s listens to." +msgstr "These are the people whose notices %s listens to." -#: actions/imsettings.php:120 +#: actions/subscriptions.php:121 #, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber or GTalk address, " +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Send me replies through Jabber/GTalk " +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s is now listening to " -#: actions/imsettings.php:321 -#, php-format -msgid "A confirmation code was sent " -msgstr "A confirmation code was sent " +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "You must be logged in to join a group." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "You are already a member of that group" +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Not logged in" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Could not join user %s to group %s" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "No id argument." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/tagother.php:65 #, php-format -msgid "%s joined group %s" -msgstr "%s joined group %s" +msgid "Tag %s" +msgstr "Tag %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Inboxes must be enabled for groups to work." +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "User profile" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "You must be logged in to leave a group." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Photo" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "No such group." +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Tag user" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "You are not a member of that group." +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "You may not leave a group while you are its administrator." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"You can only tag people you are subscribed to or who are subscribed to you." -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Could not find membership record." +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Could not save tags." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "Could not remove user %s to group %s" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "Use this form to add tags to your subscribers or subscriptions." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/tag.php:68 #, php-format -msgid "%s left group %s" -msgstr "%s left group %s" +msgid "Notices tagged with %s, page %d" +msgstr "Notices tagged with %s, page %d" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Login to site" +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Notice feed for %s" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "No current status" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Notice feed for %s" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "New group" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Notice feed for %s" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Use this form to create a new group." +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "No such tag." -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Could not create group." +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API method under construction." -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Could not set group membership." +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "No profile id in request." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "That's too long. " +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "No profile with that id." -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Don't send a message to yourself; " +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Unsubscribed" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Notice posted" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Ajax Error" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Authorise subscription" -#: actions/nudge.php:85 +#: actions/userauthorization.php:110 +#, fuzzy msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -"This user doesn't allow nudges or hasn't confirmed or set his e-mail yet." +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Nudge sent" +#: actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "licence." -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Nudge sent!" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Accept" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "OpenID login" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subscribe to this user" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Removing your only OpenID " +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Reject" -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Other Settings" +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s subscriptions" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Manage various other options." +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "No authorisation request!" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "URL Auto-shortening" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Subscription authorised" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Service" +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"The subscription has been authorised, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorise the " +"subscription. Your subscription token is:" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Automatic shortening service to use." +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Subscription rejected" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "URL shortening service is too long (max 50 chars)." +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Change your password." +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Password change" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/userauthorization.php:307 #, php-format -msgid "Not a valid people tag: %s" -msgstr "Not a valid people tag: %s" +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/userauthorization.php:322 #, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Users self-tagged with %s - page %d" +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" -#: actions/peopletag.php:91 +#: actions/userauthorization.php:338 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "These are users who have tagged themselves \"%s\" " +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Profile information" +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Can't read avatar URL '%s'" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Wrong image type for '%s'" + +#: actions/userbyid.php:70 +msgid "No id." +msgstr "No id." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profile settings" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Automatically subscribe to whoever " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/usergroups.php:64 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Invalid tag: \"%s\"" +msgid "%s groups, page %d" +msgstr "%s groups, page %d" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Couldn't save tags." +#: actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Search for people or text" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "Public timeline, page %d" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "You are not a member of that group." -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Could not retrieve public stream." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/public.php:220 +#: classes/File.php:137 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Public tag cloud" -#: actions/publictagcloud.php:63 +#: classes/File.php:147 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "These are most popular recent tags on %s " +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Tag cloud" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Sorry, only invited people can register." +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Could not insert message." -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "You can't register if you don't " +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Could not update message with new URI." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "With this form you can create " +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "DB error inserting hashtag: %s" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 lowercase letters or numbers, " +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problem saving notice." -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Used only for updates, announcements, " +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Problem saving notice. Unknown user." -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "URL of your homepage, blog, " +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Too many notices too fast; take a breather and post again in a few minutes." -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Describe yourself and your " +#: classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Too many notices too fast; take a breather and post again in a few minutes." -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Where you are, like \"City, " +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "You are banned from posting notices on this site." -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " except this private data: password, " +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Problem saving notice." -#: actions/register.php:471 +#: classes/Notice.php:1120 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgid "DB error inserting reply: %s" +msgstr "DB error inserting reply: %s" -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(You should receive a message by e-mail " +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Message to %1$s on %2$s" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "That's a local profile! Login to subscribe." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profile" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "Replies to %s, page %d" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Change your profile settings" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "%s favourite notices, page %d" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Upload an avatar" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "%s group" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Change your password" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "%s group, page %d" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Change e-mail handling" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Group profile" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "User profile" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Note" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Other" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Group actions" +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Other options" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: lib/action.php:144 #, php-format -msgid "Notice feed for %s group" -msgstr "Notice feed for %s group" +msgid "%s - %s" +msgstr "%s - %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Members" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Untitled page" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(None)" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Primary site navigation" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "All members" +#: lib/action.php:430 +msgid "Home" +msgstr "Home" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Personal profile and friends timeline" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Only the sender and recipient " +#: lib/action.php:432 +msgid "Account" +msgstr "Account" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, page %d" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Change your e-mail, avatar, password, profile" -#: actions/showstream.php:143 -msgid "'s profile" -msgstr "'s profile" +#: lib/action.php:435 +msgid "Connect" +msgstr "Connect" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "User profile" +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Could not redirect to server: %s" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Photo" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invite" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "User actions" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Invite friends and colleagues to join you on %s" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Send a direct message to this user" +#: lib/action.php:445 +msgid "Logout" +msgstr "Logout" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Message" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Logout from the site" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "All subscribers" +#: lib/action.php:450 +msgid "Create an account" +msgstr "Create an account" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "All groups" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Login to the site" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Help" -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Phone number, no punctuation or spaces, " +#: lib/action.php:456 +msgid "Help me!" +msgstr "Help me!" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Send me notices through SMS; " +#: lib/action.php:459 +msgid "Search" +msgstr "Search" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "A confirmation code was sent to the phone number you added. " +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Search for people or text" -#: actions/smssettings.php:453 actions/smssettings.php:465 -#, fuzzy -msgid "Mobile carrier" -msgstr "Mobile carrier" +#: lib/action.php:480 +msgid "Site notice" +msgstr "Site notice" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "You are not subscribed to that profile." +#: lib/action.php:546 +msgid "Local views" +msgstr "Local views" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Could not save subscription." +#: lib/action.php:612 +msgid "Page notice" +msgstr "Page notice" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Not a local user." +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Secondary site navigation" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Subscribed" +#: lib/action.php:721 +msgid "About" +msgstr "About" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "%s subscribers" +#: lib/action.php:723 +msgid "FAQ" +msgstr "F.A.Q." -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "%s subscribers, page %d" +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "These are the people who listen to " +#: lib/action.php:730 +msgid "Privacy" +msgstr "Privacy" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "These are the people who " +#: lib/action.php:732 +msgid "Source" +msgstr "Source" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "%s subscriptions" +#: lib/action.php:734 +msgid "Contact" +msgstr "Contact" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "%s subscriptions, page %d" +#: lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Nudge" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "These are the people whose notices " +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "StatusNet software licence" -#: actions/subscriptions.php:69 +#: lib/action.php:767 #, php-format -msgid "These are the people whose " -msgstr "These are the people whose " - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#: lib/action.php:769 #, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Notices tagged with %s, page %d" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** is a microblogging service." -#: actions/tag.php:66 actions/tag.php:73 +#: lib/action.php:771 #, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Messages tagged \"%s\", most recent first" +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public Licence](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Not logged in" +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet software licence" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "No id argument." +#: lib/action.php:794 +msgid "All " +msgstr "All " -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Tag %s" +#: lib/action.php:799 +msgid "license." +msgstr "licence." -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Tag user" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Pagination" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: lib/action.php:1062 +msgid "After" +msgstr "After" + +#: lib/action.php:1070 +msgid "Before" +msgstr "Before" -#: actions/tagother.php:164 +#: lib/action.php:1119 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -"You can only tag people you are subscribed to or who are subscribed to you." -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Could not save tags." - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Use this form to add tags to your subscribers or subscriptions." +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "No such tag." +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profile" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Microblog tagged with %s" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Block user failed." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Unblock user failed." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Command results" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Not found." +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Command complete" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Add your Twitter account to automatically send " +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Command failed" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Twitter user name" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Sorry, this command is not yet implemented." -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Twitter password" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Couldn't update user with confirmed e-mail address." -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Twitter Friends" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Username must have only numbers, " +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Nudge sent" -#: actions/twittersettings.php:341 +#: lib/command.php:126 #, php-format -msgid "Unable to retrieve account information " -msgstr "Unable to retrieve account information " +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Error removing the block." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "No profile id in request." - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "No profile with that id." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "User has no last notice" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Unsubscribed" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Notice marked as fave." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: lib/command.php:315 #, php-format -msgid "%s groups" -msgstr "%s groups" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: lib/command.php:318 #, php-format -msgid "%s groups, page %d" -msgstr "%s groups, page %d" +msgid "Fullname: %s" +msgstr "Fullname: %s" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Problem saving notice. Unknown user." +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Location: %s" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Homepage: %s" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "You are banned from posting notices on this site." +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "About: %s" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Upload an avatar" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Message too long - maximum is 140 characters, you sent %d" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Other" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Error sending direct message." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Other options" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Message too long - maximum is 140 characters, you sent %d" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "%s - %s" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Reply to this notice" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Untitled page" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problem saving notice." -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Primary site navigation" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Specify the name of the user to subscribe to" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Personal profile and friends timeline" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Subscribed to %s" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Search for people or text" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Specify the name of the user to unsubscribe from" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Account" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Unsubscribed from %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Change your e-mail, avatar, password, profile" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Command not yet implemented." -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Connect to IM, SMS, Twitter" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Notification off." -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Logout from the site" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Can't turn off notification." -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Login to the site" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Notification on." -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Create an account" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Can't turn on notification." -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Login with OpenID" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Could not create OpenID from: %s" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Help me!" +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Site notice" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Local views" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "No confirmation code." -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "Page notice" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Secondary site navigation" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "StatusNet software licence" +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Login to the site" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "All " +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "I.M." -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "licence." +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Updates by instant messenger (I.M.)" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Block this user" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Updates by SMS" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Block" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Disfavour this notice" +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "To use the %s Facebook Application you need to login " +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Upload" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " a new account." +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Published" +#: lib/designsettings.php:139 +msgid "On" +msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Favour this notice" +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Export data" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Filter tags" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "All" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Change your password" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Tag" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Choose a tag to narrow list" +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connect" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Go" +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Search" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Text" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Login" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Disfavour this notice" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Favour this notice" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Favour" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Export data" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Filter tags" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "All" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Select a carrier" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Tag" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Choose a tag to narrow list" + +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Go" + +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" msgstr "URL of the homepage or blog of the group or topic" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Describe the group or topic in 140 chars" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Describe the group or topic in 140 chars" + #: lib/groupeditform.php:172 msgid "Description" msgstr "Description" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Describe the group or topic in 140 chars" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" "Location for the group, if any, like \"City, State (or Region), Country\"" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Group" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Admin" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Block" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Block user" + +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Edit %s group properties" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Add or edit %s logo" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Add or edit %s logo" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Groups with most members" @@ -5377,8 +4011,42 @@ msgid "Tags in %s group's notices" msgstr "Tags in %s group's notices" #: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "This page is not available in a " +msgid "This page is not available in a media type you accept" +msgstr "This page is not available in a media type you accept" + +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "You can upload a logo image for your group." + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Partial upload." + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "System error uploading file." + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Not an image or corrupt file." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Unsupported image file format." + +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Lost our file." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Unknown file type" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "New notice" #: lib/joinform.php:114 msgid "Join" @@ -5388,43 +4056,87 @@ msgstr "Join" msgid "Leave" msgstr "Leave" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Login with a username and password" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Sign up for a new account" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Login or register with OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Only the user can read their own mailboxes." + +#: lib/mailbox.php:139 +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:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "from" + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "E-mail address confirmation" -#: lib/mail.php:175 +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" -msgstr "" -"Hey, %s.\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" "\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:235 #, php-format -msgid "%1$s is now listening to " -msgstr "%1$s is now listening to " +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s is now listening to your notices on %2$s." + +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Location: %s\n" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -5433,65 +4145,226 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 #, php-format -msgid "You've been nudged by %s" -msgstr "You've been nudged by %s" +msgid "New email address for posting to %s" +msgstr "New e-mail address for posting to %s" -#: lib/mail.php:465 +#: lib/mail.php:288 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) is wondering what you are up to " +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"You have a new posting address on %1$s.\n" +"\n" +"Send e-mail to %2$s to post new messages.\n" +"\n" +"More e-mail instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" -#: lib/mail.php:555 +#: lib/mail.php:412 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s just added your notice from %2$s" +msgid "%s status" +msgstr "%s status" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "From" +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS confirmation" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Send a direct notice" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "You've been nudged by %s" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Send a notice" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "New private message from %s" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s added your notice as a favourite" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Could not retrieve public stream." + +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Send a direct notice" + +#: lib/messageform.php:146 +msgid "To" +msgstr "To" + +#: lib/messageform.php:162 lib/noticeform.php:173 msgid "Available characters" msgstr "Available characters" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "in reply to" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Send a notice" + +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "What's up, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "No content!" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Delete this notice" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Delete" - #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "Nudge this user" @@ -5504,41 +4377,139 @@ msgstr "Nudge" msgid "Send a nudge to this user" msgstr "Send a nudge to this user" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Error inserting new profile." + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Error inserting avatar." + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Error inserting remote profile." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Delete notice" + +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Couldn't insert new subscription." + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Personal" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Replies" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favourites" + +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "User" + +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Inbox" + +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Your incoming messages" + +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Outbox" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Your sent messages" + #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" msgstr "Tags in %s's notices" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(none)" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Subscriptions" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "All subscriptions" + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Subscribers" + +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "All subscribers" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "User" + +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Member since" + +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "All groups" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +#: lib/publicgroupnav.php:78 msgid "Public" msgstr "Public" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +#: lib/publicgroupnav.php:82 msgid "User groups" msgstr "User groups" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Recent tags" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +#: lib/publicgroupnav.php:88 msgid "Featured" msgstr "Featured" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +#: lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Search" + +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Search" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "People" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Find people on this site" + #: lib/searchgroupnav.php:82 msgid "Notice" msgstr "Notice" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Find content of notices" + #: lib/searchgroupnav.php:85 msgid "Find groups on this site" msgstr "Find groups on this site" @@ -5547,35 +4518,62 @@ msgstr "Find groups on this site" msgid "Untitled section" msgstr "Untitled section" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "People %s subscribes to" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "People subscribed to %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Groups %s is a member of" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Invite friends and colleagues to join you on %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "User has blocked you." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Subscribe to this user" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(none)" + +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" + +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "User has blocked you." + +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Could not subscribe." + +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Could not subscribe other to you." + +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Not subscribed!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Couldn't delete subscription." #: lib/tagcloudsection.php:56 msgid "None" @@ -5585,2088 +4583,106 @@ msgstr "None" msgid "Top posters" msgstr "Top posters" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Unblock this user" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Unblock" - #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Unsubscribe from this user" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed for friends of %s" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed for friends of %s" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed for friends of %s" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Unsubscribe" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/userprofile.php:116 #, fuzzy -msgid "You and friends" -msgstr "%s and friends" +msgid "Edit Avatar" +msgstr "Avatar" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "You can upload your personal avatar." +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "User actions" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/userprofile.php:248 #, fuzzy -msgid "Avatar deleted." -msgstr "Avatar updated." - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +msgid "Edit profile settings" +msgstr "Profile settings" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "There was a problem with your session token. Try again, please." +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Send a direct message to this user" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Send me e-mail when someone sends me a private message." +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Message" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "a few seconds ago" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "about a minute ago" -#: actions/facebooksettings.php:124 +#: lib/util.php:848 #, 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 "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "You can upload a logo image for your group." - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Pick a square area of the image to be your avatar" - -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Microblog by %s" +msgid "about %d minutes ago" +msgstr "about %d minutes ago" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "about an hour ago" -#: actions/groups.php:90 +#: lib/util.php:852 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Error sending direct message." - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Search Stream for \"%s\"" - -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Public Stream Feed" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Public Stream Feed" - -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Public Stream Feed" +msgid "about %d hours ago" +msgstr "about %d hours ago" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "about a day ago" -#: actions/register.php:286 actions/register.php:329 +#: lib/util.php:856 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" except this private data: password, e-mail address, IM address, phone " -"number." +msgid "about %d days ago" +msgstr "about %d days ago" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Create" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "about a month ago" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: lib/util.php:860 #, 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 "" - -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Group profile" - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "'s profile" - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Notice feed for %s" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Notice feed for %s" +msgid "about %d months ago" +msgstr "about %d months ago" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Notice feed for %s" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "about a year ago" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Outbox for %s" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Avatar" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Profile settings" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +msgid "%s is not a valid color!" +msgstr "Homepage is not a valid URL." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: lib/webcolor.php:123 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Could not parse message." -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "No such user" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Add your Twitter account to automatically send your notices to Twitter, " - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Unable to retrieve account information for \"%s\" from Twitter." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Search for people or text" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Too many notices too fast; take a breather and post again in a few minutes." - -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Connect to IM, SMS, Twitter" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Nudge" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "To use the %s Facebook Application you need to login " - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Search" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "No such document." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "A list of the users in this group." - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "A list of the users in this group." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "User profile" - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s and friends, page %d" - -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "A list of the users in this group." - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Unblock user failed." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Confirmation code" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Can't delete this notice." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Invalid tag: \"%s\"" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Nickname already in use. Try another one." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Could not create favourite." - -#: 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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "New notice" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "New notice" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Not a valid nickname." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "No profile specified." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "User has blocked you." - -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "You are not a member of that group." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Block user" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "You must be logged in to create a group." - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Groups" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Couldn't update user." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Unable to save your Twitter settings!" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Sync preferences saved." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "You must be an admin to edit the group" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Admin" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "No results" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "User has blocked you." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Message" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Couldn't save profile." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Profile settings" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"e-mail address you have stored in your account." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "You've been identified. Enter a new password below. " - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Password recovery requested" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Error with confirmation code." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Subscribe to this user" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s favourite notices, page %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Notice feed for %s group" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Notice feed for %s group" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Notice feed for %s group" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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." -"wikipedia.org/wiki/Micro-blogging) service " - -#: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy -msgid "Admins" -msgstr "Admin" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Not a local user." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Notices tagged with %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Notice feed for %s group" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s is now listening to " - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Notice feed for %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Notice feed for %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "This notice is already a favourite!" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "This notice is not a favourite!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Could not retrieve public stream." - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "No recipient specified." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Couldn't find any statuses." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Updates replying to %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Updates from %1$s on %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "licence." - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "%s subscriptions" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Profile settings" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "You are not a member of that group." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Problem saving notice." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Message to %1$s on %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "User profile" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Profile" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Upload" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Change your password" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Connect" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Search" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Login" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Block" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Block user" - -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Add or edit %s logo" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "No content!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "User" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Search" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Homepage is not a valid URL." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "No such tag." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Direct messages to %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "That's too long. Max message size is 140 chars." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Could not follow user: User not found." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "description is too long (max 140 chars)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "You are already a member of that group" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Could not join user %s to group %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "You are not a member of that group." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Could not remove user %s to group %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s groups" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Groups %s is a member of" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Group actions" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Avatar updated." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "That's too long. Max notice size is 140 chars." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Unsupported image file format." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Photo" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "description is too long (max 140 chars)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Updates from %1$s on %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "User being listened to doesn't exist." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Not authorised." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Couldn't convert request tokens to access tokens." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Unknown version of OMB protocol." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "No such notice." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Lost our file." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Updates from %1$s on %2$s!" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "This page is not available in a " - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Updates from %1$s on %2$s!" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "All updates matching search term \"%s\"" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Connect" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Describe yourself and your interests in 140 chars" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Describe yourself and your " - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Bio is too long (max 140 chars)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Not a valid profile URL (no YADIS document)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "That's a local profile! Login to subscribe." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Couldn't get a request token." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Notice feed for %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Notice feed for %s" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Notice feed for %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Message to %1$s on %2$s" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed for friends of %s" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed for friends of %s" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed for friends of %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Outbox for %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Notice posted" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "This page is not available in a " - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Notice feed for %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"The subscription has been authorised, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorise the " -"subscription. Your subscription token is:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Can't read avatar URL '%s'" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Wrong image type for '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Could not redirect to server: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "StatusNet software licence" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Couldn't update user with confirmed e-mail address." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Nudge sent" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Message too long - maximum is 140 characters, you sent %d" - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Message too long - maximum is 140 characters, you sent %d" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Reply to this notice" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Problem saving notice." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "No confirmation code." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Login to the site" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Select a carrier" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Describe the group or topic in 140 chars" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Describe the group or topic in 140 chars" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "New notice" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s added your notice as a favourite" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "from" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Could not retrieve public stream." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Delete notice" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Invalid notice content" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Could not create OpenID from: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Not a registered user." -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "You can upload a logo image for your group." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Sorry, that is not your incoming e-mail address." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Sorry, no incoming e-mail allowed." diff --git a/locale/es/LC_MESSAGES/statusnet.mo b/locale/es/LC_MESSAGES/statusnet.mo index 8185c45d6..a200a581f 100644 Binary files a/locale/es/LC_MESSAGES/statusnet.mo and b/locale/es/LC_MESSAGES/statusnet.mo differ diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index c10f37721..cd3cf31f4 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -1,5 +1,7 @@ # Translation of StatusNet to Spanish # +# Author@translatewiki.net: Brion +# Author@translatewiki.net: Crazymadlover # -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER @@ -10,4623 +12,1736 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:22+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:05+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Busca \"%s\" en la Corriente" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"excepto los siguientes datos privados: contraseña, dirección de correo " -"electrónico, dirección de mensajería instantánea, número de teléfono." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" +msgstr "No existe tal página" -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "desde" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "No existe ese usuario." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Actualizaciones en respuesta a %2$s" +msgid "%s and friends, page %d" +msgstr "%s y amigos, página %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s te ha invitado a que te unas con el/ellos en %2$s" +msgid "%s and friends" +msgstr "%s y amigos" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 +#: actions/all.php:99 #, fuzzy, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s te ha invitado a unirte a ellos en %2$s (%3$s).\n" -"\n" -"%2$s es un servicio de microblogueo que te permite estar al tanto de la " -"gente que conoces y que te interesa.\n" -"\n" -"Puedes compartir noticias sobre tí mismo, tus pensamientos, o tu vida en " -"línea con gente que te conoce. También es bueno para conocer gente que " -"comparta tus intereses.\n" -"\n" -"%1$s dijo:\n" -"\n" -"%4$s\n" -"\n" -"Puedes ver el perfil de %1$s en %2$s aquí:\n" -"\n" -"%5$s\n" -"\n" -"Si quieres inscribirte y probar el servicio, haz click en enlace debajo para " -"aceptar la invitación.\n" -"\n" -"%6$s\n" -"\n" -"Si no deseas inscribirte puedes ignorar este mensaje. Gracias por tu " -"paciencia y tiempo.\n" -"\n" -"Sinceramente, %2$s\n" +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed de los amigos de %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s ahora está escuchando tus avisos en %2$s" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed de los amigos de %s" -#: ../lib/mail.php:126 +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed de los amigos de %s" + +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"\t%1$s ahora está escuchando tus avisos en %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentamente,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "actualizaciones de %1$s en respuesta a las de %2$s / %3$s" - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "estado de %1$s en %2$s" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" - -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "Mensajes publicos de %s" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s y amigos" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "línea temporal pública de %s" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "estado de %s" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "línea temporal de %s" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/all.php:132 #, php-format -msgid "%s updates from everyone!" -msgstr "¡Actualizaciones de todos en %s!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -"(Deberías recibir un mensaje por correo eléctronico en unos momentos, con " -"instrucciones sobre cómo confirmar tu dirección de correo.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/all.php:134 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" -"site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** es un servicio de microblogueo." - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Los colaboradores deben ser citados por su nombre completo o apodo." - -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -"1-64 letras en minúscula o números, sin signos de puntuación o espacios" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 letras en minúscula o números, sin signos de puntuación o espacios. " -"Requerido." +#: actions/all.php:165 +msgid "You and friends" +msgstr "Tú y amigos" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 o más caracteres" +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 o más caracteres, ¡no te olvides!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "¡No se encontró el método de la API!" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 o más caracters. Requerido." +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Este método requiere PUBLICAR" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Un código de confirmación fue enviado a la dirección de mensajería " -"instantánea que agregaste. Debes aprobar a %s para que pueda enviarte " -"mensajes." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Un código de confirmación fue enviado al correo electrónico que agregaste. " -"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " -"instrucciones sobre cómo usarlo." - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"Un código de confirmación fue enviado al número de teléfono que agregaste. " -"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " -"instrucciones sobre cómo usarlo." -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "¡No se encontró el método de la API!" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Método API en construcción." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "El usuario no tiene un perfil." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Acerca de" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Falló bloquear usuario." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Aceptar" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Falló desbloquear usuario." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Añadir" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "¡Sin texto de mensaje!" -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Añadir OpenID" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Demasiado largo. Máximo 140 caracteres. " -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Agregar o quitar OpenIDs" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Dirección" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "No se encuentra usuario receptor." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Direcciones de los amigos a invitar (una por línea)" +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Todas las suscripciones" +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensajes directos a %s" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 +#: actions/apidirectmessage.php:93 #, php-format -msgid "All updates for %s" -msgstr "Todas las actualizaciones para %s" +msgid "All the direct messages sent from %s" +msgstr "Todos los mensajes directos enviados desde %s" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apidirectmessage.php:101 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" +msgid "Direct messages to %s" +msgstr "Mensajes directos a %s" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Ya estás conectado." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "¡Ya está suscrito!" +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Todos los mensajes directos enviados a %s" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "¿Estás seguro de que quieres eliminar este aviso?" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "No se encontró estado para ese ID" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autorizar la suscripción" +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "¡Este aviso ya está en favoritos!" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores " -"compartidos! " +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "No se pudo crear favorito." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor " -"para no-humanos)" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "¡Este aviso no es un favorito!" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "No se pudo borrar favorito." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Avatar actualizado" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "No puede seguir al usuario. Usuario no encontrado" -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"A la espera de una confirmación para esta dirección. Busca en tu cuenta " -"Jabber/GTalk un mensaje con más instrucciones. (¿Has añadido a %s a tu lista " -"de amigos?)" +msgid "Could not follow user: %s is already on your list." +msgstr "No puede seguir al usuario: %s ya esta en su lista." -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "No puede seguir al usuario. Usuario no encontrado" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -"Esperando confirmación de esta dirección. Revisa tu bandeja de entrada (¡y " -"la de spam!) por un mensaje con las instrucciones." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Esperando confirmación de este número de teléfono." +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Deben proveerse dos identificaciones de usuario o nombres en pantalla." -#: ../lib/util.php:1318 lib/util.php:1452 +#: actions/apifriendshipsshow.php:135 #, fuzzy -msgid "Before »" -msgstr "Antes »" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Biografía" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "La biografía es demasiado larga (máx. 140 caracteres)." - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "No se puede eliminar este aviso." +msgid "Could not determine source user." +msgstr "No se pudo acceder a corriente pública." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "No se puede leer el URL del avatar '%s'" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "No se pudo encontrar ningún estado." -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "No se puede guardar la nueva contraseña." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "No se pudo crear grupo." -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Cancelar" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "No se pudo crear favorito." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Imposible crear una instancia del objeto OpenID." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "No se pudo configurar miembros de grupo." -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "No se puede normalizar este Jabber ID" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"El apodo debe tener solamente letras minúsculas y números y no puede tener " +"espacios. " -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "No se puede normalizar esta dirección de correo electrónico." +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "El apodo ya existe. Prueba otro." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Cambiar" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Apodo no válido" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Cambiar el manejo del correo." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "La página de inicio no es un URL válido." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Cambiar contraseña" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Tu nombre es demasiado largo (max. 255 carac.)" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Cambia tu contraseña" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Descripción es demasiado larga (máx. 140 caracteres)." -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Cambia tus opciones de perfil" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Confirmar" +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Confirmar la dirección" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Tag no válido: '%s' " -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Confirmación cancelada." +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "El apodo ya existe. Prueba otro." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Código de confirmación" +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Código de confirmación no encontrado." +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "Ya eres miembro de ese grupo" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, " -"puedes...\n" -"\n" -"* Ir a [tu perfil](%s) y enviar tu primer mensaje.\n" -"* Agregar una [cuenta Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar " -"avisos por mensajes instantáneos.\n" -"* [Buscar personas](%%%%action.peoplesearch%%%%) que podrías conoces o que " -"comparte tus intereses.\n" -"* Actualizar tus [opciones de perfil](%%%%action.profilesettings%%%%) para " -"contar más sobre tí.\n" -"* Leer la [documentación en línea](%%%%doc.help%%%%) para encontrar " -"características pasadas por alto.\n" -"\n" -"Gracias por suscribirte y esperamos que disfrutes el uso de este servicio." -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Conectarse" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "No se puede unir usuario %s a grupo %s" -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Conectarse a una cuenta existente" +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "No eres miembro de este grupo." -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Ponerse en contacto" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "No se pudo eliminar a usuario %s de grupo %s" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "No se pudo crear el formulario OpenID: %s" +msgid "%s groups" +msgstr "Grupos %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apigrouplistall.php:94 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "No puede seguir al usuario: %s ya esta en su lista." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "No puede seguir al usuario. Usuario no encontrado" +msgid "groups on %s" +msgstr "Grupos en %s" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apigrouplist.php:95 #, php-format -msgid "Could not redirect to server: %s" -msgstr "No se pudo redirigir al servidor: %s" +msgid "%s's groups" +msgstr "Grupos de %s" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "No se pudo guardar la información del avatar" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s es miembro de los grupos" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "No se pudo guardar la información del nuevo perfil" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Este método requiere un PUBLICAR O ELIMINAR" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -#, fuzzy -msgid "Could not subscribe other to you." -msgstr "No se pudo suscribir otro a tí." +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "No puedes borrar el estado de otro usuario." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "No se pudo suscribir." - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" -"No se pudo actualizar el usuario con la dirección de correo confirmada." +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "Status borrado." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "No se pudieron convertir las clavesde petición a claves de acceso." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "No hay estado para ese ID" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "No se pudo eliminar la confirmación de correo electrónico." +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "No se pudo eliminar la suscripción." +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "No encontrado" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "No se pudo encontrar ningún estado." +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "No se pudo obtener la señal de petición." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "Formato no soportado." -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "No se pudo insertar el código de confirmación." +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favoritos desde %s" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "No se pudo insertar una nueva suscripción." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s actualizaciones favoritas por %s / %s." -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "No se pudo guardar el perfil." +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "línea temporal de %s" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "No se pudo actualizar el usuario para autosuscribirse." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "No se pudo actualizar información de usuario." +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Actualizaciones en respuesta a %2$s" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "No se pudo actualizar el usuario." +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "actualizaciones de %1$s en respuesta a las de %2$s / %3$s" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Crear" +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "línea temporal pública de %s" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Crear un nuevo usuario con este apodo." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "¡Actualizaciones de todos en %s!" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Crear una nueva cuenta" +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "Avisos marcados con %s" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Crear nueva cuenta para un OpenID que ya tiene un usuario." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Dirección actual Jabber/Gtalk confirmada." +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "No se encontró." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Actual número telefónico para SMS confirmado." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No existe ese documento." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Actual dirección de correo electrónico confirmada" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Ningún apodo." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Actualmente" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Ningún tamaño." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Error de la BD al insertar la etiqueta clave: %s" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Tamaño inválido." -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Error de BD al insertar respuesta: %s" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Borrar aviso" +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Puedes cargar tu avatar personal." -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Usuario sin perfil equivalente" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Correo electrónico" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Configuración de Avatar" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Correo Electrónico" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Original" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Opciones de Email" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Vista previa" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "La dirección de correo electrónico ya existe." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Borrar" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Confirmación de correo electrónico" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Cargar" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Correo electrónico, como \"NombredeUsuario@ejemplo.org\"" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Cortar" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Direcciones de correo electrónico" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" +"Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Ingresa un apodo o correo electronico" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Envío de formulario inesperado." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Ingrese el código recibido en su teléfono" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Error al autorizar clave" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Se perdió nuestros datos de archivo." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Error al conectar tu usuario a OpenID" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Avatar actualizado" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Error al conectar usuario" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Error al actualizar avatar." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Error al insertar el avatar" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Error al insertar el nuevo perfil" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Ningún apodo." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Error al insertar perfil remoto" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "No existe ese grupo" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Error al guardar confirmación de la dirección." +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Perfil de usuario" -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Error al guardar perfil remoto" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s y amigos, página %d" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Error al guardar el perfil." +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lista de los usuarios en este grupo." -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Error al guardar el usuario." +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Falló desbloquear usuario." -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Error al guardar el usuario; inválido." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Desbloquear" -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Error al configurar el usuario." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "Desbloquear este usuario" -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Error al actualizar el perfil" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "No conectado." -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Error al actualizar el perfil remoto" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "No se especificó perfil." -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Error con el código de confirmación." +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "No existe perfil con ese ID" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Apodo existente" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Bloquear usuario." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "Preguntas Frecuentes" +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Error al actualizar avatar." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "No" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Feed de los amigos de %s" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Lista de los usuarios en este grupo." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed de respuestas a %s" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Sí" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed para tag %s" +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Lista de los usuarios en este grupo." -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Encontrar el contenido de avisos" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Ya has bloqueado este usuario." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Encontrar gente en este sitio" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "No se guardó información de bloqueo." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y " -"contraseña antes de cambiar tu configuración." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "Mensaje a " -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Nombre completo" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Ningún código de confirmación." -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Tu nombre es demasiado largo (max. 255 carac.)" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Código de confirmación no encontrado." -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Ayuda" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "¡Ese código de confirmación no es para ti!" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Inicio" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Tipo de dirección %s desconocida" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Página de inicio" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Esa dirección ya fue confirmada." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "La página de inicio no es un URL válido." +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "No se pudo actualizar el usuario." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Deseo enviar estados por email" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "No se pudo eliminar la confirmación de correo electrónico." -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Confirmar la dirección" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Dirección de mensajería instantánea" +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "La dirección \"%s\" fue confirmada para tu cuenta." -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Configuración de mensajería instantánea" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmación" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Si ya tienes una cuenta, ingresa con tu nombre de usuario y contraseña para " -"conectarla con tu OpenID." +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Avisos" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Si quieres agregar una cuenta OpenID, ponla en el campo de abajo y haz clic " -"en \"Añadir\"." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "No existe ese aviso." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "No se puede eliminar este aviso." + +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a " -"la dirección de correo electrónico que almacenaste en tu cuenta." +"Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá " +"deshacer" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Correo entrante" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Borrar aviso" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Dirección de correo entrante removida." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "¿Estás seguro de que quieres eliminar este aviso?" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Contraseña antigua incorrecta." +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "No se puede eliminar este aviso." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Nombre de usuario o contraseña incorrectos." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Borrar este aviso" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." msgstr "" -"Se enviaron instrucciones para recuperar tu contraseña a la dirección de " -"correo registrada." +"Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "El URL del avatar '%s' es inválido" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "¡Este aviso no es un favorito!" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Dirección de correo electrónico inválida: %s" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Agregar a favoritos" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "La página de incicio '%s' no es válida" +#: actions/doc.php:69 +msgid "No such document." +msgstr "No existe ese documento." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 +#: actions/editgroup.php:56 #, php-format -msgid "Invalid license URL '%s'" -msgstr "El URL de la licencia '%s' es inválido" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "El contenido del aviso es inválido" +msgid "Edit %s group" +msgstr "Editar grupo %s" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "El URI del aviso es inválido" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Debes estar conectado para crear un grupo" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "El URL del aviso es inválido" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Debes ser un admin para editar el grupo" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "El URL del perfil '%s' es inválido" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Usa este formulario para editar el grupo." -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "El URL del perfil es inválido (formato incorrecto)" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Descripción es demasiado larga (máx. 140 caracteres)." -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "URL del perfil devuelto por el servidor inválido." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "No se pudo actualizar el grupo." -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Tamaño inválido." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Se guardó Opciones." -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Usuario o contraseña inválidos." +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Opciones de Email" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Invitacion(es) enviada(s)" +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Gestiona la forma en que recibes correo desde %%site.name%%" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Invitacion(es) enviada(s) a las siguientes personas:" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Dirección" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Invitar" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Actual dirección de correo electrónico confirmada" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Invitar nuevos usuarios:" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Eliminar" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format +#: actions/emailsettings.php:113 msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Usa el software de microblogueo [StatusNet](http://status.net), versión %s, " -"disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "El Jabber ID ya pertenece a otro usuario." +"Esperando confirmación de esta dirección. Revisa tu bandeja de entrada (¡y " +"la de spam!) por un mensaje con las instrucciones." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Dirección Jabber o GTalk, por ejemplo \"NombreUsuario@ejemplo.org\". " -"Primero, asegúrate de agregar a %s a tu lista de amigos en tu cliente de " -"mensajería instantánea o en GTalk." +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Cancelar" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Idioma" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Correo Electrónico" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Idioma es muy largo ( max 50 car.)" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Correo electrónico, como \"NombredeUsuario@ejemplo.org\"" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Ubicación" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Añadir" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Correo entrante" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Inicio de sesión" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Inicio de sesión con una cuenta [OpenID](%%doc.openid%%)." - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea]" -"(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." -"openidlogin%%). " - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Salir" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Nombre más largo, preferiblemente tu nombre \"real\"" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "¿Contraseña olvidada o perdida?" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Envie emails a esta dirección para ingresar nuevos avisos" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Hace una nueva dirección de correo para postear; cancela la anterior." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Gestiona la forma en que recibes correo desde %%site.name%%" - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Miembro desde" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Microblog por %s" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Operador móvil para tu teléfono. Si conoces un operador móvil que acepte SMS " -"sobre correo electrónico pero no está listado aquí, envíanos un correo para " -"informarnos al %s." - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Mi texto y archivos están disponibles bajo" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 #: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nuevo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Nueva dirección de correo para postear a %s" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "Nueva dirección de correo entrante agregada." - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nuevo apodo" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nuevo aviso" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nueva contraseña" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Apodo" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Preferencias" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "El apodo ya existe. Prueba otro." +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Enviarme avisos de suscripciones nuevas por correo." -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -"El apodo debe tener solamente letras minúsculas y números y no puede tener " -"espacios. " - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Apodo prohibido." - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Apodo del usuario que quieres seguir" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Apodo o correo electrónico" +"Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos." -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "No" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" +"Enviarme un correo electrónico cuando alguien me envía un mensaje privado." -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Ningún Jabber ID." +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Enviarme un correo electrónico cuando alguien me envía un mensaje privado." -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "¡Ninguna petición de autorización!" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Permitir que amigos me contacten y envién un correo." -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "No se seleccionó un operador móvil." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Deseo enviar estados por email" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "No ingresó código" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publicar un MicroID para mi dirección de correo." -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Ningún código de confirmación." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Guardar" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "¡Ningún contenido!" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Preferencias guardadas." -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 #: actions/emailsettings.php:319 msgid "No email address." msgstr "Sin dirección de correo electrónico" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Ningún identificador." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "No se puede normalizar esta dirección de correo electrónico." -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "No hay dirección de correo entrante." +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "No es una dirección de correo electrónico válida" + +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Esa ya es tu dirección de correo electrónico" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Ningún apodo devuelto por el servidor remoto." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Esa dirección de correo pertenece a otro usuario." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Ningún apodo." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "No se pudo insertar el código de confirmación." + +#: actions/emailsettings.php:358 +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 "" +"Un código de confirmación fue enviado al correo electrónico que agregaste. " +"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " +"instrucciones sobre cómo usarlo." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 #: actions/emailsettings.php:378 actions/imsettings.php:351 #: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Ninguna confirmación pendiente para cancelar." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Sin número telefónico" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Esa dirección de mensajería instantánea es incorrecta." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Ningun URL de perfil devuelto por el servidor." +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Confirmación cancelada." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Ninguna dirección de correo electrónico registrada por este usuario." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Esa no es tu dirección de correo electrónico" -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "¡Ninguna petición encontrada!" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "La dirección fue eliminada." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Ningún resultado" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "No hay dirección de correo entrante." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Ningún tamaño." +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "No se pudo actualizar información de usuario." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "No se encontró estado para ese ID" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Dirección de correo entrante removida." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "No hay estado para ese ID" +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "Nueva dirección de correo entrante agregada." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "No existe esa cuenta OpenID." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "Avisos populares" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "No existe ese documento." +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Avisos populares, página %d" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "No existe ese aviso." +#: actions/favorited.php:79 +#, fuzzy +msgid "The most popular notices on the site right now." +msgstr "Ahora se muestran los avisos más populares en el sitio." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "No existe ese código de recuperación." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "No existe esa suscripción" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "No existe ese usuario." +#: 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/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "No hay ningún usuario con esa dirección de correo o nombre de usuario." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "¡Nadie para mostrar!" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Avisos favoritos de %s" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "No es un código de recuperación." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "No es un usuario registrado" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "¡Este aviso ya está en favoritos!" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "No es un formato de dato soportado" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Jabber ID no válido" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "La cuenta OpenID no es válida." - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "No es una dirección de correo electrónico válida" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Sacar favorito" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Correo electrónico no válido" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Usuarios que figuran" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Apodo no válido" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Usuarios que figuran, página %d" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "URL de perfil no válido (servicios incorrectos)." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Una selección de algunos de los grandes usuarios en %s" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "URL de perfil no válido (XRDS no definido)." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nuevo aviso" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "URL de perfil no válido (ningún documento YADIS)." +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nuevo aviso" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "No es una imagen o es un fichero corrupto." +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "No autorizado." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "¡Respuesta inesperada!" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "No encontrado" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "No conectado." - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "¡No estás suscrito!" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Búsqueda de avisos" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "El usuario al que quieres seguir no existe." -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Feed de avisos de %s" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "¡Puedes usar la suscripción local!" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Aviso sin perfil" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Ese usuario te ha bloqueado la suscripción." -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Avisos" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "No autorizado." -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Avisos marcados con %s" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "No se pudieron convertir las clavesde petición a claves de acceso." -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Antigua contraseña" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versión desconocida del protocolo OMB." -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "Cuenta OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Configuración de la Cuenta OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Auto-envío de OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Ingreso desde una cuenta OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "URL de la cuenta OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Autenticación OpenID cancelada." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Autenticación OpenID fallida: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Error OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID eliminado." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Configuración OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Opcionalmente añada un mensaje personalizado a su invitación." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Error al actualizar el perfil remoto" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Carga parcial." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "No existe ese grupo." -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Contraseña" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "No existe ese aviso." -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "La contraseña y la confirmación no coinciden." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Se perdió nuestro archivo" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "La contraseña debe tener 6 o más caracteres." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No se especificó perfil." -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Recuperación de contraseña solicitada" +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Se guardó Contraseña." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "El usuario te ha bloqueado." -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Las contraseñas no coinciden" +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "No eres miembro de ese grupo" -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Gente" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuario." -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Búsqueda de gente" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Buscador de gente" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Personal" +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Sin ID" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Mensaje Personal" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Debes estar conectado para crear un grupo" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área" +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grupos" -#: ../actions/userauthorization.php:78 +#: actions/groupdesignsettings.php:152 msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " -"avisos de este usuario. Si no pediste esta suscripción, haz clic en " -"\"Cancelar\"." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "No se pudo actualizar el usuario." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Preferencias" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "¡No se pudo guardar tu configuración de Twitter!" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferencias guardadas." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferencias de sincronización guardadas." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Lenguaje de preferencia" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Logo de grupo" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Privacidad" +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Puedes cargar una imagen de logo para tu grupo." -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Hubo un problema al guardar el aviso." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Perfil" +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "SE actualizó logo." -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL del perfil" +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Error al actualizar logo." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Configuración del perfil" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "Miembros del grupo %s" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Perfil desconocido" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "Miembros del grupo %s, página %d" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Feed del flujo público" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Lista de los usuarios en este grupo." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Línea temporal pública" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Admin" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Publicar un MicroID para mi cuenta Jabber/GTalk." - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publicar un MicroID para mi dirección de correo." - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Tags recientes" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Recuperar" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Recuperar contraseña" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Código de recuperación para usuario desconocido." - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registrarse" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Bloquear" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Registro de usuario no permitido." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Bloquear este usuario." -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Registro exitoso." +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Debes ser un admin para editar el grupo" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Rechazar" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Recordarme" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Perfil remoto sin perfil coincidente" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Subscripción remota" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " +"los términos con espacios; deben tener una longitud mínima de 3 caracteres." -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Eliminar" +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Buscador de grupos" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Eliminar OpenID" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ningún resultado" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/groupsearch.php:82 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -"¡Si eliminas tu único OpenID no podrás volver a entrar! Si necesitas " -"eliminarlo, agrega otro antes." - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Respuestas" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/groupsearch.php:85 #, php-format -msgid "Replies to %s" -msgstr "Respuestas a %s" +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Restablecer" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Grupos" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Restablecer contraseña" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Grupos, página %d" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Número telefónico para sms" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Crear un nuevo grupo" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Preferencias SMS" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS confirmación" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "El usuario te ha bloqueado." -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Igual a la contraseña de arriba" +#: actions/groupunblock.php:128 actions/unblock.php:108 +#, fuzzy +msgid "Error removing the block." +msgstr "Error al sacar bloqueo." -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Igual a la contraseña de arriba. Requerida" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Configuración de mensajería instantánea" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Guardar" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Puedes enviar y recibir avisos vía [mensajes instantáneos](%%doc.im%%) de " +"Jabber/GTalk. Configura tu dirección y opciones abajo." -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Buscar" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Esta página no está disponible en un " -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Feed del flujo de búsqueda" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Dirección actual Jabber/Gtalk confirmada." -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/imsettings.php:114 #, php-format msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"Buscar avisos en %%site.name%% por contenido. Separa los términos de " -"búsqueda con espacios; deben tener una longitud mínima de 3 caracteres." +"A la espera de una confirmación para esta dirección. Busca en tu cuenta " +"Jabber/GTalk un mensaje con más instrucciones. (¿Has añadido a %s a tu lista " +"de amigos?)" + +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Dirección de mensajería instantánea" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/imsettings.php:126 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " -"los términos con espacios; deben tener una longitud mínima de 3 caracteres." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Seleccione un operador móvil" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Enviar" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Envie emails a esta dirección para ingresar nuevos avisos" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Enviarme avisos de suscripciones nuevas por correo." +"Dirección Jabber o GTalk, por ejemplo \"NombreUsuario@ejemplo.org\". " +"Primero, asegúrate de agregar a %s a tu lista de amigos en tu cliente de " +"mensajería instantánea o en GTalk." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 +#: actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme avisos por Jabber/GTalk" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Enviarme avisos por SMS; Yo acepto que puede incurrir en grandes cobros por " -"mi operador móvil" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 +#: actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envirame respuestas por medio de Jabber/GTalk de gente a la cual no sigo." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Configuración" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Publicar un MicroID para mi cuenta Jabber/GTalk." -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Se guardó configuración." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Ningún Jabber ID." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Mostrando los tags más populares de la última semana" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "No se puede normalizar este Jabber ID" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Alguien ya tiene este OpenID." +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Jabber ID no válido" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Algo raro pasó." +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Ese ya es tu Jabber ID." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Lo sentimos, pero no se permite correos entrantes" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "El Jabber ID ya pertenece a otro usuario." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Lo sentimos, pero este no es su dirección de correo entrante." +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Un código de confirmación fue enviado a la dirección de mensajería " +"instantánea que agregaste. Debes aprobar a %s para que pueda enviarte " +"mensajes." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Fuente" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Ese no es tu Jabber ID." -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Estadísticas" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Bandeja de entrada para %s - página %d" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "No se ha encontrado el OpenID almacenado." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Suscribirse" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Bandeja de entrada para %s" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Suscriptores" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Ésta es tu bandeja de entrada, incluye lista de mensajes privados entrantes." -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Suscripción autorizada" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Suscripción rechazada" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Debes estar conectado para invitar otros usuarios a usar %s" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Suscripciones" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Error del sistema al cargar el archivo." - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Tags" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Texto" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Búsqueda de texto" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Ese OpenID no es tuyo." - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Esa dirección ya fue confirmada." - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "¡Ese código de confirmación no es para ti!" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Esa dirección de correo pertenece a otro usuario." - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Ese archivo es demasiado grande." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Ese ya es tu Jabber ID." - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Esa ya es tu dirección de correo electrónico" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Ese ya es tu número telefónico" - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Ese no es tu Jabber ID." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Esa no es tu dirección de correo electrónico" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Ese no es tu número telefónico" - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Esa dirección de mensajería instantánea es incorrecta." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Ese no es el número de confirmación" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Ese número telefónico ya pertenece a otro usuario" - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Es demasiado largo. La longitud máxima es de 255 caracteres. " - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "La dirección \"%s\" fue confirmada para tu cuenta." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "La dirección fue eliminada." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. " -"Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " -"identificador de suscripción es:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee " -"de nuevo las instrucciones para saber cómo rechazar la suscripción " -"completamente." - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Estas son las personas que escuchan los avisos de %s." - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Estas son las personas que escuchan tus avisos." - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Estas son las personas que %s escucha sus avisos." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Estas son las personas que escuchas sus avisos." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Estas personas ya son usuarios y fuiste suscripto automáticamente a ellos:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "" -"Este código de confirmación es demasiado viejo. Por favor empieza de nuevo." - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Este formulario debería enviarse automáticamente. En caso contrario, haz " -"clic en el botón de envío para ir a tu proveedor de OpenID." - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Esta es la primera vez que accedes a %s por lo que debemos conectar tu " -"OpenID a una cuenta local. Puedes crear una nueva o conectarte con la tuya, " -"si la tienes." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Este método requiere un PUBLICAR O ELIMINAR" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Este método requiere PUBLICAR" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Esta página no está disponible en el tipo de medio que aceptas." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Zona horaria" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Zona horaria no seleccionada" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Para suscribirte, puedes [iniciar una sesión](%%action.login%%), o " -"[registrar](%%action.register%%) una cuenta nueva. Si ya tienes una en un " -"[servicio de microblogueo compatible](%%doc.openmublog%%), escribe el URL de " -"tu perfil debajo." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Deben proveerse dos identificaciones de usuario o nombres en pantalla." - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Envío de formulario inesperado." - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Restablecimiento de contraseña inesperado." - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Acción desconocida" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Versión desconocida del protocolo OMB." - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"A menos que se especifique lo contrario, el contenido de este sitio es " -"propiedad de sus colaboradores y está disponible bajo la" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Tipo de dirección %s desconocida" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Cancelar suscripción" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Versión OMB no soportada" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Formato de imagen no soportado." - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Actualizaciones por sms" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Actualizaciones por mensajería instantánea" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Cargar" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Carga un nuevo \"avatar\" (imagen de usuario) aquí. No puedes editar la " -"imagen una vez cargada, por lo que antes debes asegurarte que sea más o " -"menos cuadrada. Además, debe estar bajo la misma licencia del sitio. Usa una " -"foto que te pertenezca y que quieras compartir." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Cargar una nueva imagen de perfil" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Usa este formulario para invitar a tus amigos y colegas a usar este servicio." - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "El usuario al que quieres seguir no existe." - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "El usuario no tiene un perfil." - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Apodo del usuario" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Usuario no encontrado" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "En que zona horaria se encuentra normalmente?" - -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "¿Qué tal, %s?" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Tipo de imagen incorrecto para '%s'" - -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Tamaño de imagen incorrecto para '%s'" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Sí" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "¡Ya tienes este OpenID!" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá " -"deshacer" - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "¡Ya te has conectado!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Ya estás suscrito a estos usuarios:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "No eres amigo del usuario especificado." - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Puedes cambiar tu contraseña aquí. ¡Elige una buena!" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Puedes crear una nueva cuenta y empezar a enviar avisos." - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Puedes eliminar un OpenID de tu cuenta haciendo clic en el botón \"Eliminar" -"\"." - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Puedes enviar y recibir avisos vía [mensajes instantáneos](%%doc.im%%) de " -"Jabber/GTalk. Configura tu dirección y opciones abajo." - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Puedes actualizar la información de tu perfil personal para que la gente " -"sepa más sobre ti." - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "¡Puedes usar la suscripción local!" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -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." - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "No nos enviaste ese perfil" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"You have a new posting address on %1$s.\n" -"\n" -"Enviar correo a %2$s para publicar nuevos mensajes. \n" -"\n" -"Más instrucciones de correo en %3$s.\n" -"\n" -"Attentamente, \n" -"%4$s" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "No puedes borrar el estado de otro usuario." - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Debes estar conectado para invitar otros usuarios a usar %s" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Recibirás un mensaje cuando tus invitados acepten tu invitacion y se " -"registren en el sitio. ¡Gracias por extender la comunidad! " - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Te has identificado. Escribe una nueva contraseña a continuación." - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "El URL de tu OpenID" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Tu nombre de usuario en este servidor, o la dirección de correo electrónico " -"registrada." - -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, 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%%) te permite ingresar a muchos sitios con la misma " -"cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "hace unos segundos" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "hace %d días" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "hace %d horas" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "hace %d minutos" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "hace %d meses" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "hace un día" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "hace un minuto" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "hace un mes" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "hace un año" - -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "hace una hora" - -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "borrar" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "en respuesta a..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "responder" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "repita la contraseña anterior" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "tipo de archivo soportado" - -#: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy -msgid "« After" -msgstr "« Después" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "¡Este aviso no es un favorito!" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "No se pudo borrar favorito." - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Aceptar" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos." - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" -"Enviarme un correo electrónico cuando alguien me envía un mensaje privado." - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "¡Este aviso ya está en favoritos!" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "No se pudo crear favorito." - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Sacar" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "%s avisos favoritos" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Feed de avisos favoritos de %s" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Bandeja de entrada para %s - página %d" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Bandeja de entrada para %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Ésta es tu bandeja de entrada, incluye lista de mensajes privados entrantes." - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s te invitó a unirte a ellos en %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Conectarte automáticamente en el futuro;" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Por razones de seguridad, por favor volver a ingresar tu " - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Entrar con nombre y contraseña de usuario." - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Demasiado largo. Máximo 140 caracteres. " - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "No se especificó receptor." - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "No puedes enviar mensaje a este usuario." - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -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." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "No existe el usuario." - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nuevo Mensaje " - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Aviso sin perfil equivalente" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) te permite entrar a muchos sitios" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Si quieres agregar un OpenID a tu cuenta," - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "¡Eliminar tu único OpenID significa que no podrás conectarte!" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Puedes eliminar un OpenID de tu cuenta" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Bandeja de salida para %s - página %d" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Bandeja de salida para %s" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Ésta es tu bandeja de salida, incluye la lista de mensajes privados enviados." - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Buscar personas en %%site.name%% por nombre, lugar o intereses." - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Puedes actualizar aquí tu información de perfil personal" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Usuario sin perfil equivalente" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Éste código de confirmación es demasiado antiguo." - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Si olvidaste o perdiste tu" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Has sido identificado. Ingresar a " - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Tu apodo en este servidor," - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instrucciones para recuperar tu contraseña" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Se guardo exitosamente la nueva contraseña." - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Cotrnaseña debe tener 6 o más caracteres." - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, quizás " -"quieras..." - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Debieras recibir un mensaje por correo electrónico en un momento, con" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Para suscribirse, puedes [login](%%action.login%%)," - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Feed para favoritos de %s" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "No se pudo recibir avisos favoritos." - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "No existe el mensaje." - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Sólo el remitente y el receptor pueden leer este mensaje." - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Mensaje a %1$s en %2$s" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Mensaje de %1$s en %2$s" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Enviar un mensaje" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Operador móvil para tu teléfono." - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Mensajes directos a %s" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Todos los mensajes directos enviados a %s" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Mensajes directos que has enviado" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Todos los mensajes directos enviados desde %s" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "¡Sin texto de mensaje!" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "No se encuentra usuario receptor." - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -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." - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favoritos desde %s" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s actualizaciones favoritas por %s / %s." - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s agregó tu aviso a favoritos" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s recién agregó tu aviso desde %2$s como uno de sus favoritos. \n" -"\n" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Configuración de Twitter" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Cuenta Twitter" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Cuenta Twitter actual verificada." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Nombre de usuario Twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Sin espacios, por favor." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Contraseña Twitter" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Enviar automáticamente mis avisos a Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Enviar respuestas \"@\" locales a Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Suscribir a mis amigos Twitter aquí." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Nombre de usuario sólo debe tener números, letras en mayúscula y minúscula, " -"y subrayadas (_). Máx. 15 caracteres." - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "¡No se pudo verificar tus credenciales Twitter!" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "No se pudo obtener tu información de cuenta para \"%s% desde Twitter." - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "¡No se pudo guardar tu configuración de Twitter!" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Se guardó configuración de Twitter." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "No es tu cuenta Twitter." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "No se pudo eliminar usuario Twitter." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Se eliminó cuenta Twitter." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "No se pudo guardar preferencias de Twitter." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Se guardó preferencias de Twitter." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Por favor revisa esta información para verificar" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Se autorizó la suscripción, pero no" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Se rechazó la suscripción, pero no" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Resultados de comando" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Comando completo" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Comando falló" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Disculpa, todavía no se implementa este comando." - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Suscripciones: %1$s\n" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Usuario no tiene último aviso" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Aviso marcado como favorito." - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Nombre completo: %s" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Lugar: %s" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Página de inicio: %s" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Sobre: %s" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Se envió mensaje directo a %s" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Error al enviar mensaje directo." - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Especificar el nombre del usuario a suscribir" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Suscrito a %s" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Especificar el nombre del usuario para desuscribirse de" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Desuscrito de %s" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Todavía no se implementa comando." - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Notificación no activa." - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "No se puede desactivar notificación." - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Notificación activada." - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "No se puede activar notificación." - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Comandos:\n" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "No se pudo insertar mensaje." - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "No se pudo actualizar mensaje con nuevo URI." - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Usuario sin perfil equivalente en sistema." - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Tienes nueva dirección para publicar en %1$s.\n" -"\n" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "Nuevo mensaje privado de %s" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) te envió un mensaje privado:\n" -"\n" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Sólo el usuario puede leer sus bandejas de correo." - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Este formulario debería enviarse automáticamente." - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Favoritos" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "Avisos favoritos de %s" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuario" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Bandeja de Entrada" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Mensajes entrantes" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Bandeja de Salida" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Mensajes enviados" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Opciones de integración de Twitter" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "Para" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "No se pudo analizar sintácticamente mensaje." - -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s y amigos, página %d" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Puedes cargar tu avatar personal." - -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -#, fuzzy -msgid "Avatar settings" -msgstr "Configuración de Avatar" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Original" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Vista previa" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Cortar" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Hubo problemas con tu clave de sessión." - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Se perdió nuestros datos de archivo." - -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -#, fuzzy -msgid "Lost our file." -msgstr "Se perdió nuestro archivo" - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -#, fuzzy -msgid "Unknown file type" -msgstr "tipo de archivo desconocido" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "No se especificó perfil." - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "No existe perfil con ese ID" - -#: actions/block.php:111 actions/block.php:134 -#, fuzzy -msgid "Block user" -msgstr "Bloquear usuario." - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "¿Seguro de que quieres bloquear este usuario?" - -#: actions/block.php:162 actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "Ya bloqueaste este usuario." - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "No se guardó información de bloqueo." - -#: actions/confirmaddress.php:159 -#, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "La dirección \"%s\" fue " - -#: actions/deletenotice.php:73 -#, fuzzy -msgid "You are about to permanently delete a notice. " -msgstr "¿Estás seguro de que quieres eliminar permanentemente este aviso?" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Agregar a favoritos" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "Editar grupo %s" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Se debe habilitar las bandejas de entrada para grupos" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Debes estar conectado para crear un grupo" - -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "Ningún apodo." - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "No existe ese grupo" - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Debes ser un admin para editar el grupo" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Usa este formulario para editar el grupo." - -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "El apodo sólo debe tener letras en minúscula" - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Descripción es demasiado larga (máx. 140 caracteres)." - -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "No se pudo actualizar el grupo." - -#: actions/editgroup.php:226 actions/editgroup.php:269 -#, fuzzy -msgid "Options saved." -msgstr "Se guardó configuración de Opciones." - -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Esperando confirmación de esta dirección." - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Crear una nueva dirección de correo electrónico para publicar;" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Enviarme un correo cuando alguien" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Permitir que amigos me contacten y envién un correo." - -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "La dirección de correo electrónico ya existe." - -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Un código de confirmación fue enviado a la dirección de correo electrónico " -"que agreaste. " - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "¡Error de servidor - no se pudo acceder a usuario!" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Si quieres que la aplicación %s se actualice automáticamente" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Permitir que %s actualice mi estado de Facebook" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Saltar" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "¡Aviso sin contenido!" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Paginación" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -#, fuzzy -msgid "After" -msgstr "« Después" - -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -#, fuzzy -msgid "Before" -msgstr "Antes" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Gracias por invitar a tus amigos a usar %s" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -#, fuzzy -msgid "Invitations have been sent to the following users:" -msgstr "Se enviarón invitaciones a los siguientes usuarios: " - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "Te invitaron a %s" - -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Invita a tus amigos a usar %s" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Amigos que ya usan %s:" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: actions/facebookremove.php:56 -#, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "No se pudo eliminar al usuario de Facebook." - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "¡Hubo problemas al guardar tus preferencias de sincronización!" - -#: actions/facebooksettings.php:67 -#, fuzzy -msgid "Sync preferences saved." -msgstr "Preferencias de sincronización guardadas." - -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Automáticamente actualizar mi estado de Facebook con mis avisos." - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Enviar respuestas \"@\" a Facebook." - -#: actions/facebooksettings.php:106 -#, fuzzy -msgid "Prefix" -msgstr "Prefijo" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Una serie para prefijar avisos. " - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "Si quieres que %s se actualice automáticamente" - -#: actions/facebooksettings.php:147 -#, fuzzy -msgid "Sync preferences" -msgstr "Preferencias de sincronización" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Sacar favorito" - -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -#, fuzzy -msgid "Popular notices" -msgstr "Avisos populares" - -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "Avisos populares, página %d" - -#: actions/favorited.php:79 -#, fuzzy -msgid "The most popular notices on the site right now." -msgstr "Ahora se muestran los avisos más populares en el sitio." - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Usuarios que figuran" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Usuarios que figuran, página %d" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Una selección de algunos de los grandes usuarios en %s" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Ese usuario te ha bloqueado la suscripción." - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Sin ID" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Logo de grupo" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Puedes cargar una imagen de logo para tu grupo." - -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "SE actualizó logo." - -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "Error al actualizar logo." - -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/invite.php:72 #, php-format -msgid "%s group members" -msgstr "Miembros del grupo %s" +msgid "Invalid email address: %s" +msgstr "Dirección de correo electrónico inválida: %s" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "Miembros del grupo %s, página %d" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Invitacion(es) enviada(s)" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Lista de los usuarios en este grupo." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Invitar nuevos usuarios:" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Grupos" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Ya estás suscrito a estos usuarios:" -#: actions/groups.php:64 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Groups, page %d" -msgstr "Grupos, página %d" +msgid "%s (%s)" +msgstr "%s (%s)" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "Los grupos %%%%site.name%%%% dejan que los encuentres y les hables " +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Estas personas ya son usuarios y fuiste suscripto automáticamente a ellos:" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Crear un grupo nuevo" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Invitacion(es) enviada(s) a las siguientes personas:" -#: actions/groupsearch.php:57 -#, fuzzy, php-format +#: actions/invite.php:150 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Buscar grupos en %%site.name%% por nombre, lugar o descripción." +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Recibirás un mensaje cuando tus invitados acepten tu invitacion y se " +"registren en el sitio. ¡Gracias por extender la comunidad! " -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "Buscador de grupos" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Usa este formulario para invitar a tus amigos y colegas a usar este servicio." -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "Puedes enviar y recibir avisos a través de " +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Direcciones de correo electrónico" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "Dirección Jabber o GTalk," +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Direcciones de los amigos a invitar (una por línea)" -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Enviarme avisos a través de Jabber/GTalk" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Mensaje Personal" + +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Opcionalmente añada un mensaje personalizado a su invitación." + +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Enviar" + +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s te ha invitado a que te unas con el/ellos en %2$s" -#: actions/imsettings.php:321 +#: actions/invite.php:228 #, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Se envió un código de confirmación." +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s te ha invitado a unirte a ellos en %2$s (%3$s).\n" +"\n" +"%2$s es un servicio de microblogueo que te permite estar al tanto de la " +"gente que conoces y que te interesa.\n" +"\n" +"Puedes compartir noticias sobre tí mismo, tus pensamientos, o tu vida en " +"línea con gente que te conoce. También es bueno para conocer gente que " +"comparta tus intereses.\n" +"\n" +"%1$s dijo:\n" +"\n" +"%4$s\n" +"\n" +"Puedes ver el perfil de %1$s en %2$s aquí:\n" +"\n" +"%5$s\n" +"\n" +"Si quieres inscribirte y probar el servicio, haz click en enlace debajo para " +"aceptar la invitación.\n" +"\n" +"%6$s\n" +"\n" +"Si no deseas inscribirte puedes ignorar este mensaje. Gracias por tu " +"paciencia y tiempo.\n" +"\n" +"Sinceramente, %2$s\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Debes estar conectado para unirte a un grupo." -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Ya eres miembro de ese grupo" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "No se puede unir usuario %s a grupo %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s se unió a grupo %s" #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Se debe habilitar bandejas de entrada para que funcionen grupos." - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Debes estar conectado para dejar un grupo." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "No existe ese grupo." - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "No eres miembro de ese grupo" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "No puedes dejar un grupo mientras seas su administrador." - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "No se pudo encontrar registro de miembro" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "No se pudo eliminar a usuario %s de grupo %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s dejó grupo %s" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Ya estás conectado." + +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "El contenido del aviso es inválido" + +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Nombre de usuario o contraseña incorrectos." + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Error al configurar el usuario." + +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Inicio de sesión" + +#: actions/login.php:243 msgid "Login to site" msgstr "Ingresar a sitio" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Apodo" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Contraseña" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Recordarme" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores " +"compartidos! " + +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "¿Contraseña olvidada o perdida?" + +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y " +"contraseña antes de cambiar tu configuración." + +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea]" +"(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." +"openidlogin%%). " + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/microsummary.php:69 msgid "No current status" msgstr "No existe estado actual" @@ -4635,42 +1750,96 @@ msgstr "No existe estado actual" msgid "New group" msgstr "Grupo nuevo " -#: actions/newgroup.php:115 actions/newgroup.php:110 +#: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Usa este formulario para crear un grupo nuevo." -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nuevo Mensaje " + +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "No puedes enviar mensaje a este usuario." + +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "¡Ningún contenido!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "No se especificó receptor." + +#: actions/newmessage.php:164 lib/command.php:370 +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." + +#: actions/newmessage.php:181 #, fuzzy -msgid "Could not create group." -msgstr "No se pudo crear grupo." +msgid "Message sent" +msgstr "Mensaje" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Se envió mensaje directo a %s" + +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Error de Ajax" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nuevo aviso" + +#: actions/newnotice.php:199 #, fuzzy -msgid "Could not set group membership." -msgstr "No se pudo configurar miembros de grupo." +msgid "Notice posted" +msgstr "Aviso publicado" + +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Buscar avisos en %%site.name%% por contenido. Separa los términos de " +"búsqueda con espacios; deben tener una longitud mínima de 3 caracteres." + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Búsqueda de texto" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Busca \"%s\" en la Corriente" -#: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy -msgid "That's too long. " -msgstr "Ese demasiado largo." +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "No te auto envíes un mensaje;" +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -#, fuzzy -msgid "Notice posted" -msgstr "Aviso publicado" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "¡Actualizaciones de %1$s en %2$s!" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Error de Ajax" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" #: actions/nudge.php:85 msgid "" @@ -4688,15 +1857,36 @@ msgstr "Se envió zumbido" msgid "Nudge sent!" msgstr "¡Zumbido enviado!" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy -msgid "OpenID login" -msgstr "Ingreso de OpenID" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Aviso sin perfil" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "estado de %1$s en %2$s" -#: actions/openidsettings.php:128 +#: actions/oembed.php:157 #, fuzzy -msgid "Removing your only OpenID " -msgstr "Eliminar único OpenID" +msgid "content type " +msgstr "Conectarse" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "No es un formato de dato soportado" + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Búsqueda de gente" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Búsqueda de avisos" #: actions/othersettings.php:60 #, fuzzy @@ -4707,2440 +1897,2400 @@ msgstr "Otras configuraciones" msgid "Manage various other options." msgstr "Manejo de varias opciones adicionales." -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Acorte automático de URL" - -#: actions/othersettings.php:112 -#, fuzzy -msgid "Service" -msgstr "Servicio" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servicio de acorte automático a usar." -#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuración del perfil" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + #: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Servicio de acorte de URL demasiado largo (máx. 50 caracteres)." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "Bandeja de salida para %s - página %d" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Bandeja de salida para %s" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" +"Ésta es tu bandeja de salida, incluye la lista de mensajes privados enviados." + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Cambiar contraseña" + #: actions/passwordsettings.php:69 #, fuzzy msgid "Change your password." msgstr "Cambia tu contraseña." -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Cambio de contraseña " -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "No es un tag de personas válido: %s" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Antigua contraseña" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Usuarios auto marcados con %s - página %d" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nueva contraseña" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Estos usuarios se han marcado \"%s\"" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 o más caracteres" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy -msgid "Profile information" -msgstr "Información de perfil " +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Confirmar" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "repita la contraseña anterior" -#: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " -msgstr "Suscribirse automáticamente a quien quiera " +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Cambiar" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Tag no válido: '%s' " +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Cotrnaseña debe tener 6 o más caracteres." -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "No se pudo guardar tags." +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Las contraseñas no coinciden" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Línea de tiempo pública, página %d" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Contraseña antigua incorrecta." -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "No se pudo acceder a corriente pública." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Error al guardar el usuario; inválido." + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "No se puede guardar la nueva contraseña." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Se guardó Contraseña." -#: actions/public.php:220 +#: actions/peoplesearch.php:52 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) " +"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " +"los términos con espacios; deben tener una longitud mínima de 3 caracteres." -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "Nube de tags pública" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Buscador de gente" -#: actions/publictagcloud.php:63 +#: actions/peopletag.php:70 +#, fuzzy, php-format +msgid "Not a valid people tag: %s" +msgstr "No es un tag de personas válido: %s" + +#: actions/peopletag.php:144 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "Éstos son los tags recientes más populares en %s" +msgid "Users self-tagged with %s - page %d" +msgstr "Usuarios auto marcados con %s - página %d" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Nube de tags" +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "El contenido del aviso es inválido" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Disculpa, sólo personas invitadas pueden registrarse." +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "No puedes registrarte si no " +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Configuración del perfil" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Con este formulario puedes crear" +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Puedes actualizar la información de tu perfil personal para que la gente " +"sepa más sobre ti." -#: actions/register.php:368 +#: actions/profilesettings.php:99 #, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 letras en minúscula o números" +msgid "Profile information" +msgstr "Información de perfil " -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "Usado sólo para actualizaciones, anuncios," +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +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" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "El URL de tu página de inicio, blog " +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Nombre completo" + +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Página de inicio" + +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" + +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" -#: actions/register.php:404 +#: actions/profilesettings.php:125 actions/register.php:463 #, fuzzy -msgid "Describe yourself and your " +msgid "Describe yourself and your interests" msgstr "Descríbete y cuenta de tus " -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "Dónde estás, por ejemplo \"Ciudad, " +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Biografía" -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " -msgstr "excepto los siguientes datos privados: contraseña, " +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Ubicación" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%." +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(Debieras recibir un mensaje por correo" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Tags" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "¡Es un perfil local! Ingresa para suscribirte" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Idioma" + +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Lenguaje de preferencia" + +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Zona horaria" + +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "En que zona horaria se encuentra normalmente?" + +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor " +"para no-humanos)" + +#: actions/profilesettings.php:221 actions/register.php:223 #, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "Respuestas a %s, página %d" +msgid "Bio is too long (max %d chars)." +msgstr "La biografía es demasiado larga (máx. 140 caracteres)." -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "%s avisos favoritos, página %d" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Zona horaria no seleccionada" + +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Idioma es muy largo ( max 50 car.)" + +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Tag no válido: '%s' " -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "Grupo %s" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "No se pudo actualizar el usuario para autosuscribirse." -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "Grupo %s, página %d" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "No se pudo guardar el perfil." -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 +#: actions/profilesettings.php:336 #, fuzzy -msgid "Group profile" -msgstr "Perfil de grupo" +msgid "Couldn't save tags." +msgstr "No se pudo guardar tags." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Se guardó configuración." -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -#, fuzzy -msgid "Note" -msgstr "Nota" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Acciones del grupo" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "No se pudo acceder a corriente pública." -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: actions/public.php:129 #, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "Feed de avisos de grupo %s" +msgid "Public timeline, page %d" +msgstr "Línea de tiempo pública, página %d" + +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Línea temporal pública" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 +#: actions/public.php:151 #, fuzzy -msgid "Members" -msgstr "Miembros" +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flujo público" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(Ninguno)" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flujo público" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Todos los miembros" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flujo público" -#: actions/showgroup.php:378 +#: actions/public.php:179 #, php-format msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Sólo el remitente y el receptor" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: actions/public.php:186 #, php-format -msgid "%s, page %d" -msgstr "%s, página %d" - -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Perfil de" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "Perfil de usuario" +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Foto" +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) " -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 +#: actions/publictagcloud.php:57 #, fuzzy -msgid "User actions" -msgstr "Acciones de usuario" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Enviar un mensaje directo a este usuario" +msgid "Public tag cloud" +msgstr "Nube de tags pública" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Mensaje" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "Éstos son los tags recientes más populares en %s" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "Todos los suscriptores" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Todos los grupos" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/showstream.php:542 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "Número telefónico, sin puntuación ni espacios, " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Nube de tags" -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Enviarme avisos por SMS;" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "¡Ya te has conectado!" -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"Se envió un código de confirmación al número de teléfono que agregaste." +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "No existe ese código de recuperación." -#: actions/smssettings.php:453 actions/smssettings.php:465 -#, fuzzy -msgid "Mobile carrier" -msgstr "Operador móvil" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "No es un código de recuperación." -#: actions/subedit.php:70 -#, fuzzy -msgid "You are not subscribed to that profile." -msgstr "No estás suscrito a ese perfil." +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Código de recuperación para usuario desconocido." -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "No se pudo guardar suscripción." +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Error con el código de confirmación." -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "No es usuario local." +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "" +"Este código de confirmación es demasiado viejo. Por favor empieza de nuevo." -#: actions/subscribe.php:69 -#, fuzzy -msgid "Subscribed" -msgstr "Suscrito" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" +"No se pudo actualizar el usuario con la dirección de correo confirmada." -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "Suscriptores %s" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "Suscriptores, página %d" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "Estas son las personas que escuchan" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Estas son las personas que " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "Suscripciones %s" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" +"Tu nombre de usuario en este servidor, o la dirección de correo electrónico " +"registrada." -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "%s suscripciones, página %d" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Recuperar" -#: actions/subscriptions.php:65 -#, fuzzy -msgid "These are the people whose notices " -msgstr "Estas son las personas cuyos avisos" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Restablecer contraseña" -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "Estas son las personas cuyos" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Recuperar contraseña" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "Jabber " +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Recuperación de contraseña solicitada" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Avisos marcados con %s, página %d" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Acción desconocida" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Mensajes marcados \"%s\", el más reciente primero" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 o más caracteres, ¡no te olvides!" -#: actions/tagother.php:33 -#, fuzzy -msgid "Not logged in" -msgstr "No conectado." +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Igual a la contraseña de arriba" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "No existe argumento de ID." +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Restablecer" + +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Ingresa un apodo o correo electronico" + +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "No hay ningún usuario con esa dirección de correo o nombre de usuario." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "%s tag" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Ninguna dirección de correo electrónico registrada por este usuario." -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Usuario de tag" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Error al guardar confirmación de la dirección." -#: actions/tagother.php:149 actions/tagother.php:151 +#: actions/recoverpassword.php:325 msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"Tags de este usuario (letras, números, -, ., y _), coma- o espacio- separado" +"Se enviaron instrucciones para recuperar tu contraseña a la dirección de " +"correo registrada." -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Hubo problemas con tu clave de sesión." +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Restablecimiento de contraseña inesperado." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Sólo puedes marcar a las personas a quienes estás suscrito o que están " -"suscritas a ti." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "La contraseña debe tener 6 o más caracteres." + +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "La contraseña y la confirmación no coinciden." + +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión." + +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Disculpa, sólo personas invitadas pueden registrarse." -#: actions/tagother.php:198 actions/tagother.php:200 +#: actions/register.php:92 #, fuzzy -msgid "Could not save tags." -msgstr "No se pudo guardar tags." +msgid "Sorry, invalid invitation code." +msgstr "Error con el código de confirmación." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Usar este formulario para agregar tags a tus suscriptores o suscripciones." +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Registro exitoso." -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "No existe ese tag." +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registrarse" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Microblog marcado con %s" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Registro de usuario no permitido." -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Falló bloquear usuario." +#: actions/register.php:198 +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." -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Falló desbloquear usuario." +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Correo electrónico no válido" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "No se encontró." +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "La dirección de correo electrónico ya existe." -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Agregar tu cuenta Twitter a enviar automáticamente" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Usuario o contraseña inválidos." -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Nombre de usuario de Twitter" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Contraseña de Twitter" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 letras en minúscula o números, sin signos de puntuación o espacios. " +"Requerido." -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Amigos en Twitter" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 o más caracters. Requerido." -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Nombre de usuario sólo debe tener números, " +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Igual a la contraseña de arriba. Requerida" -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "No se pudo acceder a información de cuenta" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Correo electrónico" -#: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy -msgid "Error removing the block." -msgstr "Error al sacar bloqueo." +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "Ningún perfil de Id en solicitud." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Nombre más largo, preferiblemente tu nombre \"real\"" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Ningún perfil con ese ID." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Mi texto y archivos están disponibles bajo" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -#, fuzzy -msgid "Unsubscribed" -msgstr "Desuscrito" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "Grupos %s" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepto los siguientes datos privados: contraseña, dirección de correo " +"electrónico, dirección de mensajería instantánea, número de teléfono." -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: actions/register.php:537 #, php-format -msgid "%s groups, page %d" -msgstr "Grupos %s, página %d" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, " +"puedes...\n" +"\n" +"* Ir a [tu perfil](%s) y enviar tu primer mensaje.\n" +"* Agregar una [cuenta Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar " +"avisos por mensajes instantáneos.\n" +"* [Buscar personas](%%%%action.peoplesearch%%%%) que podrías conoces o que " +"comparte tus intereses.\n" +"* Actualizar tus [opciones de perfil](%%%%action.profilesettings%%%%) para " +"contar más sobre tí.\n" +"* Leer la [documentación en línea](%%%%doc.help%%%%) para encontrar " +"características pasadas por alto.\n" +"\n" +"Gracias por suscribirte y esperamos que disfrutes el uso de este servicio." -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -#, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "Hubo problemas al guardar el aviso. Usuario desconocido." +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Deberías recibir un mensaje por correo eléctronico en unos momentos, con " +"instrucciones sobre cómo confirmar tu dirección de correo.)" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/remotesubscribe.php:98 +#, php-format msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " -"minutos." +"Para suscribirte, puedes [iniciar una sesión](%%action.login%%), o " +"[registrar](%%action.register%%) una cuenta nueva. Si ya tienes una en un " +"[servicio de microblogueo compatible](%%doc.openmublog%%), escribe el URL de " +"tu perfil debajo." -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Tienes prohibido publicar avisos en este sitio." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Subscripción remota" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 +#: actions/remotesubscribe.php:124 #, fuzzy -msgid "Upload an avatar" -msgstr "Cargar un avatar." +msgid "Subscribe to a remote user" +msgstr "Suscribirse a este usuario" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Otro" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Apodo del usuario" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Otras opciones" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Apodo del usuario que quieres seguir" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format -msgid "%s - %s" -msgstr "%s - %s" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL del perfil" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Página sin título" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Navegación de sitio primario" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Suscribirse" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Perfil personal y línea de tiempo de amigos" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "El URL del perfil es inválido (formato incorrecto)" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Buscar personas o texto" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de perfil no válido (ningún documento YADIS)." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: actions/remotesubscribe.php:176 #, fuzzy -msgid "Account" -msgstr "Cuenta" +msgid "That’s a local profile! Login to subscribe." +msgstr "¡Es un perfil local! Ingresa para suscribirte" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: actions/remotesubscribe.php:183 #, fuzzy -msgid "Change your email, avatar, password, profile" -msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" +msgid "Couldn’t get a request token." +msgstr "No se pudo obtener la señal de petición." + +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Respuestas a %s" + +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "Respuestas a %s, página %d" + +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed de avisos de %s" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Conectarse a IM, SMS, Twitter" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed de avisos de %s" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Salir de sitio" +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed de avisos de %s" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Ingresar a sitio" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Crear una cuenta" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "Ingresar con OpenID." +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "¡Ayúdame!" +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Respuestas a %1$s en %2$s!" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "Aviso de sitio" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s avisos favoritos, página %d" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Vistas locales" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "No se pudo recibir avisos favoritos." -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Aviso de página" +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed de los amigos de %s" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "Navegación de sitio secundario" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed de los amigos de %s" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Licencia de software de StatusNet" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed de los amigos de %s" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Todo" +#: actions/showfavorites.php:205 +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 "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "Licencia." +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "Bloquear este usuario." +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Bloquear" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Sacar este aviso" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "Grupo %s" -#: lib/facebookaction.php:268 +#: actions/showgroup.php:84 #, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Para usar la Aplicación de Facebook %s debes ingresar" +msgid "%s group, page %d" +msgstr "Grupo %s, página %d" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 +#: actions/showgroup.php:218 #, fuzzy -msgid " a new account." -msgstr "una cuenta nueva. " +msgid "Group profile" +msgstr "Perfil de grupo" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "Publicado" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: lib/favorform.php:114 lib/favorform.php:140 +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 #, fuzzy -msgid "Favor this notice" -msgstr "Aceptar este aviso" +msgid "Note" +msgstr "Nota" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportar datos" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Filtrar tags" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Acciones del grupo" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Todo" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed de avisos de grupo %s" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Tag" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed de avisos de grupo %s" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Elegir tag para reducir lista" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed de avisos de grupo %s" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Ir" +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Bandeja de salida para %s" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 #, fuzzy -msgid "URL of the homepage or blog of the group or topic" -msgstr "El URL de página de inicio o blog del grupo or tema" +msgid "Members" +msgstr "Miembros" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Descripción" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(Ninguno)" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Describir al grupo o tema en 140 caracteres" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Todos los miembros" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Estadísticas" + +#: actions/showgroup.php:432 #, fuzzy +msgid "Created" +msgstr "Crear" + +#: actions/showgroup.php:448 +#, php-format msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +"**%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 "" -"Lugar del grupo, si existe, por ejemplo \"Ciudad, Estado (o Región), País\"" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Grupo" +#: actions/showgroup.php:454 +#, fuzzy, 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** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" +"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" msgstr "Admin" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "Editar propiedades del grupo %s" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "No existe el mensaje." -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "Logo" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Sólo el remitente y el receptor pueden leer este mensaje." -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/showmessage.php:108 #, php-format -msgid "Add or edit %s logo" -msgstr "Agregar o editar el logo de %s" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Grupos con más miembros" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "Grupos con más publicaciones" +msgid "Message to %1$s on %2$s" +msgstr "Mensaje a %1$s en %2$s" -#: lib/grouptagcloudsection.php:56 +#: actions/showmessage.php:113 #, php-format -msgid "Tags in %s group's notices" -msgstr "Tags en avisos del grupo %s" - -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "Esta página no está disponible en un " - -#: lib/joinform.php:114 -#, fuzzy -msgid "Join" -msgstr "Unirse" - -#: lib/leaveform.php:114 -#, fuzzy -msgid "Leave" -msgstr "Dejar" - -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "Ingresar con un nombre de usuario y contraseña." +msgid "Message from %1$s on %2$s" +msgstr "Mensaje de %1$s en %2$s" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "Registrar una cuenta nueva " +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "Aviso borrado" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Ingresar o registrar con OpenID" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Avisos marcados con %s" -#: lib/mail.php:175 +#: actions/showstream.php:79 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hola, %s.\n" -"\n" +msgid "%s, page %d" +msgstr "%s, página %d" + +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed de avisos de grupo %s" -#: lib/mail.php:236 +#: actions/showstream.php:129 #, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s ahora está escuchando " +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed de avisos de %s" -#: lib/mail.php:254 lib/mail.php:253 +#: actions/showstream.php:136 #, fuzzy, php-format -msgid "Location: %s\n" -msgstr "Lugar: %s\n" +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed de avisos de %s" -#: lib/mail.php:256 lib/mail.php:255 +#: actions/showstream.php:143 #, fuzzy, php-format -msgid "Homepage: %s\n" -msgstr "Página de inicio: %s\n" +msgid "Notice feed for %s (Atom)" +msgstr "Feed de avisos de %s" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Bandeja de salida para %s" + +#: actions/showstream.php:191 #, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:196 msgid "" -"Bio: %s\n" -"\n" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -"Bio: %s\n" -"\n" -#: lib/mail.php:461 lib/mail.php:462 +#: actions/showstream.php:198 #, php-format -msgid "You've been nudged by %s" -msgstr "%s te mandó un zumbido " +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/mail.php:465 +#: actions/showstream.php:234 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) quiere saber qué estás haciendo" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: lib/mail.php:555 +#: actions/showstream.php:239 #, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s recién agregó tu aviso de %2$s" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -#, fuzzy -msgid "From" -msgstr "Desde" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Enviar un aviso directo" - -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "Enviar un aviso" - -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "Caracteres disponibles" - -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "en respuesta a..." +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "Responder este aviso." +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Preferencias SMS" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Responder" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" +"Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Borrar este aviso" +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "SMS no está disponible." -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Borrar" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Actual número telefónico para SMS confirmado." -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "Enviar zumbido a este usuario" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Esperando confirmación de este número de teléfono." -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "Zumbido " +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Código de confirmación" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "Enviar zumbido a este usuario" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Ingrese el código recibido en su teléfono" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "Tags en avisos de %s" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Número telefónico para sms" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(ninguno)" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Público" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Enviarme avisos por SMS; Yo acepto que puede incurrir en grandes cobros por " +"mi operador móvil" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Grupos de usuario" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Sin número telefónico" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Tags recientes" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "No se seleccionó un operador móvil." -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Destacado" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Ese ya es tu número telefónico" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Popular" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Ese número telefónico ya pertenece a otro usuario" -#: lib/searchgroupnav.php:82 +#: actions/smssettings.php:347 #, fuzzy -msgid "Notice" -msgstr "Aviso" - -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Encontrar grupos en este sitio" +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 "" +"Un código de confirmación fue enviado al número de teléfono que agregaste. " +"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " +"instrucciones sobre cómo usarlo." -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Sección sin título" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Ese no es el número de confirmación" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "Personas a las que %s está suscrito" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Ese no es tu número telefónico" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "Personas suscritas a %s" +#: actions/smssettings.php:465 +#, fuzzy +msgid "Mobile carrier" +msgstr "Operador móvil" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "%s es miembro de los grupos" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Seleccione un operador móvil" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: actions/smssettings.php:476 #, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Invita a amigos y colegas a unirse a %s" +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 "" +"Operador móvil para tu teléfono. Si conoces un operador móvil que acepte SMS " +"sobre correo electrónico pero no está listado aquí, envíanos un correo para " +"informarnos al %s." -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "El usuario te ha bloqueado." +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "No ingresó código" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 +#: actions/subedit.php:70 #, fuzzy -msgid "Subscribe to this user" -msgstr "Suscribirse a este usuario" - -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Ninguno" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Principales posteadores" +msgid "You are not subscribed to that profile." +msgstr "No estás suscrito a ese perfil." -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 +#: actions/subedit.php:83 #, fuzzy -msgid "Unblock this user" -msgstr "Desbloquear este usuario" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Desbloquear" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Desuscribirse de este usuario" - -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed de los amigos de %s" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed de los amigos de %s" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed de los amigos de %s" +msgid "Could not save subscription." +msgstr "No se pudo guardar suscripción." -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: actions/subscribe.php:55 #, fuzzy -msgid "You and friends" -msgstr "%s y amigos" - -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Puedes cargar tu avatar personal." +msgid "Not a local user." +msgstr "No es usuario local." -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: actions/subscribe.php:69 #, fuzzy -msgid "Avatar deleted." -msgstr "Avatar actualizado" - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +msgid "Subscribed" +msgstr "Suscrito" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá " -"deshacer" +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Suscriptores %s" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -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/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "Suscriptores, página %d" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" -"Enviarme un correo electrónico cuando alguien me envía un mensaje privado." +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Estas son las personas que escuchan tus avisos." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Estas son las personas que escuchan los avisos de %s." + +#: actions/subscribers.php:108 msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: actions/subscribers.php:110 #, php-format -msgid "Okay, do it!" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscribers.php:114 #, php-format msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Puedes cargar una imagen de logo para tu grupo." - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "Suscripciones %s" -#: actions/grouprss.php:136 actions/grouprss.php:137 +#: actions/subscriptions.php:54 #, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Microblog por %s" +msgid "%s subscriptions, page %d" +msgstr "%s suscripciones, página %d" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " -"los términos con espacios; deben tener una longitud mínima de 3 caracteres." +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Estas son las personas que escuchas sus avisos." -#: actions/groups.php:90 +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "Estas son las personas que %s escucha sus avisos." + +#: actions/subscriptions.php:121 #, php-format msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Error al enviar mensaje directo." - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Busca \"%s\" en la Corriente" - -#: actions/openidlogin.php:66 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y " -"contraseña antes de cambiar tu configuración." +msgid "%s is not listening to anyone." +msgstr "%1$s ahora está escuchando " -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: actions/subscriptions.php:194 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Feed del flujo público" +msgid "Jabber" +msgstr "Jabber " -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Feed del flujo público" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: actions/tagother.php:33 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Feed del flujo público" +msgid "Not logged in" +msgstr "No conectado." -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "No existe argumento de ID." -#: actions/register.php:286 actions/register.php:329 +#: actions/tagother.php:65 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +msgid "Tag %s" +msgstr "%s tag" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: actions/tagother.php:77 lib/userprofile.php:75 #, fuzzy +msgid "User profile" +msgstr "Perfil de usuario" + +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Foto" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Usuario de tag" + +#: actions/tagother.php:151 msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -"excepto los siguientes datos privados: contraseña, dirección de correo " -"electrónico, dirección de mensajería instantánea, número de teléfono." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Crear" +"Tags de este usuario (letras, números, -, ., y _), coma- o espacio- separado" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format +#: actions/tagother.php:193 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%%%%))" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +"Sólo puedes marcar a las personas a quienes estás suscrito o que están " +"suscritas a ti." -#: actions/showstream.php:147 +#: actions/tagother.php:200 #, fuzzy -msgid "Your profile" -msgstr "Perfil de grupo" +msgid "Could not save tags." +msgstr "No se pudo guardar tags." + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Usar este formulario para agregar tags a tus suscriptores o suscripciones." -#: actions/showstream.php:149 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "%s's profile" -msgstr "Perfil de" +msgid "Notices tagged with %s, page %d" +msgstr "Avisos marcados con %s, página %d" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed de avisos de %s" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed de avisos de %s" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (Atom)" msgstr "Feed de avisos de %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Bandeja de salida para %s" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "No existe ese tag." -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Avatar" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Método API en construcción." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 +#: actions/unsubscribe.php:77 #, fuzzy -msgid "Edit profile settings" -msgstr "Configuración del perfil" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +msgid "No profile id in request." +msgstr "Ningún perfil de Id en solicitud." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Ningún perfil con ese ID." -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"Un código de confirmación fue enviado al número de teléfono que agregaste. " -"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " -"instrucciones sobre cómo usarlo." +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Desuscrito" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "No existe el usuario." - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "No se pudo obtener tu información de cuenta para \"%s% desde Twitter." +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autorizar la suscripción" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:110 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" "Por favor revisa estos detalles para asegurar que deseas suscribirte a los " "avisos de este usuario. Si no pediste esta suscripción, haz clic en " "\"Cancelar\"." -#: actions/usergroups.php:131 actions/usergroups.php:130 +#: actions/userauthorization.php:188 #, fuzzy -msgid "Search for more groups" -msgstr "Buscar personas o texto" +msgid "License" +msgstr "Licencia." + +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Aceptar" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " -"minutos." +msgid "Subscribe to this user" +msgstr "Suscribirse a este usuario" -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Conectarse a IM, SMS, Twitter" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Rechazar" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Badge" -msgstr "Zumbido " +msgid "Reject this subscription" +msgstr "Suscripciones %s" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "¡Ninguna petición de autorización!" + +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Suscripción autorizada" + +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" +"Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. " +"Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " +"identificador de suscripción es:" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Suscripción rechazada" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: actions/userauthorization.php:261 +#, fuzzy msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "Para usar la Aplicación de Facebook %s debes ingresar" - -#: lib/feed.php:85 -msgid "RSS 1.0" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" +"Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee " +"de nuevo las instrucciones para saber cómo rechazar la suscripción " +"completamente." -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/imagefile.php:75 +#: actions/userauthorization.php:322 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: actions/userauthorization.php:338 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"\t%1$s ahora está escuchando tus avisos en %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentamente,\n" -"%4$s.\n" +msgid "Can’t read avatar URL ‘%s’." +msgstr "No se puede leer el URL del avatar '%s'" -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imagen incorrecto para '%s'" -#: lib/mail.php:513 -#, php-format +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Ningún identificador." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuración del perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: actions/usergroups.php:64 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +msgid "%s groups, page %d" +msgstr "Grupos %s, página %d" -#: lib/searchaction.php:122 lib/searchaction.php:120 +#: actions/usergroups.php:130 #, fuzzy -msgid "Search site" -msgstr "Buscar" - -#: lib/section.php:106 -msgid "More..." -msgstr "" +msgid "Search for more groups" +msgstr "Buscar personas o texto" -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "No eres miembro de ese grupo" -#: actions/all.php:85 actions/all.php:132 +#: actions/usergroups.php:158 #, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/all.php:87 actions/all.php:134 +#: classes/File.php:137 #, php-format msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/File.php:147 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "No existe ese documento." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Lista de los usuarios en este grupo." - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Lista de los usuarios en este grupo." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Perfil de usuario" - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s y amigos, página %d" - -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Lista de los usuarios en este grupo." - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Falló desbloquear usuario." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Código de confirmación" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "No se puede eliminar este aviso." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: classes/File.php:154 #, php-format -msgid "Too many aliases! Maximum %d." +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Tag no válido: '%s' " +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "No se pudo insertar mensaje." -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "El apodo ya existe. Prueba otro." +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "No se pudo actualizar mensaje con nuevo URI." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Error de la BD al insertar la etiqueta clave: %s" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#: classes/Notice.php:179 #, fuzzy -msgid "Could not create aliases." -msgstr "No se pudo crear favorito." +msgid "Problem saving notice. Too long." +msgstr "Hubo un problema al guardar el aviso." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: classes/Notice.php:183 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "Hubo problemas al guardar el aviso. Usuario desconocido." -#: actions/favorited.php:153 +#: classes/Notice.php:188 msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" +"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " +"minutos." -#: actions/favorited.php:156 -#, php-format +#: classes/Notice.php:194 +#, fuzzy msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" +"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " +"minutos." -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Nuevo aviso" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Tienes prohibido publicar avisos en este sitio." -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Nuevo aviso" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Hubo un problema al guardar el aviso." -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "Error de BD al insertar respuesta: %s" -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensaje a %1$s en %2$s" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Apodo no válido" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Perfil" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "No se especificó perfil." +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Cambia tus opciones de perfil" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Cargar un avatar." + +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Cambia tu contraseña" + +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Cambiar el manejo del correo." + +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "El usuario te ha bloqueado." +#: lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "Diseñar tu perfil" -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "No eres miembro de ese grupo" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Otro" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Bloquear usuario." +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Otras opciones" -#: actions/groupblock.php:155 +#: lib/action.php:144 #, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +msgid "%s - %s" +msgstr "%s - %s" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Página sin título" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Debes estar conectado para crear un grupo" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Navegación de sitio primario" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Grupos" +#: lib/action.php:430 +msgid "Home" +msgstr "Inicio" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Perfil personal y línea de tiempo de amigos" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 +#: lib/action.php:432 #, fuzzy -msgid "Couldn't update your design." -msgstr "No se pudo actualizar el usuario." +msgid "Account" +msgstr "Cuenta" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: lib/action.php:432 #, fuzzy -msgid "Unable to save your design settings!" -msgstr "¡No se pudo guardar tu configuración de Twitter!" +msgid "Change your email, avatar, password, profile" +msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Preferencias de sincronización guardadas." +#: lib/action.php:435 +msgid "Connect" +msgstr "Conectarse" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#: lib/action.php:435 #, fuzzy -msgid "Make user an admin of the group" -msgstr "Debes ser un admin para editar el grupo" +msgid "Connect to services" +msgstr "No se pudo redirigir al servidor: %s" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Admin" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invitar" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Invita a amigos y colegas a unirse a %s" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/action.php:445 +msgid "Logout" +msgstr "Salir" + +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Salir de sitio" + +#: lib/action.php:450 #, fuzzy -msgid "No results." -msgstr "Ningún resultado" +msgid "Create an account" +msgstr "Crear una cuenta" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Ingresar a sitio" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Ayuda" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" +#: lib/action.php:456 +msgid "Help me!" +msgstr "Ayúdame!" -#: actions/groupunblock.php:95 +#: lib/action.php:459 +msgid "Search" +msgstr "Buscar" + +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Buscar personas o texto" + +#: lib/action.php:480 +msgid "Site notice" +msgstr "Aviso de sitio" + +#: lib/action.php:546 +msgid "Local views" +msgstr "Vistas locales" + +#: lib/action.php:612 #, fuzzy -msgid "User is not blocked from group." -msgstr "El usuario te ha bloqueado." +msgid "Page notice" +msgstr "Aviso de página" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Navegación de sitio secundario" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/action.php:721 +msgid "About" +msgstr "Acerca de" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" +#: lib/action.php:723 +msgid "FAQ" +msgstr "Preguntas Frecuentes" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Privacidad" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" +#: lib/action.php:732 +msgid "Source" +msgstr "Fuente" + +#: lib/action.php:734 +msgid "Contact" +msgstr "Ponerse en contacto" -#: actions/newmessage.php:178 actions/newmessage.php:181 +#: lib/action.php:736 #, fuzzy -msgid "Message sent" -msgstr "Mensaje" +msgid "Badge" +msgstr "Zumbido " + +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Licencia de software de StatusNet" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 +#: lib/action.php:767 #, php-format msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" +"site.broughtbyurl%%)." -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#: lib/action.php:769 #, php-format -msgid " Try using another %s format." -msgstr "" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** es un servicio de microblogueo." -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#: lib/action.php:771 #, php-format -msgid "%s is not a supported filetype on this server." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Usa el software de microblogueo [StatusNet](http://status.net), versión %s, " +"disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)." -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licencia de software de StatusNet" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" +#: lib/action.php:794 +msgid "All " +msgstr "Todo" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/action.php:799 +msgid "license." +msgstr "Licencia." -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Paginación" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/action.php:1062 +msgid "After" +msgstr "Después" + +#: lib/action.php:1070 +msgid "Before" +msgstr "Antes" + +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Hubo problemas con tu clave de sesión." + +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "No se pudo guardar el perfil." +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "Proveedor" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Resultados de comando" + +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Comando completo" + +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Comando falló" + +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Disculpa, todavía no se implementa este comando." + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" msgstr "" +"No se pudo actualizar el usuario con la dirección de correo confirmada." -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/noticesearch.php:121 +#: lib/command.php:99 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +msgid "Nudge sent to %s" +msgstr "zumbido enviado a %s" -#: actions/noticesearch.php:124 +#: lib/command.php:126 #, php-format msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -"[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma " -"cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Usuario no tiene último aviso" -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Configuración del perfil" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Aviso marcado como favorito." -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:318 #, php-format -msgid "Beyond the page limit (%s)" -msgstr "" +msgid "Fullname: %s" +msgstr "Nombre completo: %s" -#: actions/public.php:179 +#: lib/command.php:321 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" +msgid "Location: %s" +msgstr "Lugar: %s" -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Página de inicio: %s" -#: actions/public.php:186 +#: lib/command.php:327 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +msgid "About: %s" +msgstr "Sobre: %s" -#: actions/public.php:245 actions/public.php:238 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) " +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" -#: actions/publictagcloud.php:69 +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Error al enviar mensaje directo." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Responder este aviso." + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Hubo un problema al guardar el aviso." + +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Especificar el nombre del usuario a suscribir" + +#: lib/command.php:502 #, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" +msgid "Subscribed to %s" +msgstr "Suscrito a %s" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Especificar el nombre del usuario para desuscribirse de" -#: actions/publictagcloud.php:75 +#: lib/command.php:530 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +msgid "Unsubscribed from %s" +msgstr "Desuscrito de %s" -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a " -"la dirección de correo electrónico que almacenaste en tu cuenta." +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Todavía no se implementa comando." -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Te has identificado. Escribe una nueva contraseña a continuación." +#: lib/command.php:551 +msgid "Notification off." +msgstr "Notificación no activa." -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Recuperación de contraseña solicitada" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "No se puede desactivar notificación." -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Error con el código de confirmación." +#: lib/command.php:574 +msgid "Notification on." +msgstr "Notificación activada." -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Suscribirse a este usuario" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "No se puede activar notificación." + +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "No se pudo crear el formulario OpenID: %s" -#: actions/replies.php:179 actions/replies.php:198 +#: lib/command.php:602 #, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" + +#: lib/command.php:613 msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/common.php:191 +msgid "No configuration file found. " +msgstr "Ningún archivo de configuración encontrado. " + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s avisos favoritos, página %d" +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "Ir al instalador." -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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." +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Actualizaciones por mensajería instantánea" + +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Actualizaciones por sms" + +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:176 -#, php-format +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "Cargar archivo" + +#: lib/designsettings.php:109 msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Feed de avisos de grupo %s" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Feed de avisos de grupo %s" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Feed de avisos de grupo %s" +#: lib/designsettings.php:170 +msgid "Change colours" +msgstr "Cambiar colores" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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. " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy -msgid "Admins" -msgstr "Admin" +#: lib/designsettings.php:191 +msgid "Content" +msgstr "Contenido" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "No es usuario local." +msgid "Sidebar" +msgstr "Buscar" -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Avisos marcados con %s" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Texto" -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Feed de avisos de grupo %s" +#: lib/designsettings.php:230 +msgid "Links" +msgstr "Vínculos" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Sacar este aviso" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Aceptar este aviso" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s ahora está escuchando " +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Aceptar" -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Feed de avisos de %s" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Exportar datos" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Feed de avisos de %s" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "¡Este aviso ya está en favoritos!" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "¡Este aviso no es un favorito!" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "No se pudo acceder a corriente pública." +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "No se especificó receptor." +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Filtrar tags" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "No se pudo encontrar ningún estado." +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Todo" -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Actualizaciones en respuesta a %2$s" +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "Seleccione una etiqueta a filtrar" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Tag" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Elegir tag para reducir lista" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "Licencia." +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Ir" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/groupeditform.php:163 #, fuzzy -msgid "Reject this subscription" -msgstr "Suscripciones %s" +msgid "URL of the homepage or blog of the group or topic" +msgstr "El URL de página de inicio o blog del grupo or tema" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Configuración del perfil" +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "Describir al grupo o tema" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Describir al grupo o tema en %d caracteres" + +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Descripción" + +#: lib/groupeditform.php:179 msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" +"Ubicación del grupo, si existe, por ejemplo \"Ciudad, Estado (o Región), País" +"\"" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "No eres miembro de ese grupo" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Grupo" -#: actions/usergroups.php:158 +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "Bloqueado" + +#: lib/groupnav.php:101 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" +msgid "%s blocked users" +msgstr "usuarios bloqueados" -#: classes/File.php:127 classes/File.php:137 +#: lib/groupnav.php:107 #, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" +msgid "Edit %s group properties" +msgstr "Editar propiedades del grupo %s" + +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Logo" -#: classes/File.php:137 classes/File.php:147 +#: lib/groupnav.php:113 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +msgid "Add or edit %s logo" +msgstr "Agregar o editar el logo de %s" -#: classes/File.php:145 classes/File.php:154 +#: lib/groupnav.php:119 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +msgid "Add or edit %s design" +msgstr "Agregar o editar el diseño de %s" -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Hubo un problema al guardar el aviso." +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Grupos con más miembros" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Grupos con más publicaciones" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "Tags en avisos del grupo %s" + +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Esta página no está disponible en el tipo de medio que aceptas." + +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Mensaje a %1$s en %2$s" +msgid "That file is too big. The maximum file size is %s." +msgstr "Puedes cargar una imagen de logo para tu grupo." -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Carga parcial." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Perfil de usuario" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Error del sistema al cargar el archivo." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "No es una imagen o es un fichero corrupto." -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Formato de imagen no soportado." -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Se perdió nuestro archivo." -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Perfil" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Tipo de archivo desconocido" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Nuevo aviso" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "Unirse" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Dejar" -#: lib/designsettings.php:105 +#: lib/logingroupnav.php:80 #, fuzzy -msgid "Upload file" -msgstr "Cargar" +msgid "Login with a username and password" +msgstr "Ingresar con un nombre de usuario y contraseña." -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Registrar una cuenta nueva " -#: lib/designsettings.php:139 -msgid "On" -msgstr "" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Sólo el usuario puede leer sus bandejas de correo." -#: lib/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:139 +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/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "desde" -#: lib/designsettings.php:161 -msgid "Tile background image" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Confirmación de correo electrónico" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Cambia tu contraseña" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s ahora está escuchando tus avisos en %2$s" -#: lib/designsettings.php:178 -msgid "Background" +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"\t%1$s ahora está escuchando tus avisos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente,\n" +"%4$s.\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Conectarse" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Buscar" +#: lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "Ubicación: %s\n" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Inicio de sesión" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "Página de inicio: %s\n" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" +"Bio: %s\n" +"\n" -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Nueva dirección de correo para postear a %s" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"You have a new posting address on %1$s.\n" +"\n" +"Enviar correo a %2$s para publicar nuevos mensajes. \n" +"\n" +"Más instrucciones de correo en %3$s.\n" +"\n" +"Attentamente, \n" +"%4$s" -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "estado de %s" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS confirmación" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s te mandó un zumbido " -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:466 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Bloquear" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Nuevo mensaje privado de %s" -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Bloquear usuario." +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Agregar o editar el logo de %s" +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s (@%s) agregó tu aviso como un favorito" #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -7158,657 +4308,439 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"\t%3$s\n" "\n" -"\t%2$s\n" +"It reads:\n" +"\n" +"\t%4$s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mailbox.php:139 +#: lib/mediafile.php:147 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." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "¡Ningún contenido!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Usuario" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Buscar" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "La página de inicio no es un URL válido." +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "No se pudo acceder a corriente pública." -#: lib/webcolor.php:123 +#: lib/mediafile.php:270 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid " Try using another %s format." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "No existe ese tag." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Mensajes directos a %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Demasiado largo. Máximo 140 caracteres. " - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "No puede seguir al usuario. Usuario no encontrado" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Descripción es demasiado larga (máx. 140 caracteres)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Ya eres miembro de ese grupo" +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Enviar un aviso directo" -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "No se puede unir usuario %s a grupo %s" +#: lib/messageform.php:146 +msgid "To" +msgstr "Para" -#: actions/apigroupleave.php:114 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "You are not a member of this group." -msgstr "No eres miembro de ese grupo" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "No se pudo eliminar a usuario %s de grupo %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Grupos %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "%s es miembro de los grupos" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Acciones del grupo" +msgid "Available characters" +msgstr "Caracteres disponibles" -#: actions/apistatusesshow.php:138 +#: lib/noticeform.php:145 #, fuzzy -msgid "Status deleted." -msgstr "Avatar actualizado" - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " +msgid "Send a notice" +msgstr "Enviar un aviso" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 +#: lib/noticeform.php:158 #, php-format -msgid "Max notice size is %d chars, including attachment URL." +msgid "What's up, %s?" +msgstr "¿Qué tal, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Formato de imagen no soportado." +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Foto" +#: lib/noticelist.php:478 +msgid "in context" +msgstr "en contexto" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Descripción es demasiado larga (máx. 140 caracteres)." +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Responder este aviso." -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Responder" -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "El usuario al que quieres seguir no existe." +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Enviar zumbido a este usuario" -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "No autorizado." +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Zumbido " -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "No se pudieron convertir las clavesde petición a claves de acceso." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Enviar zumbido a este usuario" -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Versión desconocida del protocolo OMB." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Error al insertar el nuevo perfil" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "No existe ese aviso." +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Error al insertar el avatar" -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Se perdió nuestro archivo" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Error al insertar perfil remoto" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "Duplicar aviso" -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Esta página no está disponible en un " +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "No se pudo insertar una nueva suscripción." -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea]" -"(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." -"openidlogin%%). " +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Personal" -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "¡Actualizaciones de %1$s en %2$s!" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Respuestas" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favoritos" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Conectarse" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuario" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Bandeja de Entrada" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Mensajes entrantes" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Bandeja de Salida" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Descríbete y cuenta de tus " +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Mensajes enviados" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "La biografía es demasiado larga (máx. 140 caracteres)." +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Tags en avisos de %s" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Suscripciones" -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "URL de perfil no válido (ningún documento YADIS)." +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Todas las suscripciones" -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "¡Es un perfil local! Ingresa para suscribirte" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Suscriptores" -#: actions/remotesubscribe.php:183 +#: lib/profileaction.php:157 #, fuzzy -msgid "Couldn’t get a request token." -msgstr "No se pudo obtener la señal de petición." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Feed de avisos de %s" +msgid "All subscribers" +msgstr "Todos los suscriptores" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Feed de avisos de %s" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "ID de usuario" -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Feed de avisos de %s" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Miembro desde" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Mensaje a %1$s en %2$s" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Todos los grupos" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed de los amigos de %s" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Público" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed de los amigos de %s" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Grupos de usuario" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed de los amigos de %s" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Tags recientes" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Destacado" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Bandeja de salida para %s" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Popular" -#: actions/shownotice.php:90 +#: lib/searchaction.php:120 #, fuzzy -msgid "Notice deleted." -msgstr "Aviso publicado" +msgid "Search site" +msgstr "Buscar" -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Esta página no está disponible en un " +#: lib/searchaction.php:162 +msgid "Search help" +msgstr "Buscar ayuda" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Feed de avisos de %s" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Gente" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Encontrar gente en este sitio" -#: actions/userauthorization.php:110 +#: lib/searchgroupnav.php:82 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " -"avisos de este usuario. Si no pediste esta suscripción, haz clic en " -"\"Cancelar\"." +msgid "Notice" +msgstr "Aviso" -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. " -"Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " -"identificador de suscripción es:" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Encontrar el contenido de avisos" -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee " -"de nuevo las instrucciones para saber cómo rechazar la suscripción " -"completamente." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Encontrar grupos en este sitio" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Sección sin título" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:307 +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Personas a las que %s está suscrito" + +#: lib/subgroupnav.php:91 #, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +msgid "People subscribed to %s" +msgstr "Personas suscritas a %s" -#: actions/userauthorization.php:322 +#: lib/subgroupnav.php:99 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Groups %s is a member of" +msgstr "%s es miembro de los grupos" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "No se puede leer el URL del avatar '%s'" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(ninguno)" -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Tipo de imagen incorrecto para '%s'" +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "No se pudo redirigir al servidor: %s" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "El usuario te ha bloqueado." -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Licencia de software de StatusNet" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "No se pudo suscribir." -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "" -"No se pudo actualizar el usuario con la dirección de correo confirmada." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "No se pudo suscribir otro a ti." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "¡No estás suscrito!" -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Se envió zumbido" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "No se pudo eliminar la suscripción." -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Ninguno" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Principales posteadores" -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Desuscribirse de este usuario" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Responder este aviso." +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Cancelar suscripción" -#: lib/command.php:441 +#: lib/userprofile.php:116 #, fuzzy -msgid "Error saving notice." -msgstr "Hubo un problema al guardar el aviso." +msgid "Edit Avatar" +msgstr "Avatar" -#: lib/common.php:191 +#: lib/userprofile.php:236 #, fuzzy -msgid "No configuration file found. " -msgstr "Ningún código de confirmación." +msgid "User actions" +msgstr "Acciones de usuario" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configuración del perfil" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Ingresar a sitio" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Enviar un mensaje directo a este usuario" -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Seleccione un operador móvil" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Mensaje" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Describir al grupo o tema en 140 caracteres" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "hace unos segundos" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Describir al grupo o tema en 140 caracteres" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "hace un minuto" -#: lib/jabber.php:192 +#: lib/util.php:848 #, php-format -msgid "notice id: %s" -msgstr "Nuevo aviso" +msgid "about %d minutes ago" +msgstr "hace %d minutos" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s agregó tu aviso a favoritos" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "hace una hora" -#: lib/mail.php:556 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "about %d hours ago" +msgstr "hace %d horas" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "hace un día" -#: lib/mail.php:613 +#: lib/util.php:856 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "desde" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +msgid "about %d days ago" +msgstr "hace %d días" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "No se pudo acceder a corriente pública." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "hace un mes" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Borrar aviso" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "hace %d meses" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "El contenido del aviso es inválido" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "hace un año" -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "No se pudo crear el formulario OpenID: %s" +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "" -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Puedes cargar una imagen de logo para tu grupo." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "No se pudo analizar sintácticamente mensaje." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "No es un usuario registrado" + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Lo sentimos, pero este no es su dirección de correo entrante." + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Lo sentimos, pero no se permite correos entrantes" diff --git a/locale/fi/LC_MESSAGES/statusnet.mo b/locale/fi/LC_MESSAGES/statusnet.mo index cfe1d41b9..f8bf4c211 100644 Binary files a/locale/fi/LC_MESSAGES/statusnet.mo and b/locale/fi/LC_MESSAGES/statusnet.mo differ diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 9e2165ac1..021c423d9 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -2,7 +2,6 @@ # # Author@translatewiki.net: Crt # Author@translatewiki.net: Jaakko -# Author@translatewiki.net: Nike # -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER @@ -13,4763 +12,2199 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:25+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:08+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Hakusyöte haulle \"%s\"" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, " -"puhelinnumero." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " lähteestä " - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Vastaukset päivitykseen %2$s" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s on kutsunut sinut %2$s (%3$s) mikroblogipalveluun.\n" -"\n" -"%2$s mikroblogipalvelu auttaa sinua pysymään ajantasalla tuttujen ja " -"kiinnostavien ihmisten kanssa.\n" -"\n" -"Voit myös jakaa uutisia itsestäsi ja ajatuksiasi verkossa ihmisten, jotka " -"tuntevat sinut, kanssa. Se on myös kätevä tapa tutustua uusiin ihmisiin " -"jotka ovat kiinnostuneet samanlaisista asioista, kuin sinä.\n" -"\n" -"%1$s sanoi:\n" -"\n" -"%4$s\n" -"Voit nähdä henkilön %1$s profiilisivun %2$s-palvelussa täältä:\n" -"\n" -"%5$s\n" -"\n" -"Jos haluat kokeilla palvelua, klikkaa alla olevaa linkkiä hyväksyäksesi " -"kutsun.\n" -"\n" -"%6$s\n" -"\n" -"Jos et halua osallistua, voit jättää tämän viestin huomioimatta. Kiitoksia " -"kärsivällisyydestä ja ajastasi.\n" -"\n" -"Terveisin, %2$s\n" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Terveisin,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" -"%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "Käyttäjän %1$s päivitys %2$s" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Tuota tagia ei ole." -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Käyttäjää ei ole." -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:84 #, php-format -msgid "%s Public Stream" -msgstr "%s julkinen syöte" +msgid "%s and friends, page %d" +msgstr "%s ja kaverit, sivu %d" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s ja kaverit" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/all.php:99 #, php-format -msgid "%s public timeline" -msgstr "%s julkinen aikajana" +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 +#: actions/all.php:107 #, php-format -msgid "%s status" -msgstr "%s päivitys" +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/all.php:115 #, php-format -msgid "%s timeline" -msgstr "%s aikajana" +msgid "Feed for friends of %s (Atom)" +msgstr "Käyttäjän %s kavereiden syöte (Atom)" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/all.php:127 #, php-format -msgid "%s updates from everyone!" -msgstr "%s päivitykset kaikilta!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"(Saat pian sähköpostiisi viestin, jonka ohjeita seuraamalla voit vahvistaa " -"sähköpostiosoitteesi.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/all.php:132 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" -"site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 +#: actions/all.php:134 #, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** on mikroblogipalvelu. " - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -". Tunnustus osallistujille tulee antaa joko koko nimelle tai " -"käyttäjätunnukselle." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -"1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " -"välilyöntejä" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " -"välilyöntejä. Pakollinen." +#: actions/all.php:165 +msgid "You and friends" +msgstr "Sinä ja kaverit" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 tai useampia merkkejä" +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API-metodia ei löytynyt!" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 tai useampia merkkejä. Pakollinen." +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Tämä metodi edellyttää POST sanoman." -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Vahvistuskoodi lähetettiin antamaasi pikaviestinosoitteeseen. Sinun täytyy " -"antaa osoitteelle %s oikeus lähettää viestejä sinulle." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Vahvistuskoodi on lähetetty sähköpostiosoitteeseesi. Katso " -"sähköpostilaatikostasi (ja roskapostilaatikostasi!) vahvistuskoodisi ja " -"miten sitä käytetään. " - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " -"vahvistuskoodisi ja miten sitä käytetään. " -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API-metodia ei löytynyt!" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Käyttäjällä ei ole profiilia." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API-metodi on työn alla!" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Käyttäjän esto epäonnistui." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Tietoa" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Käyttäjän eston poisto epäonnistui." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Hyväksy" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Viestissä ei ole tekstiä!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Lisää" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Lisää OpenID" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Vastaanottajaa ei löytynyt." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Lisää tai poista OpenID:t" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Osoite" +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Kutsuttavien kavereiden osoitteet (yksi per rivi)" +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Suorat viestit käyttäjälle %s" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Kaikki tilaukset" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "Kaikki suorat viestit käytäjältä %s" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 +#: actions/apidirectmessage.php:101 #, php-format -msgid "All updates for %s" -msgstr "Kaikki päivitykset käyttäjältä %s" +msgid "Direct messages to %s" +msgstr "Suorat viestit käyttäjälle %s" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apidirectmessage.php:105 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Kaikki päivitykset hakuehdolla \"%s\"" +msgid "All the direct messages sent to %s" +msgstr "Kaikki suorat viestit käyttäjälle %s" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Olet jo kirjautunut sisään." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Tilaat jo!" - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Oletko varma että haluat poistaa tämän päivityksen?" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Valtuuta tilaus" +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Tämä päivitys on jo suosikki!" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla " -"useampi käyttäjä!" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Ei voitu lisätä suosikiksi." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " -"ihmiskäyttäjille)" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Tämä päivitys ei ole suosikki!" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Kuva" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Ei voitu poistaa suosikkia." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Kuva päivitetty." +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Odotetaan vahvistusta tälle osoitteelle. Katso Jabber/GTalk " -"käyttäjätililtäsi viesti, jossa on lisäohjeet. (Lisäsitkö %s:n " -"ystävälistaasi?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Odotetaan vahvistusta tälle sähköpostiosoitteelle. Katso " -"sähköpostilaatikostasi (ja roskapostikansiosta!) viesti, jossa on " -"lisäohjeita. " - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Odotetaan vahvistusta tälle puhelinnumerolle." +msgid "Could not follow user: %s is already on your list." +msgstr "Ei voitu tilata käyttäjää: %s on jo listallasi" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Aiemmin »" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Tietoja" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Kaksi käyttäjätunnusta tai nimeä täytyy antaa." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Tätä päivitystä ei voi poistaa." +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Julkista päivitysvirtaa ei saatu." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Kuvan URL-osoitetta '%s' ei voi avata." +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Ei löytynyt yhtään päivitystä." -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Uutta salasanaa ei voida tallentaa." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Ryhmän luonti ei onnistunut." -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Peruuta" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +msgid "Could not create aliases." +msgstr "Ei voitu lisätä aliasta." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Ei voitu luoda OpenID Consumer-oliota." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Ei voida normalisoida Jabber ID -tunnusta" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman " +"välilyöntiä." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Ei voida normalisoida sähköpostiosoitetta" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Vaihda" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Tuo ei ole kelvollinen tunnus." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Muuta sähköpostin käsittelyasetuksia." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Kotisivun verkko-osoite ei ole toimiva." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Vaihda salasana" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Vaihda salasanasi" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "kuvaus on liian pitkä (max 140 merkkiä)." -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Vaihda profiiliasetuksesi" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Vahvista" +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Vahvista osoite" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Virheellinen alias: \"%s\"" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Vahvistus peruttu." +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Alias \"%s\" on jo käytössä. Yritä toista aliasta." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Vahvistuskoodi" +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Vahvistuskoodia ei löytynyt." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Sinä kuulut jo tähän ryhmään " -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -"Onnittelut, %s! Tervetuloa palveluun %%%%site.name%%%%. Täältä voit " -"jatkaa...\n" -"\n" -"* [Profiiliisi](%s) ja lähettää ensimmäisen päivityksesi.\n" -"* Lisäämään [Jabber/GTalk osoitteen](%%%%action.imsettings%%%%), jotta saat " -"lähetettyä päivitykset pikaviestimen kautta.\n" -"* [Hakemaan ihmisiä](%%%%action.peoplesearch%%%%), jotka tunnet tai joilla " -"on samanlaisia kiinnostuksen kohteita. \n" -"* Päivittämään [profiiliasi](%%%%action.profilesettings%%%%), jotta muut " -"tietävät enemmän sinusta.\n" -"* Lukemaan [ohjeista](%%%%doc.help%%%%) muista ominaisuuksista, joista et " -"vielä tiedä. \n" -"\n" -"Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Yhdistä" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Yhdistä olemassa oleva käyttäjätunnus" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Sinä et kuulu tähän ryhmään." -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Ota yhteyttä" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Ei voitu luoda OpenID lomaketta: %s" +msgid "%s groups" +msgstr "Käyttäjän %s ryhmät" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Ei voitu tilata käyttäjää: %s on jo listallasi" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Ryhmän toiminnot" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Käyttäjän %s ryhmät" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "Ei voitu uudelleenohjata palvelimelle: %s" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Ryhmät, joiden jäsen %s on" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Ei voitu tallentaa profiilikuvan tietoja" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Ei voitu tallentaa uutta profiilitietoa" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Et voi poistaa toisen käyttäjän päivitystä." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Toista ei voitu asettaa tilaamaan sinua." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Kuva poistettu." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Ei voitu tilata." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Ei voitu muuttaa request tokeneita access tokeneiksi." +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Ei löytynyt" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Ei voitu poistaa sähköpostivahvistusta." +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Ei voitu poistaa tilausta." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Kuvatiedoston formaattia ei ole tuettu." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Ei löytynyt yhtään päivitystä." +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Käyttäjän %s suosikit" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Ei saatu request tokenia." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Ei voitu asettaa vahvistuskoodia." +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s aikajana" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Ei voitu lisätä uutta tilausta." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Ei voitu tallentaa profiilia." +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Vastaukset päivitykseen %2$s" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" +"%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Ei voitu päivittää käyttäjätietoja." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s julkinen aikajana" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Ei voitu päivittää käyttäjää." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s päivitykset kaikilta!" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Luo" +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "Päivitykset joilla on tagi %s" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Luo uusi käyttäjä tällä käyttäjätunnuksella." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Luo uusi käyttäjätili" +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Ei löytynyt." -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "" -"Yritettiin luoda uusi käyttäjätili OpenID tunnukselle, jolla on jo " -"käyttäjätili." +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "Liitettä ei ole." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Tämän hetken vahvistettu Jabber/GTalk -osoite." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Tunnusta ei ole." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Tämän hetken vahvistettu SMS puhelinnumero." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Kokoa ei ole." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Tämän hetken vahvistettu sähköpostiosoite." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Koko ei kelpaa." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Tällä hetkellä" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Kuva" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#: actions/avatarsettings.php:78 #, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Tietokantavirhe tallennettaessa vastausta: %s" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Käyttäjälle ei löydy profiilia" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Poista päivitys" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Profiilikuva-asetukset" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Alkuperäinen" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Sähköposti" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Esikatselu" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Sähköpostiosoite" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Poista" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Sähköpostiasetukset" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Lataa" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Sähköpostiosoite on jo käytössä." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Rajaa" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Sähköpostiosoitteen vahvistus" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" +"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " +"uudelleen." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Sähköpostiosoite, esimerkiksi \"käyttäjätunnus@example.org\"" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Odottamaton lomakkeen lähetys." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Sähköpostiosoitteet" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Syötä käyttäjätunnus tai sähköpostiosoite" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Tiedoston data hävisi." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Syötä koodi jonka sait puhelimeesi." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Kuva päivitetty." -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Virhe tapahtui tokenin hyväksynnässä." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Profiilikuvan päivittäminen epäonnistui." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Virhe tapahtui käyttäjän ja OpenID-tunnuksen yhdistämisessä." +#: actions/avatarsettings.php:387 +msgid "Avatar deleted." +msgstr "Kuva poistettu." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Virhe tapahtui käyttäjän yhdistämisessä." +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Tunnusta ei ole." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Virhe tapahtui profiilikuvan lisäämisessä" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Tuota ryhmää ei ole." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Virhe tapahtui uuden profiilin lisäämisessä" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Käyttäjän profiili" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Virhe tapahtui uuden etäprofiilin lisäämisessä" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s ja kaverit, sivu %d" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Virhe tapahtui osoitevahvistuksen tallentamisessa" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lista ryhmän käyttäjistä." -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Virhe tapahtui etäprofiilin tallentamisessa" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Käyttäjän eston poisto epäonnistui." -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Virhe tapahtui profiilin tallentamisessa." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Poista esto" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Virhe tapahtui käyttäjän tallentamisessa." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Poista esto tältä käyttäjältä" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Et ole kirjautunut sisään." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Virhe tapahtui käyttäjän asettamisessa." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Profiilia ei ole määritelty." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Virhe tapahtui profiilin päivittämisessä" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Ei profiilia tuolle ID:lle." -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Virhe tapahtui etäprofiilin päivittämisessä" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Estä käyttäjä" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Virhe vahvistuskoodin kanssa." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Käytetty tunnus" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Ei" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "UKK" +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "Älä estä tätä käyttäjää tästä ryhmästä" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Profiilikuvan päivittäminen epäonnistui." - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Syöte käyttäjän %s kavereille" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Kyllä" -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Syöte käyttäjän %s saamista vastauksista" +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Lista ryhmän käyttäjistä." -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Syöte tägille %s" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Sinä olet jo estänyt tämän käyttäjän." -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Hae päivityksien sisällöstä" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Käyttäjän estotiedon tallennus epäonnistui." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Hae ihmisiä tältä sivustolta" +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Kuva" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " -"asetuksiesi muuttamista." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Varmistuskoodia ei ole annettu." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Koko nimi" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Vahvistuskoodia ei löytynyt." -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Tämä vahvistuskoodi ei ole sinun!" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Ohjeet" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Tuntematon osoitetyyppi %s " -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Koti" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Tämä osoite on jo vahvistettu." -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Kotisivu" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Ei voitu päivittää käyttäjää." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Kotisivun verkko-osoite ei ole toimiva." +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Ei voitu poistaa sähköpostivahvistusta." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Haluan lähettää päivityksiä sähköpostilla." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Vahvista osoite" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "Pikaviestin" +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Pikaviestiosoite" +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "Keskustelu" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Pikaviestiasetukset" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Päivitykset" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Jos sinulla on jo käyttäjätunnus, kirjaudu sisään käyttäjätunnuksella ja " -"salasanalla yhdistääksesi OpenID-tunnuksesi siihen." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Päivitystä ei ole." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Jos haluat lisätä OpenID-tunnuksen käyttäjätunnukseesi, syötä se alla " -"olevaan laatikkoon ja paina \"Lisää\"." +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Tätä päivitystä ei voi poistaa." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +#: actions/deletenotice.php:103 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, " -"jonka olet tallettanut käyttäjätunnuksellesi." +"Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei " +"voi enää perua." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Saapuva sähköposti" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Poista päivitys" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Saapuvan sähköpostin osoite poistettu." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Oletko varma että haluat poistaa tämän päivityksen?" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Väärä vanha salasana" +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "Älä poista tätä päivitystä" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Väärä käyttäjätunnus tai salasana" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Poista tämä päivitys" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -"Ohjeet salasanan palauttamiseksi on lähetetty sähköpostiisiosoitteeseen, " -"joka on rekisteröity käyttäjätunnuksellesi." +"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " +"uudelleen." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Kuvan URL-verkkosoite '%s' ei kelpaa" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Tämä päivitys ei ole suosikki!" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Sähköpostiosoite %s ei kelpaa" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Lisää suosikkeihin" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Kotisivun osoite '%s' ei kelpaa" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Dokumenttia ei ole." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 +#: actions/editgroup.php:56 #, php-format -msgid "Invalid license URL '%s'" -msgstr "Lisenssin verkko-osoite '%s' ei kelpaa" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Päivityksen sisältö ei kelpaa" +msgid "Edit %s group" +msgstr "Muokkaa ryhmää %s" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Päivityksen URI ei kelpaa" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Päivityksen URL ei kelpaa" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Profiilin URL-osoite '%s' ei kelpaa." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Käytä tätä lomaketta muokataksesi ryhmää." -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)." +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "kuvaus on liian pitkä (max 140 merkkiä)." -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Palvelin palautti kelvottoman URL-osoitteen." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Ei voitu päivittää ryhmää." -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Koko ei kelpaa." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Asetukset tallennettu." -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Käyttäjätunnus tai salasana ei kelpaa." +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Sähköpostiasetukset" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Kutsu(t) lähetettiin" +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Määritä miten saat sähköpostin palvelusta %%site.name%%." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Kutsu(t) lähetettiin seuraaville henkilöille:" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Osoite" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Kutsu" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Tämän hetken vahvistettu sähköpostiosoite." -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Kutsu uusia käyttäjiä" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Poista" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format +#: actions/emailsettings.php:113 msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Sivusto käyttää [StatusNet](http://status.net/) mikroblogausohjelmistoa, " -"versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" -"www.fsf.org/licensing/licenses/agpl-3.0.html)." +"Odotetaan vahvistusta tälle sähköpostiosoitteelle. Katso " +"sähköpostilaatikostasi (ja roskapostikansiosta!) viesti, jossa on " +"lisäohjeita. " -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID kuuluu jo toiselle käyttäjälle." +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Peruuta" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber ja GTalk -osoite, esimerkiksi \"käyttäjätunnus@esimerkki.org\". " -"Varmista että olet lisännyt %s kaverilistaasi pikaviestiohjelmassasi tai " -"GTalkissa." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Sähköpostiosoite" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Kieli" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Sähköpostiosoite, esimerkiksi \"käyttäjätunnus@example.org\"" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Kieli on liian pitkä (max 50 merkkiä)." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Lisää" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Kotipaikka" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Saapuva sähköposti" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Lähetä sähköpostia tähän osoitteeseen tehdäksesi päivityksiä." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Kirjaudu sisään" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Kirjaudu sisään [OpenID](%%doc.openid%%)-tunnuksella" - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä " -"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " -"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Kirjaudu ulos" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Pitempi nimi, mieluiten oikea nimesi" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Oletko hukannut tai unohtanut salasanasi?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan " "osoitteen" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Määritä miten saat sähköpostin palvelusta %%site.name%%." - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Käyttäjänä alkaen" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Käyttäjän %s mikroblogi" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Matkapuhelinoperaattorisi. Jos tiedät operaattorin, joka ottaa vastaan SMS " -"viestilähetyksiä sähköpostilla, mutta ei ole listattu tänne, lähetä " -"sähköpostia meille osoitteeseen %s." - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "" -"Minun tekstini ja tiedostoni ovat käytettävissä seuraavan lisenssin " -"mukaisesti " - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 #: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Uusi" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "Uusi saapuvan sähköpostin osoite lisätty." - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Uusi käyttäjätunnus" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Uusi päivitys" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Uusi salasana" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "" -"Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Tunnus" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman " -"välilyöntiä." - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Käyttäjätunnus ei ole sallittu." +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Asetukset" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Käyttäjän, jota haluat seurata, käyttäjätunnus" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Lähetä sähköpostilla tieto uusista tilaajista." -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Käyttäjätunnus tai sähköposti" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Ei" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Ei Jabber ID -osoitetta" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Lähetä sähköpostia, jos joku lähettää minulle \"@-vastauksen\"." -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Ei valtuutuspyyntöä!" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Salli kavereiden tönäistä minua ja lähetä sähköpostilla ilmoitus." -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Operaattoria ei ole valittu." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Haluan lähettää päivityksiä sähköpostilla." -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Koodia ei ole syötetty." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Julkaise MicroID sähköpostiosoitteelleni." -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Varmistuskoodia ei ole annettu." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Tallenna" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Ei sisältöä!" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Asetukset tallennettu." -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 #: actions/emailsettings.php:319 msgid "No email address." msgstr "Sähköpostiosoitetta ei ole." -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Id puuttuu." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Ei voida normalisoida sähköpostiosoitetta" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Saapuvan sähköpostin osoitetta ei ole." +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Tuo ei ole kelvollinen sähköpostiosoite" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Käyttäjätunnusta ei saatu etäpalvelimelta." +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Tämä on jo sähköpostiosoitteesi." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Tunnusta ei ole." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Tämä sähköpostiosoite kuuluu jo toisella käyttäjällä." + +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Ei voitu asettaa vahvistuskoodia." + +#: actions/emailsettings.php:358 +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 "" +"Vahvistuskoodi on lähetetty sähköpostiosoitteeseesi. Katso " +"sähköpostilaatikostasi (ja roskapostilaatikostasi!) vahvistuskoodisi ja " +"miten sitä käytetään. " -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 #: actions/emailsettings.php:378 actions/imsettings.php:351 #: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Avoimia vahvistuksia ei ole peruutettavana." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Puhelinnumeroa ei ole." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Tämä on väärä pikaviestiosoite." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Profiilin verkko-osoitetta ei saatu palvelimelta." +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Vahvistus peruttu." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Rekisteröityä sähköpostiosoitetta ei ole tälle käyttäjälle." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Tämä ei ole sähköpostiosoitteesi." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Kyselyä ei löytynyt!" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Osoite on poistettu." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Ei hakutuloksia" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Saapuvan sähköpostin osoitetta ei ole." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Kokoa ei ole." +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Ei voitu päivittää käyttäjätietoja." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Saapuvan sähköpostin osoite poistettu." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "Uusi saapuvan sähköpostin osoite lisätty." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Annettua OpenID-tunnusta ei ole." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Suosituimmat päivitykset" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Dokumenttia ei ole." +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Suosituimmat päivitykset, sivu %d" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Päivitystä ei ole." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Suosituimmat päivitykset sivustolla juuri nyt." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Palautuskoodia ei ole." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Tilausta ei ole." - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Käyttäjää ei ole." +#: 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/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Käyttäjää tuolla sähköpostilla tai käyttäjätunnuksella ei ole." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Ketään ei voida näyttää." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Käyttäjän %s suosikkipäivitykset" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Tuo ei ole palautuskoodi." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Tuo ei ole rekisteröitynyt käyttäjä." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Tämä päivitys on jo suosikki!" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Tuo ei ole tuettu tietomuoto." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Poista suosikeista" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Tuo ei ole kelvollinen Jabber ID." - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Tuo ei ole kelvollinen OpenID." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Esittelyssä olevat käyttäjät" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Tuo ei ole kelvollinen sähköpostiosoite" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Esittelyssä olevat käyttäjät, sivu %d" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Tuo ei ole kelvollinen sähköpostiosoite." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Valikoima joitakin loistavia palvelun %s käyttäjiä" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Tuo ei ole kelvollinen tunnus." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Uusi päivitys" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Tuo ei ole kelvollinen profiilin verkko-osoite (virheellinen palvelu)." +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Uusi päivitys" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." +#: actions/file.php:42 +msgid "No attachments" msgstr "" -"Tuo ei ole kelvollinen profiilin verkko-osoite (XRDS ei ollut määritelty)." -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " -"löytynyt)." - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Tuo ei ole kelvollinen kuva tai tiedosto on rikkoutunut." -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Ei valtuutusta." - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Odottamaton vastaus saatu!" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Ei löytynyt" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Et ole kirjautunut sisään." - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Ei ole tilattu!." - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Etsi Päivityksistä" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Käyttäjää jota seurataan ei ole olemassa." -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Päivityksien syöte käyttäjälle %s" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Voit käyttää paikallista tilausta!" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Päivitykselle ei ole profiilia" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Päivitykset" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Ei valtuutusta." -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Päivitykset joilla on tagi %s" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Ei voitu muuttaa request tokeneita access tokeneiksi." -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Vanha salasana" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Tuntematon OMB-protokollan versio." -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID-tunnuksen asetukset" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID automaattilähetys" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID-sisäänkirjautuminen" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID-osoite" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID tunnistautuminen peruttiin." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID tunnistautuminen epäonnistui: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID virhe: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID poistettu." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID asetukset" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Voit myös lisätä oman viestisi kutsuun" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Virhe tapahtui etäprofiilin päivittämisessä" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Osittain ladattu palvelimelle." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Tuota ryhmää ei ole." -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Salasana" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Päivitystä ei ole." -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Salasana ja salasanan vahvistus eivät täsmää." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Tiedosto hävisi." -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Profiilia ei ole määritelty." -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Salasanan palautuspyyntö lähetetty." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Salasana tallennettu." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Käyttäjä on asettanut eston sinulle." -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Salasanat eivät täsmää." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Sinä et kuulu tähän ryhmään." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Henkilö" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Estä käyttäjä" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Etsi ihmisiä" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Etsi ihmisiä" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Omat" +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "ID-tunnusta ei ole" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Henkilökohtainen viesti" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, suuntanumerollinen" +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Ryhmät" -#: ../actions/userauthorization.php:78 +#: actions/groupdesignsettings.php:152 msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " -"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " -"paina \"Peruuta\"." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Ei voitu päivittää käyttäjää." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Asetukset" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Twitter-asetuksia ei voitu tallentaa!" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Asetukset tallennettu." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synkronointiasetukset tallennettiin." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Ensisijainen kieli" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Ryhmän logo" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Yksityisyys" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s." -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Ongelma päivityksen tallentamisessa." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "Valitse neliön muotoinen alue kuvasta logokuvaksi" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profiili" +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Logo päivitetty." -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Profiilin URL" +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Logon päivittäminen epäonnistui." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Profiiliasetukset" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "Ryhmän %s jäsenet" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Tuntematon profiili." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "Ryhmän %s jäsenet, sivu %d" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Julkinen syöte" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Lista ryhmän käyttäjistä." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Julkinen aikajana" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Ylläpito" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Estä" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Julkaise MicroID sähköpostiosoitteelleni." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Estä tämä käyttäjä" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Tuoreet tagit" +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Palauta" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Salasanan palautus" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Tuntemattoman käyttäjän palautuskoodi" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Rekisteröidy" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Rekisteröityminen ei ole sallittu." - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Rekisteröityminen onnistui" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Hylkää" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Ylläpito" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Muista minut" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Etäprofiilille ei löytynyt vastaavaa profiilia" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Etätilaus" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " +"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " +"olla 3 tai useamman merkin pituisia." -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Poista" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Ryhmähaku" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Poista OpenID" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ei hakutuloksia" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/groupsearch.php:82 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -"Viimeisen OpenID-tunnuksen poistamisen jälkeen et voi enää kirjautua sisään " -"palveluun. Jos haluat poistaa sen, lisää ensin uusi OpenID-tunnus." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Vastaukset" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/groupsearch.php:85 #, php-format -msgid "Replies to %s" -msgstr "Vastaukset käyttäjälle %s" +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Vaihda" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Ryhmät" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Vaihda salasana" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Ryhmät, sivu %d" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS puhelinnumero" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Luo uusi ryhmä" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS-asetukset" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS vahvistus" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Käyttäjä on asettanut eston sinulle." -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Sama kuin ylläoleva salasana" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Tapahtui virhe, kun estoa poistettiin." -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Sama kuin ylläoleva salasana. Pakollinen." +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Pikaviestiasetukset" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Tallenna" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc." +"im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Haku" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Tämä sivu ei ole saatavilla " -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Hakusyöte" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Tämän hetken vahvistettu Jabber/GTalk -osoite." -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/imsettings.php:114 #, php-format msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"Hae päivityksiä palvelun %%site.name%% sisällöistä. Erota hakutermit " -"välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia." +"Odotetaan vahvistusta tälle osoitteelle. Katso Jabber/GTalk " +"käyttäjätililtäsi viesti, jossa on lisäohjeet. (Lisäsitkö %s:n " +"ystävälistaasi?)" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Pikaviestiosoite" + +#: actions/imsettings.php:126 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " -"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " -"olla 3 tai useamman merkin pituisia." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Valitse operaattori" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Lähetä" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Lähetä sähköpostia tähän osoitteeseen tehdäksesi päivityksiä." - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Lähetä sähköpostilla tieto uusista tilaajista." +"Jabber ja GTalk -osoite, esimerkiksi \"käyttäjätunnus@esimerkki.org\". " +"Varmista että olet lisännyt %s kaverilistaasi pikaviestiohjelmassasi tai " +"GTalkissa." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 +#: actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Lähetä minulle päivityksiä Jabberilla/GTalkilla." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Lähetä päivityksiä SMS:llä; Ymmärrän, että voin saada kohtuuttomia laskuja " -"tästä matkapuhelinoperaattoriltani." +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 +#: actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Lähetä Jabberilla/GTalkilla sellaistenkin ihmisten vastaukset, joita en ole " "tilannut. " -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Asetukset" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Asetukset tallennettu." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Ei Jabber ID -osoitetta" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Viime viikon suosituimmat tagit" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Ei voida normalisoida Jabber ID -tunnusta" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Joku muu käyttää jo tätä OpenID-tunnusta." +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Tuo ei ole kelvollinen Jabber ID." -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Jotain erikoista tapahtui." +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Tämä on jo Jabber ID -tunnuksesi." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Valitettavasti päivitysten teko sähköpostilla ei ole sallittua." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID kuuluu jo toiselle käyttäjälle." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Valitettavasti tuo ei ole oikea osoite sähköpostipäivityksille." +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Vahvistuskoodi lähetettiin antamaasi pikaviestinosoitteeseen. Sinun täytyy " +"antaa osoitteelle %s oikeus lähettää viestejä sinulle." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Lähdekoodi" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Tämä ei ole Jabber ID-tunnuksesi." -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Tilastot" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Saapuneet viestit käyttäjälle %s - sivu %d" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Tallennettua OpenID-tunnusta ei löytynyt." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Tilaa" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Saapuneet viestit käyttäjälle %s" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Tilaajat" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "Tämä on postilaatikkosi, jossa on sinulle saapuneet yksityisviestit." -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Tilaus sallittu" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Tilaus hylätty" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" +"Sinun täytyy olla kirjautuneena sisään kutsuaksesi uusia käyttäjiä palveluun " +"%s" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Tilaukset" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Sähköpostiosoite %s ei kelpaa" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Kutsu(t) lähetettiin" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Tagit" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Kutsu uusia käyttäjiä" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Teksti" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Tekstihaku" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Tämä OpenID-tunnus ei kuulu sinulle." - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Tämä osoite on jo vahvistettu." - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Tämä vahvistuskoodi ei ole sinun!" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Tämä sähköpostiosoite kuuluu jo toisella käyttäjällä." - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Tämä tiedosto on liian iso." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Tämä on jo Jabber ID -tunnuksesi." - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Tämä on jo sähköpostiosoitteesi." - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Tämä on jo puhelinnumerosi." - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Tämä ei ole Jabber ID-tunnuksesi." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Tämä ei ole sähköpostiosoitteesi." - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Tämä ei ole puhelinnumerosi." - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Tämä on väärä pikaviestiosoite." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Tämä on väärä vahvistukoodi." - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Tämä puhelinnumero kuuluu jo toiselle käyttäjälle." - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Päivitys on liian pitkä. Maksimipituus on 255 merkkiä." - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Osoite on poistettu." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " -"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " -"Tilauskoodisi on:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " -"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Nämä ihmiset seuraavat käyttäjän %s päivityksiä." - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Nämä ihmiset seuraavat sinun päivityksiäsi." - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Käyttäjä %s seuraa näiden ihmisten päivityksiä." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Näiden ihmisten päivityksiä sinä seuraat." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Nämä ihmiset ovat jo käyttäjiä ja sinä olet automaattisesti tilannut heidän " -"päivityksensä:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Vahvistuskoodi on liian vanha. Aloita uudelleen." - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Lomakkeen pitäisi lähettää automaattisesti tiedot. Jos kuitenkaan näin ei " -"tapahdu, paina lähetä painiketta mennäksesi OpenID-palveluntajoajalle." - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Tämä on ensimmäinen kerta kun olet sisäänkirjautunut %s -palveluun, joten " -"OpenID-tunnuksesi pitää yhdistää johonkin tämän palvelun käyttäjätunnukseen. " -"Tätä varten voit luoda uuden käyttäjätunnuksen tai yhdistää OpenID-tunnuksen " -"olemassa olevaan käyttäjätunnukseen, jos sinulla sellainen jo on." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Tämä metodi edellyttää POST sanoman." - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Aikavyöhyke" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Aikavyöhykettä ei ole valittu." - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%), tai " -"[rekisteröidä](%%action.register%%) uuden käyttäjätunnuksen. Jos sinulla on " -"jo käyttäjätunnus jossain [yhteensopivassa mikroblogauspalvelussa](%%doc." -"openmublog%%), syötä profiilisi URL-osoite alla olevaan kenttään." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Kaksi käyttäjätunnusta tai nimeä täytyy antaa." - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Odottamaton lomakkeen lähetys." - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Odottamaton salasanan uudelleenasetus." - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Tuntematon toiminto" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Tuntematon OMB-protokollan versio." - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Ellei toisin ilmoitettu, tämän palvelun sisältöjen tekijänoikeudet kuuluvat " -"niiden kirjoittajille ja ovat saatavilla seuraavalla lisenssillä " - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Tuntematon osoitetyyppi %s " - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Peruuta tilaus" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "OMB versiota ei ole tuettu" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Kuvatiedoston formaattia ei ole tuettu." - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Päivitykset SMS:llä" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Päivitykset pikaviestintä käyttäen (IM)" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Lataa" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Lataa uusi käyttäjäkuva tästä. Et voi muokata kuvaa lataamisen jälkeen, " -"joten varmista sen olevan suurinpiirtein neliön muotoinen. Kuvan pitää olla " -"palvelun tekijänoikeuslisenssin mukainen. Sen täytyy myös olla sivuston " -"lisenssin alla saatavilla. Käytä sellaista kuvaa, joka kuulu sinulle ja " -"jonka haluat näkyvän muille." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Lataa uusi profiilikuva" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Käytä tätä lomaketta, jos haluat kutsua kavereita ja työkavereita käyttämään " -"tätä palvelua." - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja " -"salasanan uudelleen käyttöönottoon." - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Käyttäjää jota seurataan ei ole olemassa." - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Käyttäjällä ei ole profiilia." - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Käyttäjätunnus" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Käyttäjää ei löytynyt." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "Missä aikavyöhykkeessä olet normaalisti?" - -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Mitä teet juuri nyt, %s?" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Kuvan '%s' tyyppi on väärä" - -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Kuvan '%s' koko on väärä" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Kyllä" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Sinulla on jo tämä OpenID-tunnus!" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei " -"voi enää perua." - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Olet jo kirjautunut sisään!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Olet jos tilannut seuraavien käyttäjien päivitykset:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Et ole määritellyn käyttäjän kaveri." - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Voit vaihtaa salasanan tästä. Muista valita riittävän hyvä!" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Voit luoda uuden käyttäjätunnuksen ja aloittaa päivityksien tekemisen." - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta." - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "Voit poistaa OpenID-tunnuksen painamalla \"Poista\"-nappia." - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc." -"im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Voit päivittää täällä henkilötietojasi, jotta muut saavat tietää sinusta " -"enemmän." - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Voit käyttää paikallista tilausta!" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Et lähettänyt profiilia" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Sinulla on uusi päivityksien lähetysosoite palvelussa %1$s.\n" -"\n" -"Lähetä sähköposti osoitteeseen %2$s tehdäksesi uuden päivityksen.\n" -"\n" -"Lisää sähköpostin käyttöohjeita voit lukea osoitteesta %3$s.\n" -"\n" -"Terveisin,\n" -"%4$s" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Et voi poistaa toisen käyttäjän päivitystä." - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Sinun täytyy olla kirjautuneena sisään kutsuaksesi uusia käyttäjiä palveluun " -"%s" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Lähetämme sinulle ilmoituksen, kun joku kutsumistasi henkilöistä hyväksyy " -"kutsun ja rekisteröityy palveluun. Kiitoksia yhteisön kasvattamisesta!" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Sinut on tunnistettu. Syötä uusi salasana alle. " - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "OpenID URL-osoitteesi" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Käyttäjätunnuksesi tässä palvelussa tai rekisteröity sähköpostiosoitteesi." - -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, 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%%) mahdollistaa kirjautumisen sisään useaan palveluun " -"yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "muutama sekunti sitten" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "noin %d päivää sitten" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "noin %d tuntia sitten" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "noin %d minuuttia sitten" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "noin %d kuukautta sitten" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "noin päivä sitten" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "noin minuutti sitten" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "noin kuukausi sitten" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "noin vuosi sitten" - -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "noin tunti sitten" - -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "poista" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "vastaus viestiin..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "vastaus" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "sama salasana kuin yllä" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "tiedoston tyyppi ei ole tuettu" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Myöhemmin" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " -"uudelleen." - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Tämä päivitys ei ole suosikki!" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Ei voitu poistaa suosikkia." - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Lisää suosikiksi" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Tämä päivitys on jo suosikki!" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Ei voitu lisätä suosikiksi." - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Poista suosikeista" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "Käyttäjän %s suosikkipäivitykset" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Käyttäjän %s suosikkipäivityksien syöte" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Saapuneet viestit käyttäjälle %s - sivu %d" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Saapuneet viestit käyttäjälle %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "Tämä on postilaatikkosi, jossa on sinulle saapuneet yksityisviestit." - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s on kutsunut sinut liittymään palveluun %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Kirjaudu sisään automaattisesti tulevaisuudessa; " - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Ole hyvä ja turvallisuussyistä syötä uudelleen " - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla. " - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Vastaanottajaa ei ole määritelty." - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Et voi lähettää viestiä tälle käyttäjälle." - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -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." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Tuota käyttäjää ei ole." - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Uusi viesti" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Päivitys ilman vastaavaa profiilia" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"[OpenID](%%doc.openid%%) mahdollistaa sisäänkirjautumisen useaan palveluun " - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Jos haluat lisätä OpenID-tunnuksen käyttäjätiliisi, " - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Et voisi enää kirjautua palveluun, jos poistaisit ainoan OpenID-tunnuksesi! " - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Voit poistaa OpenID-tunnuksen käyttäjätililtäsi " - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Käyttäjän %s lähetetyt viestit - sivu %d" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Käyttäjän %s lähetetyt viestit" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "Tämä on postilaatikkosi, jossa on lähettämäsi yksityisviestit." - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Etsi ihmisiä palvelussa %%site.name%% heidän nimensä, paikkansa tai " -"kiinnostustensa perusteella. " - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Voit päivittää täällä henkilökohtaista profiiliasi " - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Käyttäjälle ei löydy profiilia" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Tämä vahvistuskoodi on liian vanha. " - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Jos olet unohtanut tai hukannut" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Sinut on tunnistettu. Syötä " - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Käyttäjätunnuksesi tässä palvelussa, " - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Ohjeet salasanan palauttamiseksi " - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Uuden salasanan tallennus onnistui. " - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Onneksi olkoon, %s! tervetuloa %%%%site.name%%%% palveluun. Tästä haluat " -"ehkä jatkaa..." - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "Saat pian sähköpostilla viestin, jossa on " - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%)," - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Käyttäjän %s suosikkien syöte" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Ei saatu haettua suosikkipäivityksiä." - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Tuota viestiä ei ole." - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Vain lähettäjä ja vastaanottaja voivat lukea tämän viestin." - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Viesti käyttäjälle %1$s, %2$s" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Viesti käyttäjältä %1$s, %2$s" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Lähetä viesti" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Matkapuhelinoperaattorisi" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Suorat viestit käyttäjälle %s" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Kaikki suorat viestit käyttäjälle %s" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Suorat viestit, jotka sinä olet lähettänyt" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Kaikki suorat viestit käytäjältä %s" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Viestissä ei ole tekstiä!" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Vastaanottajaa ei löytynyt." - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -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." - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Käyttäjän %s suosikit" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s lisäsi päivityksesi suosikkeihinsa" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s lisäsi päivityksesi ajalta %2$s suosikkeihinsa.\n" -"\n" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Lisää Twitter käyttäjätunnuksesi lähettääksesi päivitykset automaattisesti " -"myös Twitteriin, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Twitter-asetukset" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Twitter käyttäjätili" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Tämänhetkinen vahvistettu Twitter käyttäjätilisi." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Twitter-käyttäjätunnus" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Ei välilyöntejä, kiitos." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Twitter-salasana" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Lähetä päivitykseni automaattisesti Twitteriin." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Lähetä paikalliset \"@\"-vastaukset Twitteriin." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Tilaa kavereitteni Twitter päivitykset täällä." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Käyttäjätunnuksessa voi olla vain numeroita, isoja ja pieniä kirjaimia ja " -"alaviiva (_). 15 merkkiä maksimissaan." - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Twitter-tunnustasi ei voitu vahvistaa!" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Ei pystytty hakemaan käyttäjän \"%s\" tietoja Twitteristä." - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Twitter-asetuksia ei voitu tallentaa!" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Twitter-asetukset tallennettu." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Tämä ei ole sinun Twitter käyttäjätilisi." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Twitter käyttäjää ei onnistuttu poistamaan." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Twitter käyttäjätili poistettu." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Twitter-asetuksia ei voitu tallentaa." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Twitter-asetukset tallennettu." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Tarkista näistä tiedoista haluatko " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Tilausta ei ole hyväksytty, mutta" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Tilaus on hylätty, mutta " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Komennon tulos" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Komento suoritettu" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Komento epäonnistui" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Valitettavasti tätä komentoa ei ole vielä toteutettu." - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Tilaukset: %1$s\n" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Käyttäjällä ei ole viimeistä päivitystä" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Päivitys on merkitty suosikiksi." - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Olet jos tilannut seuraavien käyttäjien päivitykset:" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Fullname: %s" -msgstr "Koko nimi: %s" +msgid "%s (%s)" +msgstr "%s (%s)" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Kotipaikka: %s" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Nämä ihmiset ovat jo käyttäjiä ja sinä olet automaattisesti tilannut heidän " +"päivityksensä:" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Kotisivu: %s" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Kutsu(t) lähetettiin seuraaville henkilöille:" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Tietoa: %s" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Lähetämme sinulle ilmoituksen, kun joku kutsumistasi henkilöistä hyväksyy " +"kutsun ja rekisteröityy palveluun. Kiitoksia yhteisön kasvattamisesta!" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Käytä tätä lomaketta, jos haluat kutsua kavereita ja työkavereita käyttämään " +"tätä palvelua." -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Suora viesti käyttäjälle %s lähetetty" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Sähköpostiosoitteet" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Tapahtui virhe suoran viestin lähetyksessä." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Kutsuttavien kavereiden osoitteet (yksi per rivi)" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Henkilökohtainen viesti" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Käyttäjän %s päivitykset tilattu" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Voit myös lisätä oman viestisi kutsuun" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Lähetä" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/invite.php:226 #, php-format -msgid "Unsubscribed from %s" -msgstr "Käyttäjän %s päivitysten tilaus lopetettu" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Komentoa ei ole vielä toteutettu." - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Ilmoitukset pois päältä." - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Ilmoituksia ei voi pistää pois päältä." - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Ilmoitukset päällä." - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Ilmoituksia ei voi pistää päälle." - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Komennot:\n" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Viestin tallennus ei onnistunut." - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Käyttäjälle ei löydy vastaavaa profiilia palvelussa." +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/invite.php:228 #, php-format msgid "" -"You have a new posting address on %1$s.\n" +"%1$s has invited you to join them on %2$s (%3$s).\n" "\n" -msgstr "" -"Sinulla on uusi lähetysosoite palvelussa %1$s.\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" "\n" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "Uusi yksityisviesti käyttäjältä %s" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" +"Sincerely, %2$s\n" msgstr "" -"%1$s (%2$s) lähetti sinulle yksityisviestin:\n" +"%1$s on kutsunut sinut %2$s (%3$s) mikroblogipalveluun.\n" "\n" +"%2$s mikroblogipalvelu auttaa sinua pysymään ajantasalla tuttujen ja " +"kiinnostavien ihmisten kanssa.\n" +"\n" +"Voit myös jakaa uutisia itsestäsi ja ajatuksiasi verkossa ihmisten, jotka " +"tuntevat sinut, kanssa. Se on myös kätevä tapa tutustua uusiin ihmisiin " +"jotka ovat kiinnostuneet samanlaisista asioista, kuin sinä.\n" +"\n" +"%1$s sanoi:\n" +"\n" +"%4$s\n" +"Voit nähdä henkilön %1$s profiilisivun %2$s-palvelussa täältä:\n" +"\n" +"%5$s\n" +"\n" +"Jos haluat kokeilla palvelua, klikkaa alla olevaa linkkiä hyväksyäksesi " +"kutsun.\n" +"\n" +"%6$s\n" +"\n" +"Jos et halua osallistua, voit jättää tämän viestin huomioimatta. Kiitoksia " +"kärsivällisyydestä ja ajastasi.\n" +"\n" +"Terveisin, %2$s\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Tämän lomakkeen pitäisi automaattisesti lähettää tiedot. " +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään." -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Suosikit" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Sinä kuulut jo tähän ryhmään " -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/joingroup.php:128 lib/command.php:234 #, php-format -msgid "%s's favorite notices" -msgstr "Käyttäjän %s suosikkipäivitykset" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Käyttäjä" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Saapuneet" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Sinulle saapuneet viestit" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Lähetetyt" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Lähettämäsi viestit" +msgid "Could not join user %s to group %s" +msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s liittyi ryhmään %s" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Twitter yhdistämisen asetukset" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "Vastaanottaja" +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "Sinä et kuulu tähän ryhmään." -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Ei voitu lukea viestiä." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Ei löydetty käyttäjän jäsenyystietoja." -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format -msgid "%s and friends, page %d" -msgstr "%s ja kaverit, sivu %d" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Voit ladata oman profiilikuvasi." - -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Profiilikuva-asetukset" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Alkuperäinen" +msgid "Could not remove user %s to group %s" +msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Esikatselu" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s erosi ryhmästä %s" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Rajaa" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Olet jo kirjautunut sisään." -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Istuntoavaimesi kanssa oli ongelma." +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Päivityksen sisältö ei kelpaa" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Väärä käyttäjätunnus tai salasana" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Tiedoston data hävisi." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Virhe tapahtui käyttäjän asettamisessa." -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Tiedosto hävisi." +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Kirjaudu sisään" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Tunnistamaton tiedoston tyyppi" +#: actions/login.php:243 +msgid "Login to site" +msgstr "Kirjaudu sisään" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Profiilia ei ole määritelty." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Tunnus" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Ei profiilia tuolle ID:lle." +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Salasana" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Estä käyttäjä" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Muista minut" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Oletko varma että haluat estää tämän käyttäjän?" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla " +"useampi käyttäjä!" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Sinä olet jo estänyt tämän käyttäjän." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Oletko hukannut tai unohtanut salasanasi?" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Käyttäjän estotiedon tallennus epäonnistui." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " +"asetuksiesi muuttamista." -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "Osoite \"%s\" on " +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä " +"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " +"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Olet poistamassa pysyvästi tämän päivityksen. " +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Lisää suosikkeihin" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/makeadmin.php:132 #, php-format -msgid "Edit %s group" -msgstr "Muokkaa ryhmää %s" +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Toimiakseen postilaatikkojen pitää olla käytössä ryhmille" +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Ei nykyistä tilatietoa" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Tunnusta ei ole." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Uusi ryhmä" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Tuota ryhmää ei ole." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Käytä tätä lomaketta luodaksesi ryhmän." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Uusi viesti" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Käytä tätä lomaketta muokataksesi ryhmää." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Et voi lähettää viestiä tälle käyttäjälle." -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Tunnuksessa voi olla ainoastaan pieniä kirjaimia " +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Ei sisältöä!" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "kuvaus on liian pitkä (max 140 merkkiä)." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Vastaanottajaa ei ole määritelty." -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Ei voitu päivittää ryhmää." +#: actions/newmessage.php:164 lib/command.php:370 +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." -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Asetukset tallennettu." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Viesti" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Odotetaan vahvistusta tälle osoitteelle." +msgid "Direct message to %s sent" +msgstr "Suora viesti käyttäjälle %s lähetetty" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Tee uusi sähköpostiosoite päivityksien lähettämiseen; " +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Ajax-virhe" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Lähetä sähköpostia kun joku " +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Uusi päivitys" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Salli kavereiden tönäistä minua ja lähetä sähköpostilla ilmoitus." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Päivitys lähetetty" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Sähköpostiosoite on jo käytössä " +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Hae päivityksiä palvelun %%site.name%% sisällöistä. Erota hakutermit " +"välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia." -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "Vahvistuskoodi lähetettiin lisäämääsi sähköpostiosoitteeseen. " +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Tekstihaku" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Palvelinvirhe - käyttäjän tietoja ei saatu!" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Hakusyöte haulle \"%s\"" -#: actions/facebookhome.php:196 +#: actions/noticesearch.php:121 #, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Jos haluat %s-sovelluksen automaattisesti päivittävän " +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/noticesearch.php:124 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Salli palvelun %s päivittää Facebook-tilani" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Ohita" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Päivityksellä ei ole sisältöä!" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Sivutus" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Myöhemmin" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Aiemmin" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Kaikki päivitykset hakuehdolla \"%s\"" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Kiitos, kun kutsuit kavereitasi käyttämään palvelua %s" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Käyttäjä ei ole sallinut tönäisyjä tai ei ole vahvistanut " +"sähköpostiosoitettaan." -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Kutsu lähetettiin seuraaville henkilöille:" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Tönäisy lähetetty" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "Sinut on kutsuttu palveluun %s" +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Tönäisy lähetetty!" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Kutsu kavereitasi käyttämään %s palvelua" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Päivitykselle ei ole profiilia" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "Friends already using %s:" -msgstr "Kaverisi jotka käyttävät jo %s palvelua:" +msgid "%1$s's status on %2$s" +msgstr "Käyttäjän %1$s päivitys %2$s" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "Lähetä kutsut" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Yhdistä" -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Facebook käyttäjää ei voitu poistaa." +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "Synkronointiasetusten tallennus epäonnistui!" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Tuo ei ole tuettu tietomuoto." -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Synkronointiasetukset tallennettiin." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Etsi ihmisiä" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Päivitä Facebook-tilani automaattisesti." +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Etsi Päivityksistä" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Lähetä \"@\" vastaukset Facebookiin." +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Muita Asetuksia" -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Etuliite" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Hallinnoi muita asetuksia." -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Etuliite päivityksille." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "Jos haluat että %s päivittää automaattisesti " +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Käytettävä automaattinen lyhennyspalvelu." -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Synkronointiasetukset" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profiiliasetukset" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Poista suosikeista" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Suosituimmat päivitykset" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." -#: actions/favorited.php:67 +#: actions/outbox.php:58 #, php-format -msgid "Popular notices, page %d" -msgstr "Suosituimmat päivitykset, sivu %d" - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Suosituimmat päivitykset sivustolla juuri nyt." - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Esittelyssä olevat käyttäjät" +msgid "Outbox for %s - page %d" +msgstr "Käyttäjän %s lähetetyt viestit - sivu %d" -#: actions/featured.php:71 +#: actions/outbox.php:61 #, php-format -msgid "Featured users, page %d" -msgstr "Esittelyssä olevat käyttäjät, sivu %d" +msgid "Outbox for %s" +msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Valikoima joitakin loistavia palvelun %s käyttäjiä" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "Tämä on postilaatikkosi, jossa on lähettämäsi yksityisviestit." -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Vaihda salasana" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "ID-tunnusta ei ole" +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Vaihda salasanasi." -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Ryhmän logo" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Salasanan vaihto" + +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Vanha salasana" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Voit ladata ryhmälle logon." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Uusi salasana" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Logo päivitetty." +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 tai useampia merkkejä" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Logon päivittäminen epäonnistui." +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Vahvista" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "Ryhmän %s jäsenet" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "sama salasana kuin yllä" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "Ryhmän %s jäsenet, sivu %d" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Vaihda" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Lista ryhmän käyttäjistä." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Ryhmät" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Salasanat eivät täsmää." -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "Ryhmät, sivu %d" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Väärä vanha salasana" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%%-ryhmissä voit löytää ja keskustella " +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Luo uusi ryhmä" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Uutta salasanaa ei voida tallentaa." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Salasana tallennettu." -#: actions/groupsearch.php:57 +#: actions/peoplesearch.php:52 #, php-format msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Hae %%site.name%% ryhmiä niiden nimen, paikan tai kuvauksen perusteella. " - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Ryhmähaku" +"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " +"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " +"olla 3 tai useamman merkin pituisia." -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "Voit lähettää ja vastaaottaa päivityksiä " +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Etsi ihmisiä" -#: actions/imsettings.php:120 +#: actions/peopletag.php:70 #, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber tai GTalk -osoite, " - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Lähetä minulle vastaukset Jabberin/GTalkin kautta " +msgid "Not a valid people tag: %s" +msgstr "Ei sallittu henkilötagi: %s" -#: actions/imsettings.php:321 +#: actions/peopletag.php:144 #, php-format -msgid "A confirmation code was sent " -msgstr "Varmistuskoodi lähetettiin " - -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään." +msgid "Users self-tagged with %s - page %d" +msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Sinä kuulut jo tähän ryhmään " +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Päivityksen sisältö ei kelpaa" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/postnotice.php:90 #, php-format -msgid "Could not join user %s to group %s" -msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "%s liittyi ryhmään %s" +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Profiiliasetukset" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." msgstr "" -"Postilaatikkojen täytyy olla otettu käyttöön, jotta ryhmäominaisuus toimii." - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." +"Voit päivittää täällä henkilötietojasi, jotta muut saavat tietää sinusta " +"enemmän." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Tuota ryhmää ei ole." +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Profiilitieto" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "Sinä et kuulu tähän ryhmään." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " +"välilyöntejä" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "Et voi erota ryhmästä, kun olet sen ylläpitäjä." +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Koko nimi" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Ei löydetty käyttäjän jäsenyystietoja." +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Kotisivu" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "%s erosi ryhmästä %s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Kirjaudu sisään" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Kuvaile itseäsi ja" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Ei nykyistä tilatietoa" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Tietoja" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Uusi ryhmä" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Kotipaikka" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Käytä tätä lomaketta luodaksesi ryhmän." +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Ryhmän luonti ei onnistunut." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Tagit" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin " +"ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna" -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Liikaa merkkejä. " +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Kieli" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Älä lähetä viestiä itsellesi; " +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Ensisijainen kieli" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Päivitys lähetetty" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Aikavyöhyke" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Ajax-virhe" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "Missä aikavyöhykkeessä olet normaalisti?" -#: actions/nudge.php:85 +#: actions/profilesettings.php:160 msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -"Käyttäjä ei ole sallinut tönäisyjä tai ei ole vahvistanut " -"sähköpostiosoitettaan." - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Tönäisy lähetetty" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Tönäisy lähetetty!" +"Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " +"ihmiskäyttäjille)" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "OpenID sisäänkirjautuminen" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Viimeisen OpenID-tunnuksesi poistaminen " +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Aikavyöhykettä ei ole valittu." -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Muita Asetuksia" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Kieli on liian pitkä (max 50 merkkiä)." -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Hallinnoi muita asetuksia." +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Virheellinen tagi: \"%s\"" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "URL-osoitteen automaattinen lyhennys" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Palvelu" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Ei voitu tallentaa profiilia." -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Käytettävä automaattinen lyhennyspalvelu." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Tageja ei voitu tallentaa." -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Asetukset tallennettu." -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Vaihda salasanasi." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Salasanan vaihto" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Julkista päivitysvirtaa ei saatu." -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/public.php:129 #, php-format -msgid "Not a valid people tag: %s" -msgstr "Ei sallittu henkilötagi: %s" +msgid "Public timeline, page %d" +msgstr "Julkinen aikajana, sivu %d" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Julkinen aikajana" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Näillä käyttäjillä on henkilötagi \"%s\" " +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Julkinen syöte (RSS 1.0)" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Profiilitieto" +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Julkisen Aikajanan Syöte (RSS 2.0)" + +#: actions/public.php:159 +msgid "Public Stream Feed (Atom)" +msgstr "Julkinen syöte (Atom)" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/public.php:179 +#, php-format msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -"Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin " -"ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Tilaa automaattisesti kaikki, jotka " +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/public.php:186 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Virheellinen tagi: \"%s\"" - -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Tageja ei voitu tallentaa." +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/public.php:233 #, php-format -msgid "Public timeline, page %d" -msgstr "Julkinen aikajana, sivu %d" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Julkista päivitysvirtaa ei saatu." +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/public.php:220 -#, php-format +#: actions/public.php:238 +#, fuzzy, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" "Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" "blogging)palvelu " @@ -4783,2276 +2218,2052 @@ msgstr "Julkinen tagipilvi" msgid "These are most popular recent tags on %s " msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Tagipilvi" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä." - -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "Et voi rekisteröityä, jos sinulla ei ole " - -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Tällä lomakkeella voit luoda " - -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 pientä kirjainta tai numeroa, ei ääkkösiä" - -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Käytetään ainoastaan päivityksiin, ilmoituksiin, " - -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "Verkko-osoite kotivullesi, blogiin, " - -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Kuvaile itseäsi ja" - -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Missä olet, kuten \"Kaupunki, " - -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " poislukien yksityinen tieto: salasana, " - -#: actions/register.php:471 +#: actions/publictagcloud.php:69 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Onnittelut, %s! Ja tervetuloa palveluun %%%%site.name%%%%. " - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(Sinun pitäisi saada viesti sähköpostilla " - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." - -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "Vastaukset käyttäjälle %s, sivu %d" - -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "Ryhmä %s" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: actions/publictagcloud.php:75 #, php-format -msgid "%s group, page %d" -msgstr "Ryhmä %s, sivu %d" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Ryhmän profiili" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Tagipilvi" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Olet jo kirjautunut sisään!" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Huomaa" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Palautuskoodia ei ole." -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Ryhmän toiminnot" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Tuo ei ole palautuskoodi." -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "Päivityssyöte ryhmälle %s" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Tuntemattoman käyttäjän palautuskoodi" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Jäsenet" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Virhe vahvistuskoodin kanssa." -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(Tyhjä)" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Vahvistuskoodi on liian vanha. Aloita uudelleen." -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Kaikki jäsenet" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." -#: actions/showgroup.php:378 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Vain lähettäjä ja vastaanottaja " -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, sivu %d" - -#: actions/showstream.php:143 -msgid "'s profile" -msgstr "nimisen käyttäjän profiili" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Käyttäjän profiili" - -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Kuva" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Käyttäjän toiminnot" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Lähetä suora viesti tälle käyttäjälle" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Viesti" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Kaikki tilaajat" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Kaikki ryhmät" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." msgstr "" -"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " -"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" +"Käyttäjätunnuksesi tässä palvelussa tai rekisteröity sähköpostiosoitteesi." -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, " +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Palauta" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Lähetä minulle päivitykset SMS:n välityksellä; " +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Vaihda salasana" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Vahvistuskoodi on lähetetty antamaasi puhelinnumeroon. " +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Salasanan palautus" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Matkapuhelinoperaattori" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Salasanan palautuspyyntö lähetetty." -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Et ole tilannut tämän käyttäjän päivityksiä." +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Tuntematon toiminto" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Tilausta ei onnistuttu tallentamaan." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Sama kuin ylläoleva salasana" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Tilattu" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Vaihda" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "Käyttäjän %s tilaajat" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Syötä käyttäjätunnus tai sähköpostiosoite" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "Käyttäjän %s tilaajat, sivu %d" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Käyttäjää tuolla sähköpostilla tai käyttäjätunnuksella ei ole." -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Tässä ovat ihmiset, jotka seuraavat " +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Rekisteröityä sähköpostiosoitetta ei ole tälle käyttäjälle." -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Tässä ovat ihmiset, jotka " +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Virhe tapahtui osoitevahvistuksen tallentamisessa" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "Käyttäjän %s tilaukset" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Ohjeet salasanan palauttamiseksi on lähetetty sähköpostiisiosoitteeseen, " +"joka on rekisteröity käyttäjätunnuksellesi." -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "Käyttäjän %s tilaukset, sivu %d" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Odottamaton salasanan uudelleenasetus." -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Tässä ovat ihmiset, joiden päivityksiä " +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "Tässä ovat ihmiset, joiden " +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Salasana ja salasanan vahvistus eivät täsmää." + +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "" +"Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään." -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä." -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Päivitykset joissa on tagi %s, sivu %d" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Virhe vahvistuskoodin kanssa." -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Viestit joissa on tagi %s, uusimmat ensin" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Rekisteröityminen onnistui" -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Et ole kirjautunut sisään" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Rekisteröidy" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Ei id parametria." +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Rekisteröityminen ei ole sallittu." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Tagi %s" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Tagaa käyttäjä" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Tuo ei ole kelvollinen sähköpostiosoite." -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä " -"erotettuna" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Sähköpostiosoite on jo käytössä." -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Istuntoavaimesi kanssa oli ongelma." +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Käyttäjätunnus tai salasana ei kelpaa." -#: actions/tagother.php:191 actions/tagother.php:193 +#: actions/register.php:342 msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -"Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun " -"päivityksiäsi." - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Tagien tallennus epäonnistui." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -"Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka " -"tilaavat päivityksiäsi." +"1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " +"välilyöntejä. Pakollinen." -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Tuota tagia ei ole." +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 tai useampia merkkejä. Pakollinen." -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Mikroblogi merkitty tageillä %s" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Sama kuin ylläoleva salasana. Pakollinen." -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Käyttäjän esto epäonnistui." +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Sähköposti" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Käyttäjän eston poisto epäonnistui." +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja " +"salasanan uudelleen käyttöönottoon." -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Ei löytynyt." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Pitempi nimi, mieluiten oikea nimesi" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Lisää Twitter käyttäjätilisi lähettääksesi automaattisesti " +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "" +"Minun tekstini ja tiedostoni ovat käytettävissä seuraavan lisenssin " +"mukaisesti " -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Twitter käyttäjätunnus" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Twitter salasana" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, " +"puhelinnumero." -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Twitter kaverit" +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Onnittelut, %s! Tervetuloa palveluun %%%%site.name%%%%. Täältä voit " +"jatkaa...\n" +"\n" +"* [Profiiliisi](%s) ja lähettää ensimmäisen päivityksesi.\n" +"* Lisäämään [Jabber/GTalk osoitteen](%%%%action.imsettings%%%%), jotta saat " +"lähetettyä päivitykset pikaviestimen kautta.\n" +"* [Hakemaan ihmisiä](%%%%action.peoplesearch%%%%), jotka tunnet tai joilla " +"on samanlaisia kiinnostuksen kohteita. \n" +"* Päivittämään [profiiliasi](%%%%action.profilesettings%%%%), jotta muut " +"tietävät enemmän sinusta.\n" +"* Lukemaan [ohjeista](%%%%doc.help%%%%) muista ominaisuuksista, joista et " +"vielä tiedä. \n" +"\n" +"Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Käyttäjätunnuksessa voi olla ainoastaan numeroita, " +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Saat pian sähköpostiisi viestin, jonka ohjeita seuraamalla voit vahvistaa " +"sähköpostiosoitteesi.)" -#: actions/twittersettings.php:341 +#: actions/remotesubscribe.php:98 #, php-format -msgid "Unable to retrieve account information " -msgstr "Käyttäjätietoa ei saatu " +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%), tai " +"[rekisteröidä](%%action.register%%) uuden käyttäjätunnuksen. Jos sinulla on " +"jo käyttäjätunnus jossain [yhteensopivassa mikroblogauspalvelussa](%%doc." +"openmublog%%), syötä profiilisi URL-osoite alla olevaan kenttään." -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Tapahtui virhe, kun estoa poistettiin." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Etätilaus" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Ei profiili id:tä kyselyssä." +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Tilaa tämä käyttäjä" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Ei profiilia tuolla id:llä." +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Käyttäjätunnus" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Tilaus lopetettu" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Käyttäjän, jota haluat seurata, käyttäjätunnus" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "Käyttäjän %s ryhmät" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Profiilin URL" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "Käyttäjän %s ryhmät, sivu %d" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Tilaa" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)." + +#: actions/remotesubscribe.php:168 +#, fuzzy msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "" -"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " -"päivityksien lähettämista muutaman minuutin päästä." - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Päivityksesi tähän palveluun on estetty." - -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Lataa kuva" +"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " +"löytynyt)." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Muut" +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "" +"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Muita asetuksia" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Ei saatu request tokenia." -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "%s - %s" -msgstr "%s - %s" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Nimetön sivu" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Ensisijainen sivunavigointi" +msgid "Replies to %s" +msgstr "Vastaukset käyttäjälle %s" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Henkilökohtainen profiili ja kavereiden aikajana" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Vastaukset käyttäjälle %s, sivu %d" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Hae ihmisiä tai tekstiä" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Päivityksien syöte käyttäjälle %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Käyttäjätili" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Päivityksien syöte käyttäjälle %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Päivityksien syöte käyttäjälle %s" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Yhdistä pikaviestimeen, SMS, Twitteriin" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Kirjaudu ulos palvelusta" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Kirjaudu sisään palveluun" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Luo uusi käyttäjätili" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Viesti käyttäjälle %1$s, %2$s" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Kirjaudu sisään OpenID-tunnuksella" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Auta minua!" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Ei saatu haettua suosikkipäivityksiä." -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Palvelun ilmoitus" +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Paikalliset näkymät" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "Sivuilmoitus" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Käyttäjän %s kavereiden syöte (Atom)" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Toissijainen sivunavigointi" +#: actions/showfavorites.php:205 +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 "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "StatusNet-ohjelmiston lisenssi" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Kaikki " +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "lisenssi." +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Estä tämä käyttäjä" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "Ryhmä %s" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Estä" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "Ryhmä %s, sivu %d" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Poista tämä päivitys suosikeista" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Ryhmän profiili" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Käyttääksesi %s Facebook-sovellusta sinun pitää kirjautua sisään " +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " uusi käyttäjätili." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Huomaa" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Julkaistu" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Merkitse päivitys suosikkeihin" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Ryhmän toiminnot" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Vie tietoja" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Päivityssyöte ryhmälle %s" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Suodata tagien perusteella" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Päivityssyöte ryhmälle %s" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Kaikki" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Päivityssyöte ryhmälle %s" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Tagi" +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Käyttäjän %s lähetetyt viestit" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Valitse tagi lyhentääksesi listaa" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Jäsenet" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Mene" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(Tyhjä)" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Kaikki jäsenet" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Kuvaus" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Tilastot" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" +#: actions/showgroup.php:432 +msgid "Created" +msgstr "Luotu" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: actions/showgroup.php:448 +#, php-format msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +"**%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 "" -"Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa" -"\"" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Ryhmä" +#: actions/showgroup.php:454 +#, fuzzy, 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** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" msgstr "Ylläpito" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "Muokkaa %s ryhmän ominaisuuksia" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Tuota viestiä ei ole." -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "Logo" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Vain lähettäjä ja vastaanottaja voivat lukea tämän viestin." -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/showmessage.php:108 #, php-format -msgid "Add or edit %s logo" -msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Ryhmät, joissa eniten jäseniä" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "Ryhmät, joissa eniten päivityksiä" +msgid "Message to %1$s on %2$s" +msgstr "Viesti käyttäjälle %1$s, %2$s" -#: lib/grouptagcloudsection.php:56 +#: actions/showmessage.php:113 #, php-format -msgid "Tags in %s group's notices" -msgstr "Tagit ryhmän %s päivityksissä" - -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "Tämä sivu ei ole saatavilla " +msgid "Message from %1$s on %2$s" +msgstr "Viesti käyttäjältä %1$s, %2$s" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Liity" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Päivitys lähetetty" -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "Eroa" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Päivitykset joilla on tagi %s" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "%s, sivu %d" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "Luo uusi käyttäjätili" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Päivityssyöte ryhmälle %s" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Kirjaudu sisään tai rekisteröidy OpenID-tunnuksella" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Päivityksien syöte käyttäjälle %s" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hei, %s.\n" -"\n" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Päivityksien syöte käyttäjälle %s" -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "%1$s seuraa nyt käyttäjää" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Päivityksien syöte käyttäjälle %s" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "Kotipaikka: %s\n" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Käyttäjän %s lähetetyt viestit" -#: lib/mail.php:256 lib/mail.php:255 +#: actions/showstream.php:191 #, php-format -msgid "Homepage: %s\n" -msgstr "Kotisivu: %s\n" +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format +#: actions/showstream.php:196 msgid "" -"Bio: %s\n" -"\n" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -"Tietoja: %s\n" -"\n" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "%s tönäisi sinua" -#: lib/mail.php:465 +#: actions/showstream.php:198 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) miettii mitä hommailet " +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/mail.php:555 +#: actions/showstream.php:234 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s lisäsi juuri päivityksesi ajalta %2$s" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Lähettäjä" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Lähetä suora viesti" - -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Lähetä päivitys" - -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Sallitut merkit" - -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "vastaus viestiin" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "Vastaa tähän päivitykseen" +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " +"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Vastaus" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS-asetukset" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Poista tämä päivitys" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" +"Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta." -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Poista" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Tämä sivu ei ole saatavilla " -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "Tönäise tätä käyttäjää" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Tämän hetken vahvistettu SMS puhelinnumero." -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "Tönäise" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Odotetaan vahvistusta tälle puhelinnumerolle." -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "Lähetä tönäisy tälle käyttäjälle" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Vahvistuskoodi" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "Tagit käyttäjän %s päivityksissä" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Syötä koodi jonka sait puhelimeesi." -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(tyhjä)" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS puhelinnumero" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Julkinen" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, suuntanumerollinen" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Käyttäjäryhmät" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Lähetä päivityksiä SMS:llä; Ymmärrän, että voin saada kohtuuttomia laskuja " +"tästä matkapuhelinoperaattoriltani." -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Viimeaikaiset tagit" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Puhelinnumeroa ei ole." -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Esittelyssä" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Operaattoria ei ole valittu." -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Suosituimmat" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Tämä on jo puhelinnumerosi." -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Päivitys" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Tämä puhelinnumero kuuluu jo toiselle käyttäjälle." -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Etsi ryhmiä tästä palvelusta" +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " +"vahvistuskoodisi ja miten sitä käytetään. " -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Nimetön osa" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Tämä on väärä vahvistukoodi." -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "Ihmiset joiden tilaaja %s on" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Tämä ei ole puhelinnumerosi." -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Matkapuhelinoperaattori" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "Ryhmät, joiden jäsen %s on" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Valitse operaattori" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: actions/smssettings.php:476 #, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" - -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "Käyttäjä on asettanut eston sinulle." - -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Tilaa tämä käyttäjä" - -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Ei mitään" +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 "" +"Matkapuhelinoperaattorisi. Jos tiedät operaattorin, joka ottaa vastaan SMS " +"viestilähetyksiä sähköpostilla, mutta ei ole listattu tänne, lähetä " +"sähköpostia meille osoitteeseen %s." -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Eniten päivityksiä" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Koodia ei ole syötetty." -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Poista esto tältä käyttäjältä" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Et ole tilannut tämän käyttäjän päivityksiä." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Poista esto" +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Tilausta ei onnistuttu tallentamaan." -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Peruuta tämän käyttäjän tilaus" +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Tilattu" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#: actions/subscribers.php:50 #, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" +msgid "%s subscribers" +msgstr "Käyttäjän %s tilaajat" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#: actions/subscribers.php:52 #, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Käyttäjän %s kavereiden syöte (Atom)" +msgid "%s subscribers, page %d" +msgstr "Käyttäjän %s tilaajat, sivu %d" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -msgid "You and friends" -msgstr "Sinä ja kaverit" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Nämä ihmiset seuraavat sinun päivityksiäsi." -#: actions/avatarsettings.php:78 +#: actions/subscribers.php:67 #, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." - -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -msgid "Avatar deleted." -msgstr "Kuva poistettu." - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +msgid "These are the people who listen to %s's notices." +msgstr "Nämä ihmiset seuraavat käyttäjän %s päivityksiä." -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy +#: actions/subscribers.php:108 msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -"Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei " -"voi enää perua." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" msgstr "" -"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " -"uudelleen." - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/subscribers.php:114 #, 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." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: actions/subscriptions.php:52 #, php-format -msgid "Okay, do it!" -msgstr "" +msgid "%s subscriptions" +msgstr "Käyttäjän %s tilaukset" -#: actions/facebooksettings.php:124 +#: actions/subscriptions.php:54 #, 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 "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Voit ladata ryhmälle logon." +msgid "%s subscriptions, page %d" +msgstr "Käyttäjän %s tilaukset, sivu %d" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Näiden ihmisten päivityksiä sinä seuraat." -#: actions/grouprss.php:136 actions/grouprss.php:137 +#: actions/subscriptions.php:69 #, php-format -msgid "Microblog by %s group" -msgstr "Käyttäjän %s mikroblogi" - -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " -"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " -"olla 3 tai useamman merkin pituisia." +msgid "These are the people whose notices %s listens to." +msgstr "Käyttäjä %s seuraa näiden ihmisten päivityksiä." -#: actions/groups.php:90 +#: actions/subscriptions.php:121 #, php-format msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Tapahtui virhe suoran viestin lähetyksessä." - -#: actions/noticesearch.php:91 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Hakusyöte haulle \"%s\"" +msgid "%s is not listening to anyone." +msgstr "%1$s seuraa nyt käyttäjää" -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " -"asetuksiesi muuttamista." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Julkinen syöte" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Julkinen syöte" +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Et ole kirjautunut sisään" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Julkinen syöte" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Ei id parametria." -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: actions/tagother.php:65 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +msgid "Tag %s" +msgstr "Tagi %s" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Käyttäjän profiili" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Kuva" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Tagaa käyttäjä" + +#: actions/tagother.php:151 msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, " -"puhelinnumero." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Luo" +"Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä " +"erotettuna" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format +#: actions/tagother.php:193 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%%%%))" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +"Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun " +"päivityksiäsi." -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Ryhmän profiili" +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Tagien tallennus epäonnistui." -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "nimisen käyttäjän profiili" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka " +"tilaavat päivityksiäsi." -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Päivityksien syöte käyttäjälle %s" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Päivitykset joissa on tagi %s, sivu %d" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Käyttäjän %s lähetetyt viestit" +msgid "Notice feed for tag %s (Atom)" +msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Kuva" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Tuota tagia ei ole." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Profiiliasetukset" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API-metodi on työn alla!" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Ei profiili id:tä kyselyssä." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Ei profiilia tuolla id:llä." -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " -"vahvistuskoodisi ja miten sitä käytetään. " +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Tilaus lopetettu" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Tuota käyttäjää ei ole." - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Lisää Twitter käyttäjätunnuksesi lähettääksesi päivitykset automaattisesti " -"myös Twitteriin, " -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Ei pystytty hakemaan käyttäjän \"%s\" tietoja Twitteristä." +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Valtuuta tilaus" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:110 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" "Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " "päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " "paina \"Peruuta\"." -#: actions/usergroups.php:131 actions/usergroups.php:130 +#: actions/userauthorization.php:188 #, fuzzy -msgid "Search for more groups" -msgstr "Hae ihmisiä tai tekstiä" +msgid "License" +msgstr "lisenssi." -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " -"päivityksien lähettämista muutaman minuutin päästä." +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Hyväksy" -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Yhdistä pikaviestimeen, SMS, Twitteriin" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Tilaa tämä käyttäjä" + +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Hylkää" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Badge" -msgstr "Tönäise" +msgid "Reject this subscription" +msgstr "Käyttäjän %s tilaukset" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Ei valtuutuspyyntöä!" + +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Tilaus sallittu" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" +"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " +"Tilauskoodisi on:" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Tilaus hylätty" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: actions/userauthorization.php:261 +#, fuzzy msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "Käyttääksesi %s Facebook-sovellusta sinun pitää kirjautua sisään " - -#: lib/feed.php:85 -msgid "RSS 1.0" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" +"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/imagefile.php:75 +#: actions/userauthorization.php:322 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: actions/userauthorization.php:338 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Terveisin,\n" -"%4$s.\n" +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kuvan URL-osoitetta '%s' ei voi avata." -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Kuvan '%s' tyyppi on väärä" -#: lib/mail.php:513 -#, php-format +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Id puuttuu." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profiiliasetukset" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: actions/usergroups.php:64 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +msgid "%s groups, page %d" +msgstr "Käyttäjän %s ryhmät, sivu %d" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Haku" +#: actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "Hae lisää ryhmiä" -#: lib/section.php:106 -msgid "More..." -msgstr "" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Sinä et kuulu tähän ryhmään." -#: actions/all.php:80 actions/all.php:127 +#: actions/usergroups.php:158 #, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/all.php:85 actions/all.php:132 +#: classes/File.php:137 #, php-format msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/all.php:87 actions/all.php:134 +#: classes/File.php:147 #, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/File.php:154 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Dokumenttia ei ole." +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Viestin tallennus ei onnistunut." -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Lista ryhmän käyttäjistä." +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Lista ryhmän käyttäjistä." +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Käyttäjän profiili" +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Ongelma päivityksen tallentamisessa." -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s ja kaverit, sivu %d" +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Lista ryhmän käyttäjistä." +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " +"päivityksien lähettämista muutaman minuutin päästä." -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Käyttäjän eston poisto epäonnistui." +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " +"päivityksien lähettämista muutaman minuutin päästä." -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Vahvistuskoodi" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Päivityksesi tähän palveluun on estetty." -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Tätä päivitystä ei voi poistaa." +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Ongelma päivityksen tallentamisessa." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: classes/Notice.php:1120 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "DB error inserting reply: %s" +msgstr "Tietokantavirhe tallennettaessa vastausta: %s" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 +#: classes/User.php:333 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Virheellinen tagi: \"%s\"" +msgid "Welcome to %1$s, @%2$s!" +msgstr "Viesti käyttäjälle %1$s, %2$s" + +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profiili" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Vaihda profiiliasetuksesi" + +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Lataa kuva" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Vaihda salasanasi" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Muuta sähköpostin käsittelyasetuksia." + +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Could not create aliases." -msgstr "Ei voitu lisätä suosikiksi." +msgid "Design your profile" +msgstr "Käyttäjän profiili" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Muut" -#: 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 "" +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Muita asetuksia" -#: actions/favorited.php:156 +#: lib/action.php:144 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Uusi päivitys" +msgid "%s - %s" +msgstr "%s - %s" -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Uusi päivitys" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Nimetön sivu" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Ensisijainen sivunavigointi" -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: lib/action.php:430 +msgid "Home" +msgstr "Koti" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Tuo ei ole kelvollinen tunnus." +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Henkilökohtainen profiili ja kavereiden aikajana" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Profiilia ei ole määritelty." +#: lib/action.php:432 +msgid "Account" +msgstr "Käyttäjätili" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Käyttäjä on asettanut eston sinulle." +#: lib/action.php:435 +msgid "Connect" +msgstr "Yhdistä" -#: actions/groupblock.php:100 +#: lib/action.php:435 #, fuzzy -msgid "User is not a member of group." -msgstr "Sinä et kuulu tähän ryhmään." +msgid "Connect to services" +msgstr "Ei voitu uudelleenohjata palvelimelle: %s" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Estä käyttäjä" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Kutsu" -#: actions/groupblock.php:155 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +msgid "Invite friends and colleagues to join you on %s" +msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/action.php:445 +msgid "Logout" +msgstr "Kirjaudu ulos" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Kirjaudu ulos palvelusta" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Ryhmät" +#: lib/action.php:450 +msgid "Create an account" +msgstr "Luo uusi käyttäjätili" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Kirjaudu sisään palveluun" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Ei voitu päivittää käyttäjää." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Ohjeet" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Twitter-asetuksia ei voitu tallentaa!" +#: lib/action.php:456 +msgid "Help me!" +msgstr "Auta minua!" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Synkronointiasetukset tallennettiin." +#: lib/action.php:459 +msgid "Search" +msgstr "Haku" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Hae ihmisiä tai tekstiä" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Ylläpito" +#: lib/action.php:480 +msgid "Site notice" +msgstr "Palvelun ilmoitus" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/action.php:546 +msgid "Local views" +msgstr "Paikalliset näkymät" + +#: lib/action.php:612 +msgid "Page notice" +msgstr "Sivuilmoitus" + +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Toissijainen sivunavigointi" + +#: lib/action.php:721 +msgid "About" +msgstr "Tietoa" + +#: lib/action.php:723 +msgid "FAQ" +msgstr "UKK" + +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/action.php:730 +msgid "Privacy" +msgstr "Yksityisyys" + +#: lib/action.php:732 +msgid "Source" +msgstr "Lähdekoodi" + +#: lib/action.php:734 +msgid "Contact" +msgstr "Ota yhteyttä" + +#: lib/action.php:736 #, fuzzy -msgid "No results." -msgstr "Ei hakutuloksia" +msgid "Badge" +msgstr "Tönäise" -#: actions/groupsearch.php:82 +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "StatusNet-ohjelmiston lisenssi" + +#: lib/action.php:767 #, php-format msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" +"site.broughtbyurl%%). " -#: actions/groupsearch.php:85 +#: lib/action.php:769 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** on mikroblogipalvelu. " -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Sivusto käyttää [StatusNet](http://status.net/) mikroblogausohjelmistoa, " +"versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: actions/groupunblock.php:95 +#: lib/action.php:785 #, fuzzy -msgid "User is not blocked from group." -msgstr "Käyttäjä on asettanut eston sinulle." +msgid "Site content license" +msgstr "StatusNet-ohjelmiston lisenssi" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/action.php:794 +msgid "All " +msgstr "Kaikki " -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/action.php:799 +msgid "license." +msgstr "lisenssi." -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Sivutus" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" +#: lib/action.php:1062 +msgid "After" +msgstr "Myöhemmin" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/action.php:1070 +msgid "Before" +msgstr "Aiemmin" + +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Istuntoavaimesi kanssa oli ongelma." + +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "Message sent" -msgstr "Viesti" +msgid "Provider" +msgstr "Profiili" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Komennon tulos" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Komento suoritettu" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Komento epäonnistui" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Valitettavasti tätä komentoa ei ole vielä toteutettu." -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:88 +#, 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." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Tönäisy lähetetty" + +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Ei voitu tallentaa profiilia." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Käyttäjällä ei ole viimeistä päivitystä" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Päivitys on merkitty suosikiksi." -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "Koko nimi: %s" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Kotipaikka: %s" -#: actions/noticesearch.php:121 +#: lib/command.php:324 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +msgid "Homepage: %s" +msgstr "Kotisivu: %s" -#: actions/noticesearch.php:124 +#: lib/command.php:327 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +msgid "About: %s" +msgstr "Tietoa: %s" -#: actions/openidsettings.php:70 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, fuzzy, 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%%) mahdollistaa kirjautumisen sisään useaan palveluun " -"yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Tapahtui virhe suoran viestin lähetyksessä." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Vastaa tähän päivitykseen" + +#: lib/command.php:441 #, fuzzy -msgid "View profile designs" -msgstr "Profiiliasetukset" +msgid "Error saving notice." +msgstr "Ongelma päivityksen tallentamisessa." -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:502 #, php-format -msgid "Beyond the page limit (%s)" -msgstr "" +msgid "Subscribed to %s" +msgstr "Käyttäjän %s päivitykset tilattu" -#: actions/public.php:179 +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" + +#: lib/command.php:530 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" +msgid "Unsubscribed from %s" +msgstr "Käyttäjän %s päivitysten tilaus lopetettu" -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Komentoa ei ole vielä toteutettu." -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Ilmoitukset pois päältä." + +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Ilmoituksia ei voi pistää pois päältä." + +#: lib/command.php:574 +msgid "Notification on." +msgstr "Ilmoitukset päällä." + +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Ilmoituksia ei voi pistää päälle." -#: actions/public.php:245 actions/public.php:238 +#: lib/command.php:597 #, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" -"blogging)palvelu " +msgid "Could not create login token for %s" +msgstr "Ei voitu luoda OpenID lomaketta: %s" -#: actions/publictagcloud.php:69 +#: lib/command.php:602 #, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/publictagcloud.php:75 -#, php-format +#: lib/command.php:613 msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/recoverpassword.php:152 +#: lib/common.php:191 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +msgid "No configuration file found. " +msgstr "Varmistuskoodia ei ole annettu." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -"Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, " -"jonka olet tallettanut käyttäjätunnuksellesi." -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Sinut on tunnistettu. Syötä uusi salasana alle. " +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: actions/recoverpassword.php:188 +#: lib/common.php:194 #, fuzzy -msgid "Password recover" -msgstr "Salasanan palautuspyyntö lähetetty." +msgid "Go to the installer." +msgstr "Kirjaudu sisään palveluun" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Virhe vahvistuskoodin kanssa." +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "Pikaviestin" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Tilaa tämä käyttäjä" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Päivitykset pikaviestintä käyttäen (IM)" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Päivitykset SMS:llä" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "Tietokantavirhe" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Lataa" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 +#: lib/designsettings.php:109 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." +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Päivityssyöte ryhmälle %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Päivityssyöte ryhmälle %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Päivityssyöte ryhmälle %s" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Vaihda salasanasi" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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. " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:474 actions/showgroup.php:482 +#: lib/designsettings.php:191 #, fuzzy -msgid "Admins" -msgstr "Ylläpito" +msgid "Content" +msgstr "Yhdistä" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." +msgid "Sidebar" +msgstr "Haku" -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Päivitykset joilla on tagi %s" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Teksti" -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Päivityssyöte ryhmälle %s" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Kirjaudu sisään" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:257 +msgid "Save design" 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/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Poista tämä päivitys suosikeista" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Merkitse päivitys suosikkeihin" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s seuraa nyt käyttäjää" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Lisää suosikiksi" -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Päivityksien syöte käyttäjälle %s" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Vie tietoja" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Päivityksien syöte käyttäjälle %s" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "RSS 1.0" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Tämä päivitys on jo suosikki!" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "RSS 2.0" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Tämä päivitys ei ole suosikki!" +#: lib/feed.php:89 +msgid "Atom" +msgstr "Atom" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Julkista päivitysvirtaa ei saatu." +#: lib/feed.php:91 +msgid "FOAF" +msgstr "FOAF" -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Vastaanottajaa ei ole määritelty." +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Suodata tagien perusteella" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Kaikki" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#: lib/galleryaction.php:139 #, fuzzy -msgid "Could not find target user." -msgstr "Ei löytynyt yhtään päivitystä." +msgid "Select tag to filter" +msgstr "Valitse operaattori" -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Vastaukset päivitykseen %2$s" +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Tagi" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Valitse tagi lyhentääksesi listaa" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Mene" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "lisenssi." +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/groupeditform.php:168 #, fuzzy -msgid "Reject this subscription" -msgstr "Käyttäjän %s tilaukset" +msgid "Describe the group or topic" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Profiiliasetukset" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Kuvaus" + +#: lib/groupeditform.php:179 msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" +"Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa" +"\"" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/usergroups.php:153 +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Ryhmä" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Estä" + +#: lib/groupnav.php:101 #, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Sinä et kuulu tähän ryhmään." +msgid "%s blocked users" +msgstr "Estä käyttäjä" -#: actions/usergroups.php:158 +#: lib/groupnav.php:107 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" +msgid "Edit %s group properties" +msgstr "Muokkaa %s ryhmän ominaisuuksia" -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Logo" -#: classes/File.php:137 classes/File.php:147 +#: lib/groupnav.php:113 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +msgid "Add or edit %s logo" +msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " -#: classes/File.php:145 classes/File.php:154 +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Ryhmät, joissa eniten jäseniä" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Ryhmät, joissa eniten päivityksiä" + +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +msgid "Tags in %s group's notices" +msgstr "Tagit ryhmän %s päivityksissä" -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Ongelma päivityksen tallentamisessa." +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä." -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Viesti käyttäjälle %1$s, %2$s" +msgid "That file is too big. The maximum file size is %s." +msgstr "Voit ladata ryhmälle logon." -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Osittain ladattu palvelimelle." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Käyttäjän profiili" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Tuo ei ole kelvollinen kuva tai tiedosto on rikkoutunut." -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Kuvatiedoston formaattia ei ole tuettu." -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Tiedosto hävisi." -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Profiili" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Tunnistamaton tiedoston tyyppi" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Uusi päivitys" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/joinform.php:114 +msgid "Join" +msgstr "Liity" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Eroa" -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Lataa" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "Luo uusi käyttäjätili" -#: lib/designsettings.php:139 -msgid "On" -msgstr "" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." -#: lib/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:139 +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/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " lähteestä " -#: lib/designsettings.php:161 -msgid "Tile background image" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Sähköpostiosoitteen vahvistus" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Vaihda salasanasi" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." -#: lib/designsettings.php:178 -msgid "Background" +#: lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n" +"\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Terveisin,\n" +"%7$s.\n" +"\n" +"----\n" +"Voit vaihtaa sähköpostiosoitetta tai ilmoitusasetuksiasi %8$s\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Yhdistä" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Haku" +#: lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "Kotipaikka: %s\n" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Kirjaudu sisään" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "Kotisivu: %s\n" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" +"Tietoja: %s\n" +"\n" -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"Sinulla on uusi päivityksien lähetysosoite palvelussa %1$s.\n" +"\n" +"Lähetä sähköposti osoitteeseen %2$s tehdäksesi uuden päivityksen.\n" +"\n" +"Lisää sähköpostin käyttöohjeita voit lukea osoitteesta %3$s.\n" +"\n" +"Terveisin,\n" +"%4$s" -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s päivitys" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS vahvistus" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s tönäisi sinua" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Uusi yksityisviesti käyttäjältä %s" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:513 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Estä" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Estä käyttäjä" - -#: lib/groupnav.php:119 +#: lib/mail.php:554 #, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s lisäsi päivityksesi suosikkeihinsa" #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -7070,658 +4281,438 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"\t%3$s\n" "\n" -"\t%2$s\n" +"It reads:\n" +"\n" +"\t%4$s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mailbox.php:139 +#: lib/mediafile.php:147 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." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Ei sisältöä!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Käyttäjä" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Haku" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Kotisivun verkko-osoite ei ole toimiva." +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Julkista päivitysvirtaa ei saatu." -#: lib/webcolor.php:123 +#: lib/mediafile.php:270 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid " Try using another %s format." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Tuota tagia ei ole." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Suorat viestit käyttäjälle %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "kuvaus on liian pitkä (max 140 merkkiä)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Sinä kuulut jo tähän ryhmään " - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Sinä et kuulu tähän ryhmään." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Lähetä suora viesti" -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Käyttäjän %s ryhmät" +#: lib/messageform.php:146 +msgid "To" +msgstr "Vastaanottaja" -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Ryhmät, joiden jäsen %s on" +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Sallitut merkit" -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Ryhmän toiminnot" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Lähetä päivitys" -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Kuva poistettu." +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Mitä teet juuri nyt, %s?" -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Kuvatiedoston formaattia ei ole tuettu." - -#: actions/bookmarklet.php:50 +#: lib/noticelist.php:478 #, fuzzy -msgid "Post to " -msgstr "Kuva" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "kuvaus on liian pitkä (max 140 merkkiä)." +msgid "in context" +msgstr "Ei sisältöä!" -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Vastaa tähän päivitykseen" -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Käyttäjää jota seurataan ei ole olemassa." +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Vastaus" -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Ei valtuutusta." +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Tönäise tätä käyttäjää" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Ei voitu muuttaa request tokeneita access tokeneiksi." +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Tönäise" -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Tuntematon OMB-protokollan versio." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Lähetä tönäisy tälle käyttäjälle" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Päivitystä ei ole." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Virhe tapahtui uuden profiilin lisäämisessä" -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Tiedosto hävisi." +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Virhe tapahtui profiilikuvan lisäämisessä" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Virhe tapahtui uuden etäprofiilin lisäämisessä" -#: actions/imsettings.php:89 +#: lib/oauthstore.php:345 #, fuzzy -msgid "IM is not available." -msgstr "Tämä sivu ei ole saatavilla " +msgid "Duplicate notice" +msgstr "Poista päivitys" -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä " -"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " -"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Ei voitu lisätä uutta tilausta." -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Omat" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Kaikki päivitykset hakuehdolla \"%s\"" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Vastaukset" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Yhdistä" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Suosikit" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Käyttäjä" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Saapuneet" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Sinulle saapuneet viestit" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Kuvaile itseäsi ja" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Lähetetyt" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Lähettämäsi viestit" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Tagit käyttäjän %s päivityksissä" -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" -"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " -"löytynyt)." +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Tilaukset" -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "" -"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Kaikki tilaukset" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Ei saatu request tokenia." +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Tilaajat" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Päivityksien syöte käyttäjälle %s" +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Kaikki tilaajat" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Päivityksien syöte käyttäjälle %s" +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Käyttäjä" -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Päivityksien syöte käyttäjälle %s" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Käyttäjänä alkaen" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Viesti käyttäjälle %1$s, %2$s" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Kaikki ryhmät" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Julkinen" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Käyttäjäryhmät" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Käyttäjän %s kavereiden syöte (Atom)" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Viimeaikaiset tagit" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Esittelyssä" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Käyttäjän %s lähetetyt viestit" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Suosituimmat" -#: actions/shownotice.php:90 +#: lib/searchaction.php:120 #, fuzzy -msgid "Notice deleted." -msgstr "Päivitys lähetetty" +msgid "Search site" +msgstr "Haku" -#: actions/smssettings.php:91 +#: lib/searchaction.php:162 #, fuzzy -msgid "SMS is not available." -msgstr "Tämä sivu ei ole saatavilla " +msgid "Search help" +msgstr "Haku" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Päivityksien syöte käyttäjälle %s" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Henkilö" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Hae ihmisiä tältä sivustolta" -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " -"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " -"paina \"Peruuta\"." +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Päivitys" -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " -"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " -"Tilauskoodisi on:" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Hae päivityksien sisällöstä" -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " -"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Etsi ryhmiä tästä palvelusta" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Nimetön osa" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#: lib/section.php:106 +msgid "More..." +msgstr "Lisää..." -#: actions/userauthorization.php:307 +#: lib/subgroupnav.php:83 #, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +msgid "People %s subscribes to" +msgstr "Ihmiset joiden tilaaja %s on" -#: actions/userauthorization.php:322 +#: lib/subgroupnav.php:91 #, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +msgid "People subscribed to %s" +msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" -#: actions/userauthorization.php:338 +#: lib/subgroupnav.php:99 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Groups %s is a member of" +msgstr "Ryhmät, joiden jäsen %s on" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Kuvan URL-osoitetta '%s' ei voi avata." +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(tyhjä)" -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Kuvan '%s' tyyppi on väärä" +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Ei voitu uudelleenohjata palvelimelle: %s" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "Käyttäjä on asettanut eston sinulle." -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "StatusNet-ohjelmiston lisenssi" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Ei voitu tilata." -#: lib/command.php:88 -#, 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." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Toista ei voitu asettaa tilaamaan sinua." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Ei ole tilattu!." -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Tönäisy lähetetty" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Ei voitu poistaa tilausta." -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Ei mitään" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Eniten päivityksiä" -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Peruuta tämän käyttäjän tilaus" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Vastaa tähän päivitykseen" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Peruuta tilaus" -#: lib/command.php:441 +#: lib/userprofile.php:116 #, fuzzy -msgid "Error saving notice." -msgstr "Ongelma päivityksen tallentamisessa." +msgid "Edit Avatar" +msgstr "Kuva" -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Varmistuskoodia ei ole annettu." +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Käyttäjän toiminnot" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profiiliasetukset" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Kirjaudu sisään palveluun" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Lähetä suora viesti tälle käyttäjälle" -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Valitse operaattori" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Viesti" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "muutama sekunti sitten" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "noin minuutti sitten" -#: lib/jabber.php:192 +#: lib/util.php:848 #, php-format -msgid "notice id: %s" -msgstr "Uusi päivitys" +msgid "about %d minutes ago" +msgstr "noin %d minuuttia sitten" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s lisäsi päivityksesi suosikkeihinsa" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "noin tunti sitten" -#: lib/mail.php:556 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "about %d hours ago" +msgstr "noin %d tuntia sitten" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "noin päivä sitten" -#: lib/mail.php:613 +#: lib/util.php:856 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " lähteestä " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +msgid "about %d days ago" +msgstr "noin %d päivää sitten" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Julkista päivitysvirtaa ei saatu." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "noin kuukausi sitten" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Poista päivitys" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "noin %d kuukautta sitten" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Päivityksen sisältö ei kelpaa" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "noin vuosi sitten" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Ei voitu luoda OpenID lomaketta: %s" +msgid "%s is not a valid color!" +msgstr "Kotisivun verkko-osoite ei ole toimiva." -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Voit ladata ryhmälle logon." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Ei voitu lukea viestiä." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Tuo ei ole rekisteröitynyt käyttäjä." + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Valitettavasti tuo ei ole oikea osoite sähköpostipäivityksille." + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Valitettavasti päivitysten teko sähköpostilla ei ole sallittua." diff --git a/locale/fr/LC_MESSAGES/statusnet.mo b/locale/fr/LC_MESSAGES/statusnet.mo index 4ae3f35bb..ca1b457b1 100644 Binary files a/locale/fr/LC_MESSAGES/statusnet.mo and b/locale/fr/LC_MESSAGES/statusnet.mo differ diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 2d6d29d9b..a31cc3e03 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -7,3136 +7,2013 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:28+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:10+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Flux de recherche pour « %s »" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Aucun marquage trouvé." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " -"adresse de messagerie instantanée, numéro de téléphone. " +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Utilisateur non trouvé." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "de" +#: actions/all.php:84 +#, php-format +msgid "%s and friends, page %d" +msgstr "%s et ses amis - page %d" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Réponses à %2$s" +msgid "%s and friends" +msgstr "%s et ses amis" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:99 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s vous invite à vous inscrire sur %2$s" +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Flux pour les amis de %s (RSS 1.0)" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 +#: actions/all.php:107 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s vous invite à vous inscrire sur %2$s (%3$s).\n" -"\n" -"%2$s est un service de micro-blogging qui vous permet de rester en contact " -"avec des personnes que vous connaissez et des personnes qui vous " -"intéressent.\n" -"\n" -"Vous pouvez aussi partager des informations sur vous, vos idées, ou votre " -"vie en ligne avec les personnes qui vous connaissent. C'est également un " -"outil utile pour rencontrer de nouvelles personnes qui partagent vos " -"intérêts.\n" -"\n" -"%1$s dit:\n" -"\n" -"%4$s\n" -"\n" -"Vous pouvez voir le profil de %1$s sur %2$s ici:\n" -"\n" -"%5$s\n" -"\n" -"Si vous souhaitez essayez ce service, cliquez sur le lien ci-dessous pour " -"accepter l'invitation\n" -"\n" -"%6$s\n" -"\n" -"Sinon, vous pouvez ignorer ce message. Merci pour votre patience et votre " -"temps.\n" -"\n" -"Cordialement, %2$s\n" +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Flux pour les amis de %s (RSS 2.0)" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 +#: actions/all.php:115 #, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s suit maintenant vos statuts dans %2$s." +msgid "Feed for friends of %s (Atom)" +msgstr "Flux pour les amis de %s (Atom)" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s suit maintenant vos statuts dans %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordialement,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s statuts en réponses aux statuts de %2$s / %3$s." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "Statut de %1$s sur %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "Flux public de %s" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s et ses amis" +#: actions/all.php:165 +msgid "You and friends" +msgstr "Vous et vos amis" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "Activité publique %s" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Statuts de %1$s et ses amis dans %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "Statut de %s" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Méthode API non trouvée !" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Activité de %s" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Ce processus requiert un POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "%s statuts " - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Vous recevrez bientôt un courriel contenant les instructions pour confirmer " -"votre adresse.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** est un service de microblogging qui vous est proposé par " -"[%%site.broughtby%%](%%site.broughtbyurl%%)." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Aucun profil ne correspond à cet utilisateur." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** est un service de micro-blogging." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Le blocage de l'utilisateur a échoué." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -"Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Le déblocage de l'utilisateur a échoué." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Message sans texte !" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 caractères ou plus" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Destinataire non trouvé." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 caractères ou plus, et ne l'oubliez pas !" +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 caractères ou plus. Requis." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Messages envoyés à %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Un code de confirmation a été envoyé à votre adresse de messagerie " -"instantanée. Vous devez approuver %s pour recevoir des messages." +msgid "All the direct messages sent from %s" +msgstr "Tous les messages envoyés par %s" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Un code de confirmation a été envoyé à l'adresse courriel indiquée. Vérifiez " -"votre boîte de réception pour récupérer le code et les instructions." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Messages envoyés à %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " -"Vérifiez votre boîte de réception pour récupérer le code et les instructions." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Tous les messages envoyés à %s" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Méthode API non trouvée !" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Aucun statut trouvé avec cet identifiant. " -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Méthode API en construction." +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "Ce statut a déjà été ajouté à vos favoris !" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "À propos" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Impossible de créer le favori." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Accepter" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "Ce statut n'est pas un favori !" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Ajouter" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Impossible de supprimer le favori." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Ajouter un identifiant OpenID" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Ajouter ou supprimer des identifiants OpenIDs" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Impossible de suivre l'utilisateur : %s est déjà dans votre liste." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Adresses d'amis à inviter (un par ligne)" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Tous les abonnements" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Tous les statuts de %s" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Vous devez fournir 2 identifiants ou pseudos." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Statuts correspondant au(x) terme(s) \"%s\"" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Impossible de récupérer le flux public." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Déjà connecté." +#: actions/apifriendshipsshow.php:143 +msgid "Could not find target user." +msgstr "Impossible de trouver l'utilisateur cible." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Déjà abonné !" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Impossible de créer le groupe." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Êtes-vous sûr(e) de vouloir supprimer ce statut ?" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Impossible de créer le favori." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autoriser l'abonnement" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Impossible d'établir l'inscription au groupe." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -"Ouvrir automatiquement ma session à l'avenir (déconseillé pour les " -"ordinateurs publics ou partagés)" +"Les pseudos ne peuvent contenir que des caractères minuscules et des " +"chiffres, sans espaces." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour " -"les utilisateurs non-humains)" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Pseudo déjà utilisé. Essayez-en un autre." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Pseudo invalide." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Avatar mis à jour." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "L'adresse du site personnel n'est pas un URL valide. " + +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Nom complet trop long (maximum de 255 caractères)." + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "la description est trop longue (140 caractères maximum)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Emplacement trop long (maximum de 255 caractères)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Too many aliases! Maximum %d." msgstr "" -"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " -"Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à " -"votre liste de contacts ?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Marquage invalide : \"%s\"" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Pseudo déjà utilisé. Essayez-en un autre." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " -"Jabber/GTalk pour recevoir de nouvelles instructions." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Numéro de téléphone en attente de confirmation." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Vous êtes déjà membre de ce groupe " -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Avant »" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Bio" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "La bio est trop longue (140 caractères maximum)." +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Vous n'êtes pas membre de ce groupe." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Impossible de supprimer ce statut." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Impossible de retirer l'utilisateur %s du groupe %s" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Impossible de lire l'URL '%s'" +msgid "%s groups" +msgstr "Groupes de %s" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Impossible de sauvegarder le nouveau mot de passe." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Actions du groupe" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Annuler" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Groupes de %s" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Impossible d'instancier l'objet client pour OpenID." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Groupes de %s" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Impossible d'utiliser cet identifiant Jabber" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Ce processus requiert un POST ou un DELETE." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Impossible d'utiliser cette adresse courriel" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Vous ne pouvez pas supprimer le statut d'un autre utilisateur." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Modifier" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar supprimé." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Modifier le traitement des courriels" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Aucun statut trouvé avec cet identifiant." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Modifier le mot de passe" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Modifier votre mot de passe" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Non trouvé" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Modifier vos paramètres de profil" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Confirmer" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Format de fichier d'image non supporté." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Confirmer l'adresse" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favoris de %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Confirmation annulée." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s statuts ont été ajoutés aux favoris de %s / %s." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Code de confirmation" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "Activité de %s" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Code de confirmation non trouvé." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Réponses à %2$s" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez " -"maintenant :\n" -"\n" -"* Visiter [votre profil](%s) et publier votre premier statut.\n" -"* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin " -"d'envoyer et recevoir vos statuts par messagerie instantanée.\n" -"* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez " -"connaître ou qui partagent vos intêrets.\n" -"* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire " -"plus à votre sujet.\n" -"* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir " -"plus sur le fonctionnement du service.\n" -"\n" -"Merci pour votre inscription ! Nous vous souhaitons d'apprécier notre " -"service." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Connecter" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Connecter à un compte existant" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Contact" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s statuts en réponses aux statuts de %2$s / %3$s." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Impossible de créer le formulaire OpenID : %s" +msgid "%s public timeline" +msgstr "Activité publique %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Impossible de suivre l'utilisateur : %s est déjà dans votre liste." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." +msgid "%s updates from everyone!" +msgstr "%s statuts " -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Impossible de rediriger vers le serveur : %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Impossible de sauvegarder les informations de l'avatar" +msgid "Notices tagged with %s" +msgstr "Statuts marqués avec %s" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Impossible de sauvegarder les informations du nouveau profil" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Impossible d'abonner une autre personne à votre profil." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non trouvé." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Impossible de s'abonner." +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "Pièce jointe non trouvée." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" -"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Aucun pseudo." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Impossible de convertir les jetons de requête en jetons d'accès" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Aucune taille" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Impossible de supprimer le courriel de confirmation." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Taille incorrecte." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Impossible de cesser l'abonnement" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Aucun statut n'a été trouvé." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Impossible d'obtenir le jeton de requête." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Utilisateur sans profil correspondant" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Impossible d'insérer le code de confirmation." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Paramètres de l'avatar" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Impossible d'insérer un nouvel abonnement." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Image originale" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Impossible d'enregistrer le profil." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Aperçu" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Impossible de mettre à jour l'auto-abonnement." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Supprimer" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Impossible de mettre à jour le dossier de l'utilisateur." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Transfert" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Impossible de mettre à jour l'utilisateur." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Recadrer" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Créer" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Créer un nouvel utilisateur avec ce pseudo." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Soumission de formulaire inattendue." -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Créer un nouveau compte" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Création d'un nouveau compte pour un OpenID qui a déjà un utilisateur." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Données perdues." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Adresse Jabber/GTalk actuellement confirmée." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Avatar mis à jour." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Numéro de téléphone actuellement confirmé pour recevoir les SMS." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "La mise à jour de l'avatar a échoué." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Adresse courriel actuellement confirmée." +#: actions/avatarsettings.php:387 +msgid "Avatar deleted." +msgstr "Avatar supprimé." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Actuellement" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Aucun pseudo" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Erreur de base de donnée en insérant le hashtag : %s" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Aucun groupe trouvé" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Erreur de base de donnée en insérant la réponse :%s" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Profil de l'utilisateur" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Supprimer ce statut" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s et ses amis - page %d" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Décrivez vos intérêts en 140 caractères" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Liste des utilisateurs inscrits à ce groupe." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Courriel" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Le déblocage de l'utilisateur a échoué." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Adresse courriel" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Débloquer" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Paramètres du courriel" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Débloquer cet utilisateur" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Cette adresse courriel est déjà utilisée." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Non connecté." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Confirmation de l'adresse courriel" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Aucun profil n'a été spécifié." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Adresse courriel (ex : nom@mondomaine.com)" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Aucun profil ne correspond à cet identifiant." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Adresses courriel" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Bloquer cet utilisateur" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Entrez un pseudo ou une adresse courriel." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Êtes-vous certain de vouloir bloquer cet utilisateur ? Après cela, il ne " +"sera plus abonné à votre compte, ne pourra plus s’y abonner de nouveau, et " +"vous ne serez pas informé des @-réponses de sa part." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Entrez le code que vous avez reçu sur votre téléphone." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Non" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Erreur d'autorisation du jeton" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Liste des utilisateurs inscrits à ce groupe." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Erreur lors de la connexion de l'utilisateur sur OpenID" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Oui" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Erreur lors de la connexion de l'utilisateur." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Liste des utilisateurs inscrits à ce groupe." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Erreur lors de l'insertion de l'avatar" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Vous avez déjà bloqué cet utilisateur." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Erreur lors de l'insertion du nouveau profil" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Impossible d'enregistrer les informations de blocage." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Erreur lors de l'insertion du profil distant" +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Photo" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Erreur lors de l'enregistrement de la confirmation du courriel." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Erreur lors de l'enregistrement du profil distant" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Erreur lors de l'enregistrement du profil." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Erreur lors de l'enregistrement de l'utilisateur." - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Erreur lors de l'enregistrement de l'utilisateur ; invalide." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Aucun code de confirmation." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Erreur lors de la configuration de l'utilisateur." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Code de confirmation non trouvé." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Erreur lors de la mise à jour du profil" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Ce code de confirmation n'est pas pour vous !" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Erreur lors de la mise à jour du profil distant" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Type d'adresse non reconnu : %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Erreur dans le code de confirmation." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Cette adresse a déjà été confirmée." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Ce pseudo est déjà utilisé" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Impossible de mettre à jour l'utilisateur." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "FAQ" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Impossible de supprimer le courriel de confirmation." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "La mise à jour de l'avatar a échoué." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Confirmer l'adresse" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Flux des amis de %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "L'adresse \"%s\" a été validée pour votre compte." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Flux des réponses à %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Code de confirmation" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Flux du marquage %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Statuts" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Chercher dans le contenu des statuts" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Statut non trouvé. " -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Chercher des personnes sur ce site" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Impossible de supprimer ce statut." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " -"votre mot de passe afin d'enregistrer vos préférences." +"Ce message va être définitivement supprimé. Il sera impossible de le " +"récupérer." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Nom complet" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Supprimer ce statut" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Nom complet trop long (maximum de 255 caractères)." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Êtes-vous sûr(e) de vouloir supprimer ce statut ?" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Aide" +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "Ne pas supprimer cet avis" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Accueil" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Supprimer ce statut" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Site personnel" +#: actions/deletenotice.php:157 +#, fuzzy +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." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "L'adresse du site personnel n'est pas un URL valide. " +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Ce statut n'est pas un favori !" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Je veux envoyer mes statuts par courriel." +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Ajouter aux favoris" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Document non trouvé. " -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Adresse de messagerie instantanée" +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Modifier le groupe %s" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Paramètres de messagerie instantanée" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Vous devez ouvrir une session pour créer un groupe." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Si vous avez déjà un compte, ouvrez une session avec votre identifiant et " -"votre mot de passe pour les relier à votre OpenID." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Seuls les administrateurs d'un groupe peuvent le modifier." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et " -"cliquez sur « Ajouter »." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Remplissez ce formulaire pour modifier les options du groupe." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " -"nouveau à l'adresse courriel indiquée dans votre compte. " +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "la description est trop longue (140 caractères maximum)." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Courriel entrant" +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Impossible de mettre à jour le groupe." -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "L'adresse de courriel entrant a été supprimée." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Vos options ont été enregistrées." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Ancien mot de passe incorrect" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Paramètres du courriel" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Identifiant ou mot de passe incorrect." +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Configurez les courriels que vous souhaitez recevoir de %%site.name%%." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adresse" + +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Adresse courriel actuellement confirmée." + +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Retirer " + +#: actions/emailsettings.php:113 msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Les instructions pour récupérer votre mot de passe ont été envoyées à " -"l'adresse courriel indiquée dans votre compte." +"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " +"Jabber/GTalk pour recevoir de nouvelles instructions." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "URL de l'avatar invalide : '%s'" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Annuler" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Adresse courriel invalide : %s" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Adresse courriel" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Site personnel invalide '%s'" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Adresse courriel (ex : nom@example.org)" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "URL de la licence invalide '%s'" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Ajouter" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Contenu invalide" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Courriel entrant" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "URI du statut invalide" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Écrivez à cette adresse courriel pour publier de nouveaux statuts. " -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "URL du statut invalide" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Nouvelle adresse courriel pour poster ; annule l'ancienne." -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "URL du profil invalide '%s'." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Nouveau" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "URL du profil invalide (mauvais format)" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Préférences" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "URL du profil invalide, retourné par le serveur." +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Avertissez-moi par courriel des nouveaux abonnements." -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Taille incorrecte." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" +"Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses " +"favoris." -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Identifiant ou mot de passe incorrect." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Invitation(s) envoyée(s)" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Invitation(s) envoyée(s) aux personnes suivantes :" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Autoriser mes amis à m'envoyer des courriels et des clins d'oeil." -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Inviter" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Inviter de nouveaux utilisateurs" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Je veux envoyer mes statuts par courriel." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " -"version %s, disponible sous la licence [GNU Affero General Public License] " -"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publier un MicroID pour mon adresse courriel." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Enregistrer" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s " -"à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans " -"GTalk." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Préférences enregistrées" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Langue" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Aucune adresse courriel." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "La langue est trop longue (255 caractères maximum)." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Impossible d'utiliser cette adresse courriel" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Emplacement" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Adresse courriel invalide" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Emplacement trop long (maximum de 255 caractères)." +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Vous utilisez déjà cette adresse courriel." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Ouvrir une session" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Cette adresse courriel appartient déjà à un autre utilisateur." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Ouvrir une session avec un compte [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Impossible d'insérer le code de confirmation." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format +#: actions/emailsettings.php:358 msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +"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 "" -"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " -"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" -"action.openidlogin%%)." - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Fermeture de session" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Nom plus long, votre \"vrai\" nom de préférence" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Mot de passe perdu ?" +"Un code de confirmation a été envoyé à l'adresse courriel indiquée. Vérifiez " +"votre boîte de réception pour récupérer le code et les instructions." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Nouvelle adresse courriel pour poster ; annule l'ancienne." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Aucune confirmation à annuler." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Configurez les courriels que vous souhaitez recevoir de %%site.name%%." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Cette adresse de messagerie instantanée est erronée." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Membre depuis" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Confirmation annulée." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Micro-blogging par %s" +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Ceci n'est pas votre adresse courriel." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur " -"qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, " -"écrivez-nous à %s." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "L'adresse a été supprimée." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Mes textes et mes fichiers sont disponibles sous" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Aucune adresse pour le courriel entrant." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Nouveau" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Impossible de mettre à jour le dossier de l'utilisateur." -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Nouvelle adresse courriel pour poster dans %s" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "L'adresse de courriel entrant a été supprimée." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nouvelle adresse courriel ajoutée." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nouveau pseudo" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Statuts populaires" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nouveau statut" +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Statuts populaires - page %d" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nouveau mot de passe" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Statuts les plus populaires sur le site en ce moment." -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -"Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Pseudo" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Pseudo déjà utilisé. Essayez-en un autre." +#: 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/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -"Les pseudos ne peuvent contenir que des caractères minuscules et des " -"chiffres, sans espaces." -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Pseudo non autorisé." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Statuts favoris de %s" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Pseudo de l'utilisateur que vous voulez suivre" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Pseudo ou courriel" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Ce statut a déjà été ajouté à vos favoris !" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Non" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Retirer ce favori" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Aucun identifiant Jabber" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Utilisateurs en vedette" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Pas de requête d'autorisation !" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Utilisateurs en vedette - page %d" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Aucun fournisseur sélectionné." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Les utilisateurs à ne pas manquer dans %s" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Aucun code entré" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nouveau statut" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Aucun code de confirmation." +#: actions/file.php:38 +msgid "No notice" +msgstr "Aucun avis" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Aucun contenu !" +#: actions/file.php:42 +msgid "No attachments" +msgstr "Aucune pièce jointe" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Aucune adresse courriel." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Aucun identifiant." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Réponse inattendue !" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Aucune adresse pour le courriel entrant." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'utilisateur suivi n'existe pas." -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Aucun pseudo proposé par le serveur distant." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Vous pouvez utiliser l'abonnement local." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Aucun pseudo." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Cet utilisateur vous a empêché de vous inscrire." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Aucune confirmation à annuler." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non autorisé." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Aucun numéro de téléphone." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Impossible de convertir les jetons de requête en jetons d'accès" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Aucun URL de profil renvoyé par le serveur." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Version inconnue du protocole OMB" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Aucune adresse courriel enregistrée pour cet utilisateur." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Erreur lors de la mise à jour du profil distant" -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Aucune requête trouvée !" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Aucun groupe trouvé." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Aucun résultat " +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Statut non trouvé. " -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Aucune taille" +#: actions/getfile.php:79 +msgid "Cannot read file." +msgstr "Impossible de lire le fichier" -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Aucun statut trouvé avec cet identifiant. " +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "Aucun groupe n'a été spécifié." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Aucun statut trouvé avec cet identifiant." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "OpenID non trouvé." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Cet utilisateur vous a bloqué." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Document non trouvé. " +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "L'utilisateur n'est pas membre du groupe." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Statut non trouvé. " +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "Bloquer cet utilisateur du groupe" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Code de récupération non trouvé. " +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Abonnement non trouvé " - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Utilisateur non trouvé." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Aucun utilisateur trouvé avec ce courriel ou ce nom." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Aucun identifiant" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Il n'y a personne à montrer !" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "Vous devez ouvrir une session pour modifier un groupe." -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Ceci n'est pas un code de récupération." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Groupes" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Ceci n'est pas un utilisateur inscrit." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Format de données non supporté." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Impossible de mettre à jour l'utilisateur." -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Identifiant Jabber invalide." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "L'enregistrement de votre configuration Twitter a échoué !" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "OpenID invalide." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Préférences de synchronisation enregistrées." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Adresse courriel invalide" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Logo du groupe" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Adresse courriel invalide." +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Choisissez un logo pour votre groupe." -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Pseudo invalide." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "URL de profil invalide (services incorrects)." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Logo mis à jour." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "URL de profil invalide (aucun XRDS défini)." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "La mise à jour du logo a échoué." -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "URL de profil invalide (aucun document YADIS)." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "Membres du groupe %s" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Ceci n'est pas une image, ou c'est un fichier corrompu." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "Membres du groupe %s - page %d" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Non autorisé." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Liste des utilisateurs inscrits à ce groupe." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Réponse inattendue !" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Administrer" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Non trouvé" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Bloquer" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Non connecté." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Bloquer cet utilisateur " -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Pas abonné !" +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "Faire de cet utilisateur un administrateur du groupe" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Recherche de statut" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Administrer" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Flux des statuts de %s" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Le statut n'a pas de profil" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Statuts" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " +"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " +"doivent contenir au moins 3 caractères." -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Statuts marqués avec %s" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Rechercher des groupes" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Ancien mot de passe" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "Aucun résultat." -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Configuration du compte OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Soumission automatique OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Connexion OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "URL OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Authentification OpenID annulée." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "L'authentification OpenID a échoué : %s'" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Erreur OpenID : %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID retiré." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Paramètres OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Ajouter un message personnel à l'invitation (optionnel)." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Transfert partiel." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Mot de passe" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Groupes" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Le mot de passe et sa confirmation ne correspondent pas." +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Groupes - page %d" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Le mot de passe doit contenir au moins 6 caractères." +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Récupération de mot de passe demandée" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Créer un nouveau groupe" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Mot de passe enregistré." +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Les mots de passe ne correspondent pas." +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Cet utilisateur vous a bloqué." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Personnes" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Erreur lors de l'annulation du blocage." -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Recherche de personnes" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Paramètres de messagerie instantanée" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Recherche de personnes" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]" +"(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" +"dessous." -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Personnel" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Cette page n'est pas disponible dans " -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Message personnel" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Adresse Jabber/GTalk actuellement confirmée." -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" +"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " +"Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à " +"votre liste de contacts ?)" + +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Adresse de messagerie instantanée" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " -"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " -"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +"Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s " +"à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans " +"GTalk." + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Envoyez-moi les statuts par Jabber/GTalk." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Préférences" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Préférences enregistrées" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Langue préférée" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Confidentialité" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Problème lors de l'enregistrement du statut." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profil" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL du profil" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Paramètres du profil" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Profil inconnu" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Fil du flux public" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Flux public" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne " +"suis pas abonné." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 +#: actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publier un MicroID pour mon adresse Jabber/GTalk." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publier un MicroID pour mon adresse courriel." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Aucun identifiant Jabber" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Marquages récents" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Impossible d'utiliser cet identifiant Jabber" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Récupérer" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Identifiant Jabber invalide." -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Récupérer le mot de passe" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Vous utilisez déjà cet idenfiant Jabber." -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Code de récupération d'un utilisateur inconnu." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur." -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Créer un compte" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Un code de confirmation a été envoyé à votre adresse de messagerie " +"instantanée. Vous devez approuver %s pour recevoir des messages." -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Création de compte non autorisée." +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Ceci n'est pas votre identifiant Jabber." -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Compte créé avec succès" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Boîte de réception de %s - page %d" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Refuser" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Boîte de réception de %s" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Se souvenir de moi" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Cette boîte de réception regroupe les messages personnels qui vous sont " +"envoyés." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Profil distant sans profil correspondant" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Abonnement à distance " +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" +"Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Retirer " +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Adresse courriel invalide : %s" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Retirer l'OpenID" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Invitation(s) envoyée(s)" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! " -"Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Inviter de nouveaux utilisateurs" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Réponses" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Vous êtes déjà abonné à ces utilisateurs :" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Replies to %s" -msgstr "Réponses à %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Réinitialiser" +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Réinitialiser le mot de passe" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "Vous avez été automatiquement abonné aux utilisateurs suivants :" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Invitation(s) envoyée(s) aux personnes suivantes :" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Numéro SMS" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Un avertissement vous sera envoyé quand vos invités auront accepté votre " +"invitation et se seront inscrits sur le site. Merci de faire grandir notre " +"communauté !" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Paramètres SMS" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce " +"service." -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Confirmation SMS" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Adresses courriel" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Identique au mot de passe ci-dessus" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Adresses d'amis à inviter (un par ligne)" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Identique au mot de passe ci-dessus. Requis." +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Message personnel" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Enregistrer" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Ajouter un message personnel à l'invitation (optionnel)." -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Rechercher" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Envoyer" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Rechercher dans le flux de recherche" +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s vous invite à vous inscrire sur %2$s" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:228 #, php-format msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de " -"recherche par des espaces. Ils doivent contenir au moins 3 caractères." +"%1$s vous invite à vous inscrire sur %2$s (%3$s).\n" +"\n" +"%2$s est un service de micro-blogging qui vous permet de rester en contact " +"avec des personnes que vous connaissez et des personnes qui vous " +"intéressent.\n" +"\n" +"Vous pouvez aussi partager des informations sur vous, vos idées, ou votre " +"vie en ligne avec les personnes qui vous connaissent. C'est également un " +"outil utile pour rencontrer de nouvelles personnes qui partagent vos " +"intérêts.\n" +"\n" +"%1$s dit:\n" +"\n" +"%4$s\n" +"\n" +"Vous pouvez voir le profil de %1$s sur %2$s ici:\n" +"\n" +"%5$s\n" +"\n" +"Si vous souhaitez essayez ce service, cliquez sur le lien ci-dessous pour " +"accepter l'invitation\n" +"\n" +"%6$s\n" +"\n" +"Sinon, vous pouvez ignorer ce message. Merci pour votre patience et votre " +"temps.\n" +"\n" +"Cordialement, %2$s\n" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " -"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " -"doivent contenir au moins 3 caractères." +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Vous devez ouvrir une session pour rejoindre un groupe." -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Sélectionnez un fournisseur de téléphone mobile" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Vous êtes déjà membre de ce groupe " -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Envoyer" +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Écrivez à cette adresse courriel pour publier de nouveaux statuts. " +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s a rejoint le groupe %s" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Avertissez-moi par courriel des nouveaux abonnements." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Vous devez ouvrir une session pour quitter un groupe." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Envoyez-moi les statuts par Jabber/GTalk." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "Vous n'êtes pas membre de ce groupe." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma " -"facture de téléphonie mobile." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Aucun enregistrement à ce groupe n'a été trouvé." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne " -"suis pas abonné." +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "Impossible de retirer l'utilisateur %s du groupe %s" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Préférences" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s a quitté le groupe %s" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Préférences enregistrées." +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Déjà connecté." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Marquages les plus populaires des 7 derniers jours" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Contenu invalide" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Quelqu'un utilise déjà cet OpenID." +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Identifiant ou mot de passe incorrect." -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Quelque chose de bizarre est arrivé." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Erreur lors de la configuration de l'utilisateur." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Désolé, la réception de courriels n'est pas permise. " +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Ouvrir une session" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Désolé, ceci n'est pas votre adresse de courriel entrant." +#: actions/login.php:243 +msgid "Login to site" +msgstr "Ouverture de session" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Source" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Pseudo" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistiques" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Mot de passe" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "OpenID non trouvé." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "S'abonner" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Se souvenir de moi" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Abonnés" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Ouvrir automatiquement ma session à l'avenir (déconseillé pour les " +"ordinateurs publics ou partagés)" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Abonnement autorisé" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Mot de passe perdu ?" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Abonnement refusé" +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " +"votre mot de passe afin d'enregistrer vos préférences." -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Abonnements" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " +"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" +"action.openidlogin%%)." -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Erreur système lors du transfert du fichier." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Marquages" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Texte" +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Recherche de texte" +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Cet OpenID ne vous appartient pas." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Aucun statut " -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Cette adresse a déjà été confirmée." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Nouveau groupe" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Ce code de confirmation n'est pas pour vous !" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Cette adresse courriel appartient déjà à un autre utilisateur." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nouveau message" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Ce fichier est trop gros." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Vous utilisez déjà cet idenfiant Jabber." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Aucun contenu !" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Vous utilisez déjà cette adresse courriel." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Aucun destinataire n'a été spécifié." -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Vous utilisez déjà ce numéro de téléphone." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't 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/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Ceci n'est pas votre identifiant Jabber." +#: actions/newmessage.php:181 +msgid "Message sent" +msgstr "Message envoyé" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Ceci n'est pas votre adresse courriel." +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Votre message a été envoyé à %s" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Ceci n'est pas votre numéro de téléphone." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Erreur Ajax" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Cette adresse de messagerie instantanée est erronée." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Ce code de confirmation est incorrect." - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Ce numéro de téléphone est déjà utilisé." - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nouveau statut" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "C'est trop long ! Vous n'avez droit qu'à 255 caractères." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Statut publié" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/noticesearch.php:68 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "L'adresse \"%s\" a été validée pour votre compte." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "L'adresse a été supprimée." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " -"Vérifiez les instructions du site pour savoir comment compléter " -"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " -"les instructions du site pour savoir comment refuser pleinement " -"l'abonnement. " +"Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de " +"recherche par des espaces. Ils doivent contenir au moins 3 caractères." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Ces personnes suivent les statuts de %s." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Recherche de texte" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Ces personnes suivent vos statuts. " +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Flux de recherche pour « %s »" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Les statuts de ces personnes sont suivis par %s." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Vous suivez les statuts de ces personnes. " - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "Vous avez été automatiquement abonné aux utilisateurs suivants :" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Ce code de validation est périmé. Veuillez recommencer. " - -#: ../lib/openid.php:195 lib/openid.php:206 msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le " -"cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur " -"OpenID." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearch.php:124 #, 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 "" -"C'est votre première ouverture de session dans %s, et nous devons relier " -"votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, " -"soit relier votre OpenID à un compte existant." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Ce processus requiert un POST ou un DELETE." - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Ce processus requiert un POST." - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Cette page n'est pas disponible dans un des formats que vous avez autorisés." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Fuseau horaire" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Statuts de %1$s dans %2$s!" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Aucun fuseau horaire n'a été choisi." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Statuts correspondant au(x) terme(s) \"%s\"" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format +#: actions/nudge.php:85 msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou " -"[créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte " -"sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL " -"de votre profil ci-dessous." +"Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son " +"adresse courriel." -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Vous devez fournir 2 identifiants ou pseudos." +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Clin d'œil envoyé" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Adresse de votre site Web, blogue, ou profil dans un autre site" +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Clin d'œil envoyé !" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL de votre profil sur un autre service de micro-blogging compatible" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Le statut n'a pas de profil" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Soumission de formulaire inattendue." +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Statut de %1$s sur %2$s" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Réinitialisation inattendue du mot de passe." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Contenu" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Action inconnue" +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Version inconnue du protocole OMB" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Format de données non supporté." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Sauf précision contraire, les contenus de ce site sont la propriété de leurs " -"auteurs et sont disponibles sous" +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Recherche de personnes" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Type d'adresse non reconnu : %s" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Recherche de statut" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Désabonnement" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Autres paramètres" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Version de OMB non supportée" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Autres options à configurer" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Format de fichier d'image non supporté." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Suivi des statuts par SMS" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Sélectionnez un service de réduction d'URL." -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Suivi des statuts par messagerie instantanée" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Paramètres du profil" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Statuts de %1$s et ses amis dans %2$s!" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Statuts de %1$s dans %2$s!" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Le service de réduction d'URL est trop long (50 caractères maximum)." -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Transfert" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "Boîte d'envoi de %s - page %d" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez " -"modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou " -"moins carrée. Elle doit aussi être compatible avec la licence d'utilisation " -"du site ; utilisez de préférence une image qui vous appartient et que vous " -"voulez partager." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Ajouter une nouvelle image pour le profil" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce " -"service." +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Boîte d'envoi de %s" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Utilisé uniquement pour les mises à jour de statut, les avertissements, et " -"la récupération de mot de passe" +"Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "L'utilisateur suivi n'existe pas." +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Modifier le mot de passe" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Aucun profil ne correspond à cet utilisateur." +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Modifier votre mot de passe." -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Pseudo de l'utilisateur" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Modification du mot de passe" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Utilisateur non trouvé." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Ancien mot de passe" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "Quel est votre fuseau horaire habituel ?" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nouveau mot de passe" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Quoi de neuf, %s ?" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 caractères ou plus" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Indiquez votre emplacement, ex.: \"Ville, État (ou région), Pays\"" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Confirmer" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Format d'image invalide pour '%s'" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "identique au mot de passe ci-dessus" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Dimensions d'image invalides pour '%s'" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Modifier" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Oui" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Votre mot de passe doit contenir au moins 6 caractères." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Vous utilisez déjà cet OpenID !" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Les mots de passe ne correspondent pas." -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Ce message va être définitivement supprimé. Il sera impossible de le " -"récupérer." +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Ancien mot de passe incorrect" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Votre session est déjà ouverte !" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Erreur lors de l'enregistrement de l'utilisateur ; invalide." -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Vous êtes déjà abonné à ces utilisateurs :" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Impossible de sauvegarder le nouveau mot de passe." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Mot de passe enregistré." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Vous n'êtes pas ami(e) avec l'utilisateur spécifié." +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " +"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " +"doivent contenir au moins 3 caractères." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Vous pouvez modifier ici votre mot de passe. Choisissez-en un bon !" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Recherche de personnes" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Créez un nouveau compte pour commencer à envoyer des messages." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Ce marquage est invalide : %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Vous pouvez recevoir des messages SMS par courriel en provenance de %%site." -"name%%." +msgid "Users self-tagged with %s - page %d" +msgstr "Utilisateurs marqués &s - page %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « " -"Retirer »." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Contenu invalide" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]" -"(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" -"dessous." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Paramètres du profil" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3144,2824 +2021,2276 @@ msgstr "" "Vous pouvez mettre à jour les informations de votre profil pour qu'on en " "sache plus à votre sujet." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Vous pouvez utiliser l'abonnement local." +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Information de profil" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Vous devez accepter les termes de la licence pour créer un compte." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Vous n'avez pas envoyé ce profil" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Nom complet" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1" -"$s.\n" -"\n" -"Écrivez à %2$s pour mettre à jour votre statut.\n" -"\n" -"Plus d'info : %3$s.\n" -"\n" -"Amicalement vôtre,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Site personnel" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Vous ne pouvez pas supprimer le statut d'un autre utilisateur." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "Adresse de votre site Web, blogue, ou profil dans un autre site" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Décrivez vos intérêts en 140 caractères" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Un avertissement vous sera envoyé quand vos invités auront accepté votre " -"invitation et se seront inscrits sur le site. Merci de faire grandir notre " -"communauté !" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Décrivez qui vous êtes et vos " -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" -"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " -"passe ci-dessous." +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Bio" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Votre URL OpenID" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Emplacement" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Indiquez votre emplacement, ex.: \"Ville, État (ou région), Pays\"" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Marquages" + +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " -"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "il y a quelques secondes " - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "il y a %d jours" +"Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "il y a %d heures" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Langue" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "il y a %d minutes" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Langue préférée" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "il y a %d mois" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Fuseau horaire" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "il y a 1 jour" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "Quel est votre fuseau horaire habituel ?" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "il y a 1 minute" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour " +"les utilisateurs non-humains)" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "il y a 1 mois" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La bio est trop longue (140 caractères maximum)." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "il y a environ 1 an" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Aucun fuseau horaire n'a été choisi." -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "il y a 1 heure" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "La langue est trop longue (255 caractères maximum)." -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "supprimer" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "en réponse à..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "répondre" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "identique au mot de passe ci-dessus" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Marquage invalide : \"%s\"" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "type de fichier non supporté" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Après" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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." +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Impossible de mettre à jour l'auto-abonnement." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Ce statut n'est pas un favori !" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Impossible d'enregistrer le profil." -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Impossible de supprimer le favori." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Impossible d'enregistrer les marquages. " -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Ajouter à mes favoris" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Préférences enregistrées." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -"Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses " -"favoris." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Impossible de récupérer le flux public." -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Ce statut a déjà été ajouté à vos favoris !" +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Flux public - page %d" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Impossible de créer le favori." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Flux public" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Retirer des favoris" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Fil du flux public" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "Statuts favoris de %s" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Fil du flux public" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Fil des statuts favoris de %s" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Fil du flux public" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/public.php:179 #, php-format -msgid "Inbox for %s - page %d" -msgstr "Boîte de réception de %s - page %d" +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Boîte de réception de %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -"Cette boîte de réception regroupe les messages personnels qui vous sont " -"envoyés." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:186 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s vous invite à vous inscrire à %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Ouvrez automatiquement une session à l'avenir ;" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre " - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Entrez votre identifiant et votre mot de passe." - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Aucun destinataire n'a été spécifié." - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -"N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Utilisateur inexistant" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nouveau message" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Message sans profil correspondant" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/public.php:233 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) permet de vous connecter à de nombreux sites " - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " +"Vous êtes sur %%site.name%% un service de [microblog] (http://fr.wikipedia." +"org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status." +"net/). [Inscrivez-vous](%%action.register%%) pour partager des messages sur " +"vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%" +"%))" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -"C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez " -"plus vous identifier !" +"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) " -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Vous pouvez retirer un identifiant OpenID de votre compte " +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Marquages publics" -#: actions/outbox.php:28 actions/outbox.php:58 +#: actions/publictagcloud.php:63 #, php-format -msgid "Outbox for %s - page %d" -msgstr "Boîte d'envoi de %s - page %d" +msgid "These are most popular recent tags on %s " +msgstr "Derniers marquages les plus populaires dans %s " -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/publictagcloud.php:69 #, php-format -msgid "Outbox for %s" -msgstr "Boîte d'envoi de %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -"Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -"Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou " -"par intérêts. " - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Vous pouvez mettre votre profil à jour ici " -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Utilisateur sans profil correspondant" +#: actions/publictagcloud.php:135 +#, fuzzy +msgid "Tag cloud" +msgstr "Marquages " -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Ce code de validation est périmé." +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Votre session est déjà ouverte !" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Si vous avez oublié ou perdu votre " +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Code de récupération non trouvé. " -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Vous avez été identifié(e) avec succès. Entrez un " +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Ceci n'est pas un code de récupération." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Votre pseudo sur ce serveur, " +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Code de récupération d'un utilisateur inconnu." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instructions pour récupérer votre mot de passe" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Erreur dans le code de confirmation." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Votre nouveau mot de passe a été enregistré avec succès." +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Ce code de validation est périmé. Veuillez recommencer. " -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Votre mot de passe doit contenir au moins 6 caractères." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" +"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix " -"s'offrent maintenant à vous :" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Vous recevrez sous peu un courriel avec " +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Pour vous abonner, vous pouvez [login](%%action.login%%), " +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Fil des favoris de %s" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Impossible d'afficher les favoris." +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" +"Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Message introuvable." +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Récupérer" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" -"Ce message personnel ne peut être lu que par son expéditeur et son " -"destinataire." +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Réinitialiser le mot de passe" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Message adressé à %1$s le %2$s" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Récupérer le mot de passe" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Message reçu de %1$s le %2$s" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Récupération de mot de passe demandée" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Envoyer un message" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Action inconnue" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Votre fournisseur de téléphone mobile." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 caractères ou plus, et ne l'oubliez pas !" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Messages envoyés à %s" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Identique au mot de passe ci-dessus" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Tous les messages envoyés à %s" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Réinitialiser" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Messages envoyés" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Entrez un pseudo ou une adresse courriel." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Tous les messages envoyés par %s" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Aucun utilisateur trouvé avec ce courriel ou ce nom." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Message sans texte !" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Aucune adresse courriel enregistrée pour cet utilisateur." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Destinataire non trouvé." +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Erreur lors de l'enregistrement de la confirmation du courriel." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits " -"comme amis." - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favoris de %s" +"Les instructions pour récupérer votre mot de passe ont été envoyées à " +"l'adresse courriel indiquée dans votre compte." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s statuts ont été ajoutés aux favoris de %s / %s." +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Réinitialisation inattendue du mot de passe." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s a ajouté un de vos messages à ses favoris" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Le mot de passe doit contenir au moins 6 caractères." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s a ajouté à ses favoris un de vos statuts dans %2$s.\n" -"\n" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Le mot de passe et sa confirmation ne correspondent pas." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." msgstr "" -"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " -"vers Twitter, " +"Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Préférences Twitter" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Désolé ! Seules les personnes invitées peuvent s'inscrire." -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Votre compte Twitter" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erreur dans le code de confirmation." -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Compte Twitter actuellement utilisé." +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Compte créé avec succès" -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Identifiant Twitter" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Créer un compte" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Veuillez éviter les espaces." +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Création de compte non autorisée." -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Mot de passe Twitter" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Vous devez accepter les termes de la licence pour créer un compte." -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Envoyer automatiquement mes statuts dans Twitter." +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Adresse courriel invalide." -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Envoyer mes réponses locales \"@\" dans Twitter." +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Cette adresse courriel est déjà utilisée." -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" -"Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Identifiant ou mot de passe incorrect." -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 +#: actions/register.php:342 msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -"L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que " -"des chiffres, des lettres minuscules ou majuscules, et des barres de " -"soulignement (_). " -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "La vérification de vos informations de Twitter a échoué !" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "L'enregistrement de votre configuration Twitter a échoué !" +"1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis." -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Configuration Twitter enregistrée avec succès." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Ce compte Twitter ne vous appartient pas." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Impossible de retirer cet utilisateur de Twitter." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Le compte Twitter a été retiré." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Impossible d'enregistrer vos préférences Twitter." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Préférences Twitter enregistrées avec succès." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Veuillez vérifier ces informations pour vous assurer que " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "L’abonnement a été autorisé, mais pas " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "L’abonnement a été refusé, mais pas " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Résultats de la commande" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Commande complétée" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Échec de la commande" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 caractères ou plus. Requis." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Désolé, cette commande n'a pas encore été implémantée." +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Identique au mot de passe ci-dessus. Requis." -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Abonnements : %1$s\n" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Courriel" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Aucun statut récent pour cet utilisateur" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Utilisé uniquement pour les mises à jour de statut, les avertissements, et " +"la récupération de mot de passe" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Statut ajouté aux favoris." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Nom plus long, votre \"vrai\" nom de préférence" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Mes textes et mes fichiers sont disponibles sous" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Nom complet : %s" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "Creative Commons Paternité 3.0" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Emplacement : %s" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " +"adresse de messagerie instantanée, numéro de téléphone. " -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 +#: actions/register.php:537 #, php-format -msgid "Homepage: %s" -msgstr "Site Web : %s" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez " +"maintenant :\n" +"\n" +"* Visiter [votre profil](%s) et publier votre premier statut.\n" +"* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin " +"d'envoyer et recevoir vos statuts par messagerie instantanée.\n" +"* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez " +"connaître ou qui partagent vos intêrets.\n" +"* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire " +"plus à votre sujet.\n" +"* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir " +"plus sur le fonctionnement du service.\n" +"\n" +"Merci pour votre inscription ! Nous vous souhaitons d'apprécier notre " +"service." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "À propos : %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Vous recevrez bientôt un courriel contenant les instructions pour confirmer " +"votre adresse.)" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 +#: actions/remotesubscribe.php:98 #, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " -"entré %d." +"Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou " +"[créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte " +"sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL " +"de votre profil ci-dessous." -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Votre message a été envoyé à %s" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Abonnement à distance " -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Une erreur est survenue pendant l'envoi de votre message." +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "S'abonner à cet utilisateur" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Indiquez le nom de l'utilisateur auquel vous souhaitez vous abonner " +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Pseudo de l'utilisateur" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Abonné à %s" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Pseudo de l'utilisateur que vous voulez suivre" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Indiquez le nom de l'utilisateur duquel vous souhaitez vous désabonner" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL du profil" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Désabonné de %s" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL de votre profil sur un autre service de micro-blogging compatible" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Cette commande n'a pas encore été implémantée." +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "S'abonner" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Avertissements désactivés." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "URL du profil invalide (mauvais format)" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Impossible de désactiver les avertissements." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de profil invalide (aucun document YADIS)." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Avertissements activés." +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Impossible d'activer les avertissements." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Impossible d'obtenir le jeton de requête." -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Commandes : \n" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Réponses à %s" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Impossible d'insérer le message." +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Réponses à %s - page %d" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Impossible de mettre à jour le message avec un nouvel URI." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Flux des statuts de %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Flux des statuts de %s" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Utilisateur sans profil correspondant dans le système." +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Flux des statuts de %s" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/replies.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"Vous avez une nouvelle adresse pour publier vos statuts dans %1$s.\n" -"\n" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/replies.php:203 #, php-format -msgid "New private message from %s" -msgstr "Nouveau message personnel de %s" +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/replies.php:205 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"%1$s (%2$s) vous a envoyé un message personnel :\n" -"\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "L'accès à cette boîte de réception est réservé à son utilisateur." +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Message adressé à %1$s le %2$s" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Ce formulaire devrait être soumis automatiquement." +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Statuts favoris de %s - page %d" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Favoris" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Impossible d'afficher les favoris." -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showfavorites.php:170 #, php-format -msgid "%s's favorite notices" -msgstr "Statuts favoris de %s" +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Flux pour les amis de %s (RSS 1.0)" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utilisateur" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Flux pour les amis de %s (RSS 2.0)" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Boîte de réception" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Flux pour les amis de %s (Atom)" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Vos messages reçus" +#: actions/showfavorites.php:205 +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 "" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Boîte d'envoi" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Vos messages envoyés" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Configuration Twitter" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "À " - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Impossible de déchiffrer ce message." - -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showfavorites.php:211 #, php-format -msgid "%s and friends, page %d" -msgstr "%s et ses amis - page %d" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Paramètres de l'avatar" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Image originale" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "Groupe %s" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Aperçu" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "Groupe %s - page %d" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Recadrer" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Profil du groupe" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Un problème est survenu avec vos informations de session. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Données perdues." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Note" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Fichier perdu." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Type de fichier inconnu" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Actions du groupe" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Aucun profil n'a été spécifié." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Fil des statuts du groupe %s" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Aucun profil ne correspond à cet identifiant." +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Fil des statuts du groupe %s" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Bloquer cet utilisateur" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Fil des statuts du groupe %s" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Êtes-vous sûr(e) de bloquer cet utilisateur ?" +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Boîte d'envoi de %s" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Vous avez déjà bloqué cet utilisateur." +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Membres" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Impossible d'enregistrer les informations de blocage." +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(aucun)" -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "L'adresse \"%s\" a été " +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Tous les membres" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Ce statut va être définitivement supprimé. " +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistiques" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Ajouter aux favoris" +#: actions/showgroup.php:432 +msgid "Created" +msgstr "Créé" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:448 #, php-format -msgid "Edit %s group" -msgstr "Modifier le groupe %s" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +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 "" -"Les boîtes de réception doivent être activées pour que les groupes " -"fonctionnent " -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Vous devez ouvrir une session pour créer un groupe." - -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Aucun pseudo" +#: actions/showgroup.php:454 +#, fuzzy, 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** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." +"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Aucun groupe trouvé" +#: actions/showgroup.php:482 +msgid "Admins" +msgstr "Administrateurs" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Seuls les administrateurs d'un groupe peuvent le modifier." +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Message introuvable." -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Remplissez ce formulaire pour modifier les options du groupe." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" +"Ce message personnel ne peut être lu que par son expéditeur et son " +"destinataire." -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Le pseudo ne peut contenir que des caractères minuscules " +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Message adressé à %1$s le %2$s" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "la description est trop longue (140 caractères maximum)." +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Message reçu de %1$s le %2$s" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Impossible de mettre à jour le groupe." +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Statut publié" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Vos options ont été enregistrées." +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Statuts marqués avec %s" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showstream.php:79 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "En attente de confirmation de cette adresse." - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Créer une nouvelle adresse courriel pour publier vos statuts ; " +msgid "%s, page %d" +msgstr "%s - page %d" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Envoyez-moi un courriel quand quelqu'un " +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Fil des statuts du groupe %s" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Autoriser mes amis à m'envoyer des courriels et des clins d'oeil." +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Flux des statuts de %s" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Cette adresse électronique appartient déjà " +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Flux des statuts de %s" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "Un code de confirmation a été envoyé à l'adresse courriel indiquée." +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Flux des statuts de %s" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Erreur du serveur - impossible d'accéder à cet utilisateur !" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Boîte d'envoi de %s" -#: actions/facebookhome.php:196 +#: actions/showstream.php:191 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -"Si vous souhaitez que l'application %s soit mise à jour automatiquement " - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Autoriser %s à mettre à jour mon statut dans Facebook" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Sauter" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Statut sans contenu !" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Pagination" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Après" - -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Avant" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/showstream.php:198 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Merci d'inviter vos amis à utiliser %s" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Invitation(s) envoyée(s) aux personnes suivantes :" +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/showstream.php:234 #, php-format -msgid "You have been invited to %s" -msgstr "Vous avez reçu une invitation à %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Invitez vos amis dans %s" +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) %%%%site.name%%%%" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Amis déjà inscrits à %s :" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Paramètres SMS" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/smssettings.php:69 #, php-format -msgid "Send invitations" -msgstr "Envoyer des invitations" - -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Impossible de retirer l'utilisateur Facebook." - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -"Un problème est survenu lors de l'enregistrement de vos préférences de " -"synchronisation !" +"Vous pouvez recevoir des messages SMS par courriel en provenance de %%site." +"name%%." -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Préférences de synchronisation enregistrées." +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Cette page n'est pas disponible dans " -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Mettre à jour automatiquement mon statut Facebook." +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Numéro de téléphone actuellement confirmé pour recevoir les SMS." -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Envoyer mes réponses \"@\" dans Facebook." +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Numéro de téléphone en attente de confirmation." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Préfixe" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Code de confirmation" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Préfixe à insérer dans les statuts." +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Entrez le code que vous avez reçu sur votre téléphone." -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "Si vous souhaitez une mise à jour automatique de %s " - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Préférences de synchronisation" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Numéro SMS" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Retirer ce favori" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" +"Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Statuts populaires" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma " +"facture de téléphonie mobile." -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Statuts populaires - page %d" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Aucun numéro de téléphone." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Statuts les plus populaires sur le site en ce moment." +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Aucun fournisseur sélectionné." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Utilisateurs en vedette" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Vous utilisez déjà ce numéro de téléphone." -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Utilisateurs en vedette - page %d" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Ce numéro de téléphone est déjà utilisé." -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Les utilisateurs à ne pas manquer dans %s" +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " +"Vérifiez votre boîte de réception pour récupérer le code et les instructions." -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Cet utilisateur vous a empêché de vous inscrire." +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Ce code de confirmation est incorrect." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Aucun identifiant" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Ceci n'est pas votre numéro de téléphone." -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Logo du groupe" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Fournisseur de téléphonie mobile" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Choisissez un logo pour votre groupe." +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Sélectionnez un fournisseur de téléphone mobile" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Logo mis à jour." +#: actions/smssettings.php:476 +#, php-format +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 "" +"Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur " +"qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, " +"écrivez-nous à %s." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "La mise à jour du logo a échoué." +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Aucun code entré" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "Membres du groupe %s" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Vous n'êtes pas abonné(e) à ce profil." -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "Membres du groupe %s - page %d" +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Impossible d'enregistrer l'abonnement." -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Liste des utilisateurs inscrits à ce groupe." +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Ceci n'est pas un utilisateur local." -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Groupes" +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Souscrit" -#: actions/groups.php:64 +#: actions/subscribers.php:50 #, php-format -msgid "Groups, page %d" -msgstr "Groupes - page %d" +msgid "%s subscribers" +msgstr "Abonnés à %s" -#: actions/groups.php:90 +#: actions/subscribers.php:52 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "Les groupes %%%%site.name%%%% vous permettent d'échanger avec " +msgid "%s subscribers, page %d" +msgstr "Abonnés à %s - page &d" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Créer un nouveau groupe" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Ces personnes suivent vos statuts. " -#: actions/groupsearch.php:57 +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Ces personnes suivent les statuts de %s." + +#: actions/subscribers.php:108 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -"Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par " -"intérêts. Séparez les termes de recherches par des espaces. Ils doivent " -"contenir au moins 3 caractères." - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Rechercher des groupes" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "Vous pouvez publier et lire les statuts via " -#: actions/imsettings.php:120 +#: actions/subscribers.php:110 #, php-format -msgid "Jabber or GTalk address, " -msgstr "Adresse Jabber ou GTalk, " +msgid "%s has no subscribers. Want to be the first?" +msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Envoyez-moi les réponses par Jabber/GTalk" +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" -#: actions/imsettings.php:321 +#: actions/subscriptions.php:52 #, php-format -msgid "A confirmation code was sent " -msgstr "Un code de confirmation a été envoyé " +msgid "%s subscriptions" +msgstr "Abonnements de %s" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "Vous devez ouvrir une session pour rejoindre un groupe." +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "Abonnements de %s - page %d" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Vous êtes déjà membre de ce groupe " +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Vous suivez les statuts de ces personnes. " -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/subscriptions.php:69 #, php-format -msgid "Could not join user %s to group %s" -msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" +msgid "These are the people whose notices %s listens to." +msgstr "Les statuts de ces personnes sont suivis par %s." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/subscriptions.php:121 #, php-format -msgid "%s joined group %s" -msgstr "%s a rejoint le groupe %s" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -"Les boîtes de réception doivent être activées pour que les groupes " -"fonctionnent." - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "Vous devez ouvrir une session pour quitter un groupe." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Aucun groupe trouvé." +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "%s ne suit actuellement personne." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "Vous n'êtes pas membre de ce groupe." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" -"Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Aucun enregistrement à ce groupe n'a été trouvé." +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Aucune session ouverte" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "Impossible de retirer l'utilisateur %s du groupe %s" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Aucun argument d'identification." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/tagother.php:65 #, php-format -msgid "%s left group %s" -msgstr "%s a quitté le groupe %s" +msgid "Tag %s" +msgstr "Marquage %s" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Ouverture de session" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Profil de l'utilisateur" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Aucun statut " +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Photo" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Nouveau groupe" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Marquer l'utilisateur" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "Marquer cet utilisateur (séparer par des espaces ou des virgules)" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Impossible de créer le groupe." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) " +"ou qui sont abonnées à vous." -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Impossible d'établir l'inscription au groupe." +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Impossible d'enregistrer les marquages." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "C'est trop long." +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "N'envoyez pas de message à vous-même ; " +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Statuts marqués %s - page %d" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Statut publié" +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Flux des statuts de %s" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Erreur Ajax" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son " -"adresse courriel." +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Flux des statuts de %s" -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Clin d'œil envoyé" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Flux des statuts de %s" -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Clin d'œil envoyé !" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Aucun marquage trouvé." -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "Connexion OpenID" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Méthode API en construction." -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Retirer votre OpenID " +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Aucune identité de profil dans la requête." -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Autres paramètres" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Aucun profil avec cet identifiant." -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Autres options à configurer" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Désabonné" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Réduction automatique des adresses Web (URL)" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Service" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autoriser l'abonnement" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Sélectionnez un service de réduction d'URL." +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Le service de réduction d'URL est trop long (50 caractères maximum)." +#: actions/userauthorization.php:188 +msgid "License" +msgstr "Licence" -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Modifier votre mot de passe." +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Accepter" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Modification du mot de passe" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "S'abonner à cet utilisateur" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "Ce marquage est invalide : %s" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Refuser" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Utilisateurs marqués &s - page %d" +#: actions/userauthorization.php:212 +msgid "Reject this subscription" +msgstr "Rejeter cet souscription" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Les utilisateurs suivants se sont marqués \"%s\" :" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Pas de requête d'autorisation !" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Information de profil" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Abonnement autorisé" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -"Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "M’abonner automatiquement à quiconque " +"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " +"Vérifiez les instructions du site pour savoir comment compléter " +"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Marquage invalide : \"%s\"" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Abonnement refusé" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Impossible d'enregistrer les marquages. " +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " +"les instructions du site pour savoir comment refuser pleinement " +"l'abonnement. " -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/userauthorization.php:296 #, php-format -msgid "Public timeline, page %d" -msgstr "Flux public - page %d" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Impossible de récupérer le flux public." +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/public.php:220 +#: actions/userauthorization.php:301 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +msgid "Listenee URI ‘%s’ is too long." msgstr "" -"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" -"wiki/Microblog) " - -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "Marquages publics" -#: actions/publictagcloud.php:63 +#: actions/userauthorization.php:307 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "Derniers marquages les plus populaires dans %s " - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -#, fuzzy -msgid "Tag cloud" -msgstr "Marquages " - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Désolé ! Seules les personnes invitées peuvent s'inscrire." +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Vous ne pouvez pas créer un compte si vous ne " +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" -#: actions/register.php:286 -#, fuzzy -msgid "With this form you can create " -msgstr "Ce formulaire permet de créer " +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1 à 64 lettres minuscules ou chiffres, " +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Impossible de lire l'URL '%s'" -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "Utilisé seulement pour les mises à jour, nouvelles du site, " +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Format d'image invalide pour '%s'" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "URL de votre site Web, blogue, " +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Aucun identifiant." -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "Décrivez qui vous êtes et vos " +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "Conception de profile" -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "Votre emplacement, ex.: \"Ville, " +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " -msgstr " à l'exception de ces données personnelles : mot de passe, " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" -#: actions/register.php:471 +#: actions/usergroups.php:64 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. " +msgid "%s groups, page %d" +msgstr "Groupes de %s - page %d" -#: actions/register.php:495 +#: actions/usergroups.php:130 #, fuzzy -msgid "(You should receive a message by email " -msgstr "(Vous recevrez bientôt un courriel " - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." +msgid "Search for more groups" +msgstr "Rechercher des personnes ou du texte" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/usergroups.php:153 #, php-format -msgid "Replies to %s, page %d" -msgstr "Réponses à %s - page %d" +msgid "%s is not a member of any group." +msgstr "%s n'est pas membre d'aucun groupe." -#: actions/showfavorites.php:79 +#: actions/usergroups.php:158 #, php-format -msgid "%s favorite notices, page %d" -msgstr "Statuts favoris de %s - page %d" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: classes/File.php:137 #, php-format -msgid "%s group" -msgstr "Groupe %s" +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: classes/File.php:147 #, php-format -msgid "%s group, page %d" -msgstr "Groupe %s - page %d" - -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Profil du groupe" +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Note" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Impossible d'insérer le message." -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Actions du groupe" +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Impossible de mettre à jour le message avec un nouvel URI." -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: classes/Notice.php:164 #, php-format -msgid "Notice feed for %s group" -msgstr "Fil des statuts du groupe %s" - -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Membres" +msgid "DB error inserting hashtag: %s" +msgstr "Erreur de base de donnée en insérant le hashtag : %s" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(aucun)" +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problème lors de l'enregistrement du statut." -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Tous les membres" +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Erreur lors de l'enregistrement du statut. Utilisateur inconnu." -#: actions/showgroup.php:378 -#, php-format +#: classes/Notice.php:188 msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." -"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Expéditeur et destinataire seulement " - -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s - page %d" +"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " +"quelques minutes." -#: actions/showstream.php:143 +#: classes/Notice.php:194 #, fuzzy -msgid "'s profile" -msgstr " - Profil" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Profil de l'utilisateur" - -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Photo" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Actions de l'utilisateur" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Envoyer un message à cet utilisateur" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Message " +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " +"quelques minutes." -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Tous les abonnés" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Il vous est interdit de publier des statuts dans ce site." -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Tous les groupes" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Problème lors de l'enregistrement du statut." -#: actions/showstream.php:542 +#: classes/Notice.php:1120 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" -"wiki/Microblog) %%%%site.name%%%%" - -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Numéro de téléphone, sans ponctuation ni espace, " +msgid "DB error inserting reply: %s" +msgstr "Erreur de base de donnée en insérant la réponse :%s" -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "M'envoyer les statuts par SMS ; " +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Message adressé à %1$s le %2$s" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Fournisseur de téléphonie mobile" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Modifier vos paramètres de profil" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Vous n'êtes pas abonné(e) à ce profil." +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Ajouter un avatar" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Impossible d'enregistrer l'abonnement." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Modifier votre mot de passe" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Ceci n'est pas un utilisateur local." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Modifier le traitement des courriels" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Souscrit" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "Conception" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "Abonnés à %s" +#: lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "Concevez votre profile" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "Abonnés à %s - page &d" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Autres " -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "Ces personnes suivent " +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Autres options " -#: actions/subscribers.php:67 +#: lib/action.php:144 #, php-format -msgid "These are the people who " -msgstr "Ces personnes sont ceux qui " +msgid "%s - %s" +msgstr "%s - %s" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "Abonnements de %s" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Page sans nom" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "Abonnements de %s - page %d" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Navigation primaire du site" -#: actions/subscriptions.php:65 -#, fuzzy -msgid "These are the people whose notices " -msgstr "Voici les personnes dont les messages " +#: lib/action.php:430 +msgid "Home" +msgstr "Accueil" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "Voici les personnes dont " +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Profil personnel et flux des amis" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +#: lib/action.php:432 +msgid "Account" +msgstr "Compte" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Statuts marqués %s - page %d" +#: lib/action.php:432 +#, fuzzy +msgid "Change your email, avatar, password, profile" +msgstr "Modifier votre courriel, avatar, mot de passe, profil " -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Messages marqués \"%s\", à partir du plus récent" +#: lib/action.php:435 +msgid "Connect" +msgstr "Connecter" -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Aucune session ouverte" +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Impossible de rediriger vers le serveur : %s" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Aucun argument d'identification." +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Inviter" -#: actions/tagother.php:65 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "Tag %s" -msgstr "Marquage %s" +msgid "Invite friends and colleagues to join you on %s" +msgstr "Inviter des amis et collègues à vous rejoindre dans %s" -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Marquer l'utilisateur" +#: lib/action.php:445 +msgid "Logout" +msgstr "Fermeture de session" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "Marquer cet utilisateur (séparer par des espaces ou des virgules)" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Fermer la session" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Un problème est survenu avec votre jeton de session." +#: lib/action.php:450 +msgid "Create an account" +msgstr "Créer un compte" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) " -"ou qui sont abonnées à vous." +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Ouvrir une session" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Impossible d'enregistrer les marquages." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Aide" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." +#: lib/action.php:456 +msgid "Help me!" +msgstr "À l'aide !" -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Aucun marquage trouvé." +#: lib/action.php:459 +msgid "Search" +msgstr "Rechercher" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Microblog marqué avec %s" +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Rechercher des personnes ou du texte" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Le blocage de l'utilisateur a échoué." +#: lib/action.php:480 +msgid "Site notice" +msgstr "Notice du site" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Le déblocage de l'utilisateur a échoué." +#: lib/action.php:546 +msgid "Local views" +msgstr "Vues locales" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non trouvé." +#: lib/action.php:612 +#, fuzzy +msgid "Page notice" +msgstr "Notice de la page" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Ajoutez votre compte Twitter pour envoyer automatiquement " +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Navigation secondaire du site" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Nom d'utilisateur Twitter" +#: lib/action.php:721 +msgid "About" +msgstr "À propos" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Mot de passe Twitter" +#: lib/action.php:723 +msgid "FAQ" +msgstr "FAQ" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Amis de Twitter" +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "L'identifiant doit contenit seulement des chiffres, " +#: lib/action.php:730 +msgid "Privacy" +msgstr "Confidentialité" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "Impossible de récupérer les informations du compte " +#: lib/action.php:732 +msgid "Source" +msgstr "Source" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Erreur lors de l'annulation du blocage." +#: lib/action.php:734 +msgid "Contact" +msgstr "Contact" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Aucune identité de profil dans la requête." +#: lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Clin d'œil" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Aucun profil avec cet identifiant." +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Licence du logiciel StatusNet" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Désabonné" +#: lib/action.php:767 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** est un service de microblogging qui vous est proposé par " +"[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: lib/action.php:769 #, php-format -msgid "%s groups" -msgstr "Groupes de %s" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** est un service de micro-blogging." -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: lib/action.php:771 #, php-format -msgid "%s groups, page %d" -msgstr "Groupes de %s - page %d" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Erreur lors de l'enregistrement du statut. Utilisateur inconnu." - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " -"quelques minutes." - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Il vous est interdit de publier des statuts dans ce site." - -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Ajouter un avatar" +"Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " +"version %s, disponible sous la licence [GNU Affero General Public License] " +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Autres " +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licence du logiciel StatusNet" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Autres options " +#: lib/action.php:794 +msgid "All " +msgstr "Tous" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "%s - %s" +#: lib/action.php:799 +msgid "license." +msgstr "licence." -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Page sans nom" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Pagination" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Navigation primaire du site" +#: lib/action.php:1062 +msgid "After" +msgstr "Après" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Profil personnel et flux des amis" +#: lib/action.php:1070 +msgid "Before" +msgstr "Avant" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Rechercher des personnes ou du texte" +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Un problème est survenu avec votre jeton de session." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Compte" +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "Pièces jointes" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Change your email, avatar, password, profile" -msgstr "Modifier votre courriel, avatar, mot de passe, profil " +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "Auteur" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Connexion à la messagerie instantanée, SMS ou Twitter" +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "Fournisseur" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Fermer la session" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Ouvrir une session" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Créer un compte" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Résultats de la commande" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Connexion OpenID" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Commande complétée" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "À l'aide !" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Échec de la commande" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Notice du site" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Désolé, cette commande n'a pas encore été implémantée." -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Vues locales" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Notice de la page" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Navigation secondaire du site" +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Clin d'œil envoyé" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Licence du logiciel StatusNet" +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" +"Abonnements : %1$s\n" +"Abonnés : %2$s\n" +"Messages : %3$s" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Tous" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "licence." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Aucun statut récent pour cet utilisateur" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Bloquer cet utilisateur " +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Statut ajouté aux favoris." -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Bloquer" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Retirer des favoris" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "Nom complet : %s" -#: lib/facebookaction.php:268 +#: lib/command.php:321 #, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" +msgid "Location: %s" +msgstr "Emplacement : %s" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " un nouveau compte." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Site Web : %s" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Publié" +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "À propos : %s" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Ajouter aux favoris" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exporter les données" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Une erreur est survenue pendant l'envoi de votre message." -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Filtrer les balises" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Tous" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Répondre à ce statut" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Marquer" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problème lors de l'enregistrement du statut." -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Choissez un marquage pour réduire la liste" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Indiquez le nom de l'utilisateur auquel vous souhaitez vous abonner " -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Aller" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Abonné à %s" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "URL du site Web ou blogue du groupe ou sujet " +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Indiquez le nom de l'utilisateur duquel vous souhaitez vous désabonner" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Description" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Désabonné de %s" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Description du groupe ou du sujet (140 caractères maximum)" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Cette commande n'a pas encore été implémantée." -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Emplacement du groupe, s'il y a lieu \"Ville, État ou région, Pays\"" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Avertissements désactivés." -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Groupe" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Impossible de désactiver les avertissements." -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Administrer" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Avertissements activés." -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "Modifier les propriétés du groupe %s" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Impossible d'activer les avertissements." -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "Logo" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Impossible de créer le formulaire OpenID : %s" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/command.php:602 #, php-format -msgid "Add or edit %s logo" -msgstr "Ajouter ou modifier le logo de %s" +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Groupes avec le plus de membres" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "Groupes avec le plus d'éléments publiés" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Aucun code de confirmation." -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "Marquages des statuts du groupe %s" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/htmloutputter.php:104 +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 #, fuzzy -msgid "This page is not available in a " -msgstr "Cette page n'est pas disponible dans " +msgid "Go to the installer." +msgstr "Ouvrir une session" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Rejoindre" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "Quitter" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Suivi des statuts par messagerie instantanée" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "Ouvrez une session avec un identifiant et un mot de passe" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Suivi des statuts par SMS" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "Créer un nouveau compte" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "Erreur de la base de données" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Ouvrir une session ou s'enregistrer avec OpenID" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Transfert" -#: lib/mail.php:175 -#, php-format +#: lib/designsettings.php:109 msgid "" -"Hey, %s.\n" -"\n" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -"Bonjour, %s.\n" -"\n" -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "%1$s suit actuellement " +#: lib/designsettings.php:139 +msgid "On" +msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "Emplacement : %s\n" +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "Site Web : %s\n" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -"Bio : %s\n" -"\n" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "Vous avez reçu un clin d'œil de %s" +#: lib/designsettings.php:170 +msgid "Change colours" +msgstr "Modifier les couleurs" -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) se demande ce que vous devenez " +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" -#: lib/mail.php:555 -#, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s a ajouté votre statut depuis %2$s" +#: lib/designsettings.php:191 +msgid "Content" +msgstr "Contenu" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "De" +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Barre latérale" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Envoyer un message direct" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Texte" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Envoyer un statut" +#: lib/designsettings.php:230 +msgid "Links" +msgstr "Liens" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Caractères restants" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "en réponse à" +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "Répondre à ce statut" +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Répondre" +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Supprimer ce statut" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Supprimer" +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "Envoyer un clin d'œil à cet utilisateur" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Retirer des favoris" -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "Clin d'œil" +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Ajouter aux favoris" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "Envoyer un clin d'œil à cet utilisateur" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Ajouter à mes favoris" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "Marquages des statuts de %s" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Exporter les données" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(aucun)" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "RSS 1.0" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Public" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "RSS 2.0" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Groupes d'utilisateurs" +#: lib/feed.php:89 +msgid "Atom" +msgstr "Atom" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Marquages récents" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "En vedette" +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Filtrer les balises" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Populaires" +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Tous" -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Statut" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Sélectionnez un fournisseur de téléphone mobile" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Rechercher des groupes sur ce site" +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Marquer" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Section sans titre" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Choissez un marquage pour réduire la liste" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "Abonnements de %s" +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Aller" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "Abonnés de %s" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL du site Web ou blogue du groupe ou sujet " -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "Groupes de %s" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Description du groupe ou du sujet (140 caractères maximum)" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Inviter des amis et collègues à vous rejoindre dans %s" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Description du groupe ou du sujet (140 caractères maximum)" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "Cet utilisateur vous a bloqué." +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Description" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "S'abonner à cet utilisateur" +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Emplacement du groupe, s'il y a lieu \"Ville, État ou région, Pays\"" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Aucun" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Utilisateurs les plus actifs" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Groupe" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Débloquer cet utilisateur" +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "Bloqué" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Débloquer" +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "%s utilisateurs bloqués" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Ne plus suivre cet utilisateur" +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "Modifier les propriétés du groupe %s" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Logo" + +#: lib/groupnav.php:113 #, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Flux pour les amis de %s (RSS 1.0)" +msgid "Add or edit %s logo" +msgstr "Ajouter ou modifier le logo de %s" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#: lib/groupnav.php:119 #, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Flux pour les amis de %s (RSS 2.0)" +msgid "Add or edit %s design" +msgstr "Ajouter ou modifier la conception de %s" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Groupes avec le plus de membres" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Groupes avec le plus d'éléments publiés" + +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Flux pour les amis de %s (Atom)" +msgid "Tags in %s group's notices" +msgstr "Marquages des statuts du groupe %s" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -msgid "You and friends" -msgstr "Vous et vos amis" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" +"Cette page n'est pas disponible dans un des formats que vous avez autorisés." -#: actions/avatarsettings.php:78 +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." +msgid "That file is too big. The maximum file size is %s." +msgstr "Ce fichier est trop lourd. La taille maximale est %d." -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -msgid "Avatar deleted." -msgstr "Avatar supprimé." +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Transfert partiel." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" -"Êtes-vous certain de vouloir bloquer cet utilisateur ? Après cela, il ne " -"sera plus abonné à votre compte, ne pourra plus s’y abonner de nouveau, et " -"vous ne serez pas informé des @-réponses de sa part." +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Erreur système lors du transfert du fichier." -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Ce message va être définitivement supprimé. Il sera impossible de le " -"récupérer." +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Ceci n'est pas une image, ou c'est un fichier corrompu." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -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." +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Format de fichier d'image non supporté." -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Fichier perdu." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 vous souhaitez que l’application %s mette automatiquement à jour votre " -"statut Facebook avec votre dernier message, vous devez lui donner ce droit." +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Type de fichier inconnu" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: lib/jabber.php:192 #, php-format -msgid "Okay, do it!" -msgstr "" +msgid "notice id: %s" +msgstr "Nouveau statut" -#: actions/facebooksettings.php:124 -#, 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 "" -"Si vous souhaitez que %s mette automatiquement à jour votre statut Facebook " -"avec votre dernier message, vous devez lui donner ce droit." +#: lib/joinform.php:114 +msgid "Join" +msgstr "Rejoindre" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Choisissez un logo pour votre groupe." +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Quitter" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Ouvrez une session avec un identifiant et un mot de passe" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Micro-blogging par %s" +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "Créer un nouveau compte" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "L'accès à cette boîte de réception est réservé à son utilisateur." + +#: lib/mailbox.php:139 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." +"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 "" -"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " -"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " -"doivent contenir au moins 3 caractères." -#: actions/groups.php:90 +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "de" + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Confirmation de l'adresse courriel" + +#: lib/mail.php:174 #, php-format msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" +"Bonjour %s.\n" +"\n" +"Quelqu’un vient d’utiliser cette adresse électronique sur %s.\n" +"\n" +"S’il s’agit bien de vous, et que vous souhaitez confirmer cette adresse, " +"utilisez le lien qui suit :\n" +"\n" +"%s\n" +"\n" +"Dans le cas contraire, il vous suffit d’ignorer ce message.\n" +"\n" +"Merci de votre attention,\n" +"%s\n" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "Seuls les utilisateurs connectés peuvent envoyer des messages directs." - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Flux de recherche pour « %s »" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s suit maintenant vos statuts dans %2$s." -#: actions/openidlogin.php:66 +#: lib/mail.php:240 #, fuzzy, php-format msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" -"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " -"votre mot de passe afin d'enregistrer vos préférences." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Fil du flux public" +"%1$s suit maintenant vos statuts dans %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordialement,\n" +"%4$s.\n" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Fil du flux public" +#: lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "Emplacement : %s\n" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Fil du flux public" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "Site Web : %s\n" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: lib/mail.php:257 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +"Bio: %s\n" +"\n" msgstr "" -"Vous êtes sur %%site.name%% un service de [microblog] (http://fr.wikipedia." -"org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status." -"net/). [Inscrivez-vous](%%action.register%%) pour partager des messages sur " -"vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%" -"%))" +"Bio : %s\n" +"\n" + +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Nouvelle adresse courriel pour poster dans %s" -#: actions/register.php:286 actions/register.php:329 +#: lib/mail.php:288 #, php-format msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1" +"$s.\n" +"\n" +"Écrivez à %2$s pour mettre à jour votre statut.\n" +"\n" +"Plus d'info : %3$s.\n" +"\n" +"Amicalement vôtre,\n" +"%4$s" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Paternité 3.0" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "Statut de %s" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " -"adresse de messagerie instantanée, numéro de téléphone. " +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Confirmation SMS" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -msgid "Created" -msgstr "Créé" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "Vous avez reçu un clin d'œil de %s" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: lib/mail.php:466 #, 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%%%%))" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: actions/showstream.php:147 -msgid "Your profile" -msgstr "Votre profil" - -#: actions/showstream.php:149 +#: lib/mail.php:509 #, php-format -msgid "%s's profile" -msgstr "Profil de %s" - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Flux des statuts de %s" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Flux des statuts de %s" - -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Flux des statuts de %s" - -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Boîte d'envoi de %s" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -msgid "Edit Avatar" -msgstr "Modifier l'avatar" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -msgid "Edit profile settings" -msgstr "Modifier les paramètres du profil" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "Modifier" +msgid "New private message from %s" +msgstr "Nouveau message personnel de %s" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: lib/mail.php:513 #, php-format msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " -"Vérifiez votre boîte de réception pour récupérer le code et les instructions." +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s a ajouté un de vos messages à ses favoris" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format +#: lib/mail.php:556 +#, fuzzy, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" -"In case you forgot, you can see the text of your notice here:\n" +"The URL of your notice is:\n" "\n" "%3$s\n" "\n" -"You can see the list of %1$s's favorites here:\n" +"The text of your notice is:\n" "\n" "%4$s\n" "\n" -"Faithfully yours,\n" +"You can see the list of %1$s's favorites here:\n" +"\n" "%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" "%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n" "\n" @@ -5977,1799 +4306,432 @@ msgstr "" "Cordialement,\n" "%5$s\n" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -msgid "No such user!" -msgstr "Aucun utilisateur n'a été trouvé !" +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" -#: actions/twittersettings.php:72 -#, fuzzy +#: lib/mail.php:613 +#, php-format msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " -"vers Twitter, " -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " -"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " -"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Rechercher des personnes ou du texte" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy +#: lib/mediafile.php:147 msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " -"quelques minutes." -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Connexion à la messagerie instantanée, SMS ou Twitter" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Clin d'œil" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -"Abonnements : %1$s\n" -"Abonnés : %2$s\n" -"Messages : %3$s" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "Erreur de la base de données" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "Vous devez ouvrir une session pour utiliser l'application Facebook %s" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "RSS 1.0" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "RSS 2.0" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" -#: lib/feed.php:89 -msgid "Atom" -msgstr "Atom" +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Impossible de récupérer le flux public." -#: lib/feed.php:91 -msgid "FOAF" +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." msgstr "" -#: lib/imagefile.php:75 +#: lib/mediafile.php:275 #, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "Ce fichier est trop lourd. La taille maximale est %d." +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Envoyer un message direct" + +#: lib/messageform.php:146 +msgid "To" +msgstr "À " + +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Caractères restants" + +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Envoyer un statut" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/noticeform.php:158 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" -"Bonjour %s.\n" -"\n" -"Quelqu’un vient d’utiliser cette adresse électronique sur %s.\n" -"\n" -"S’il s’agit bien de vous, et que vous souhaitez confirmer cette adresse, " -"utilisez le lien qui suit :\n" -"\n" -"%s\n" -"\n" -"Dans le cas contraire, il vous suffit d’ignorer ce message.\n" -"\n" -"Merci de votre attention,\n" -"%s\n" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s suit maintenant vos statuts dans %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordialement,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "Rechercher sur le site" - -#: lib/section.php:106 -msgid "More..." -msgstr "Plus..." - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -msgid "No such attachment." -msgstr "Pièce jointe non trouvée." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Liste des utilisateurs inscrits à ce groupe." - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Liste des utilisateurs inscrits à ce groupe." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Profil de l'utilisateur" - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s et ses amis - page %d" - -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Liste des utilisateurs inscrits à ce groupe." - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Le déblocage de l'utilisateur a échoué." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Code de confirmation" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -msgid "Do not delete this notice" -msgstr "Ne pas supprimer cet avis" - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Marquage invalide : \"%s\"" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Pseudo déjà utilisé. Essayez-en un autre." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Impossible de créer le favori." - -#: 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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Nouveau statut" - -#: actions/file.php:38 -msgid "No notice" -msgstr "Aucun avis" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "Aucune pièce jointe" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "Code d'invitation invalide." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "Aucun groupe n'a été spécifié." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Cet utilisateur vous a bloqué." - -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "L'utilisateur n'est pas membre du groupe." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "Bloquer cet utilisateur du groupe" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "Vous devez ouvrir une session pour modifier un groupe." - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Groupes" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Impossible de mettre à jour l'utilisateur." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "L'enregistrement de votre configuration Twitter a échoué !" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Préférences de synchronisation enregistrées." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "Faire de cet utilisateur un administrateur du groupe" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Administrer" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "Aucun résultat." - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "Cet utilisateur vous a bloqué." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "Message envoyé" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -msgid "Couldn't save file." -msgstr "Impossible d'enregistrer le fichier." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) vous permet de vous connecter à différents sites " -"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Paramètres du profil" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" -"wiki/Microblog) " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " -"nouveau à l'adresse courriel indiquée dans votre compte. " - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "" -"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " -"passe ci-dessous." - -#: actions/recoverpassword.php:188 -msgid "Password recover" -msgstr "Récupération de mot de passe" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Erreur dans le code de confirmation." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "S'abonner à cet utilisateur" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Statuts favoris de %s - page %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Fil des statuts du groupe %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Fil des statuts du groupe %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Fil des statuts du groupe %s" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." -"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "Administrateurs" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Ceci n'est pas un utilisateur local." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Statuts marqués avec %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Fil des statuts du groupe %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" -"wiki/Microblog) %%%%site.name%%%%" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "%s ne suit actuellement personne." - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Flux des statuts de %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Flux des statuts de %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "Ce statut a déjà été ajouté à vos favoris !" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "Ce statut n'est pas un favori !" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Impossible de récupérer le flux public." - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Aucun destinataire n'a été spécifié." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -msgid "Could not find target user." -msgstr "Impossible de trouver l'utilisateur cible." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Réponses à %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Statuts de %1$s dans %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "Licence" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -msgid "Reject this subscription" -msgstr "Rejeter cet souscription" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "Conception de profile" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "%s n'est pas membre d'aucun groupe." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Problème lors de l'enregistrement du statut." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Message adressé à %1$s le %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "Conception" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -msgid "Design your profile" -msgstr "Concevez votre profile" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "Pièces jointes" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "Auteur" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "Fournisseur" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Transfert" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "Modifier les couleurs" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "Contenu" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "Barre latérale" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "Liens" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -msgid "Blocked" -msgstr "Bloqué" - -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" -msgstr "%s utilisateurs bloqués" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "Ajouter ou modifier la conception de %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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 "" +msgid "What's up, %s?" +msgstr "Quoi de neuf, %s ?" -#: lib/noticeform.php:154 lib/noticeform.php:180 +#: lib/noticeform.php:180 msgid "Attach" msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 +#: lib/noticeform.php:184 msgid "Attach a file" msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 +#: lib/noticelist.php:478 msgid "in context" msgstr "dans le contexte" -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "ID de l'utilisateur" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "Aide sur la recherche" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, php-format -msgid "%s is not a valid color!" -msgstr "&s n'est pas une couleur valide !" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Aucun marquage trouvé." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Messages envoyés à %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "la description est trop longue (140 caractères maximum)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Vous êtes déjà membre de ce groupe " - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Vous n'êtes pas membre de ce groupe." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Impossible de retirer l'utilisateur %s du groupe %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Groupes de %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Groupes de %s" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Actions du groupe" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Avatar supprimé." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Format de fichier d'image non supporté." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Photo" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "la description est trop longue (140 caractères maximum)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Statuts de %1$s dans %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "L'utilisateur suivi n'existe pas." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Non autorisé." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Impossible de convertir les jetons de requête en jetons d'accès" - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Version inconnue du protocole OMB" +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Répondre à ce statut" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Statut non trouvé. " +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Répondre" -#: actions/getfile.php:79 -msgid "Cannot read file." -msgstr "Impossible de lire le fichier" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Envoyer un clin d'œil à cet utilisateur" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Statuts de %1$s dans %2$s!" +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Clin d'œil" -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Cette page n'est pas disponible dans " +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Envoyer un clin d'œil à cet utilisateur" -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " -"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" -"action.openidlogin%%)." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Erreur lors de l'insertion du nouveau profil" -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Statuts de %1$s dans %2$s!" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Erreur lors de l'insertion de l'avatar" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Statuts correspondant au(x) terme(s) \"%s\"" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Erreur lors de l'insertion du profil distant" -#: actions/oembed.php:157 +#: lib/oauthstore.php:345 #, fuzzy -msgid "content type " -msgstr "Contenu" +msgid "Duplicate notice" +msgstr "Supprimer ce statut" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Impossible d'insérer un nouvel abonnement." -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Personnel" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Décrivez vos intérêts en 140 caractères" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Réponses" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Décrivez qui vous êtes et vos " +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favoris" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "La bio est trop longue (140 caractères maximum)." +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Utilisateur" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Boîte de réception" -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "URL de profil invalide (aucun document YADIS)." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Vos messages reçus" -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Boîte d'envoi" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Impossible d'obtenir le jeton de requête." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Vos messages envoyés" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Flux des statuts de %s" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Marquages des statuts de %s" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Flux des statuts de %s" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Abonnements" -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Flux des statuts de %s" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Tous les abonnements" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Message adressé à %1$s le %2$s" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Abonnés" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Flux pour les amis de %s (RSS 1.0)" +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Tous les abonnés" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Flux pour les amis de %s (RSS 2.0)" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "ID de l'utilisateur" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Flux pour les amis de %s (Atom)" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Membre depuis" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Tous les groupes" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Boîte d'envoi de %s" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Public" -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Statut publié" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Groupes d'utilisateurs" -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Cette page n'est pas disponible dans " +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Marquages récents" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Flux des statuts de %s" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "En vedette" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Populaires" -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " -"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " -"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +#: lib/searchaction.php:120 +msgid "Search site" +msgstr "Rechercher sur le site" -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " -"Vérifiez les instructions du site pour savoir comment compléter " -"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" +#: lib/searchaction.php:162 +msgid "Search help" +msgstr "Aide sur la recherche" -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " -"les instructions du site pour savoir comment refuser pleinement " -"l'abonnement. " +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Personnes" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Chercher des personnes sur ce site" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Statut" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Chercher dans le contenu des statuts" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Rechercher des groupes sur ce site" -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Section sans titre" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Impossible de lire l'URL '%s'" +#: lib/section.php:106 +msgid "More..." +msgstr "Plus..." -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Format d'image invalide pour '%s'" +#: lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "Abonnements de %s" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Impossible de rediriger vers le serveur : %s" +#: lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" +msgstr "Abonnés de %s" -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Licence du logiciel StatusNet" +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "Groupes de %s" -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Clin d'œil envoyé" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(aucun)" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" -"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " -"entré %d." +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "Cet utilisateur vous a bloqué." -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" -"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " -"entré %d." +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Impossible de s'abonner." -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Répondre à ce statut" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Impossible d'abonner une autre personne à votre profil." -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Problème lors de l'enregistrement du statut." +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Pas abonné !" -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Aucun code de confirmation." +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Impossible de cesser l'abonnement" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Aucun" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Utilisateurs les plus actifs" -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Ouvrir une session" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Ne plus suivre cet utilisateur" -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Sélectionnez un fournisseur de téléphone mobile" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Désabonnement" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Description du groupe ou du sujet (140 caractères maximum)" +#: lib/userprofile.php:116 +msgid "Edit Avatar" +msgstr "Modifier l'avatar" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Description du groupe ou du sujet (140 caractères maximum)" +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Actions de l'utilisateur" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Nouveau statut" +#: lib/userprofile.php:248 +msgid "Edit profile settings" +msgstr "Modifier les paramètres du profil" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s a ajouté un de vos messages à ses favoris" +#: lib/userprofile.php:249 +msgid "Edit" +msgstr "Modifier" -#: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n" -"\n" -"Dans le cas où vous l’auriez oublié, vous pouvez lire le texte de votre " -"message ici :\n" -"\n" -"%3$s\n" -"\n" -"Vous pouvez consulter la liste des favoris de %1$s ici :\n" -"\n" -"%4$s\n" -"\n" -"Cordialement,\n" -"%5$s\n" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Envoyer un message à cet utilisateur" -#: lib/mail.php:611 +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Message " + +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "il y a quelques secondes " + +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "il y a 1 minute" + +#: lib/util.php:848 #, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgid "about %d minutes ago" +msgstr "il y a %d minutes" -#: lib/mail.php:613 +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "il y a 1 heure" + +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgid "about %d hours ago" +msgstr "il y a %d heures" -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "de" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "il y a 1 jour" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "il y a %d jours" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Impossible de récupérer le flux public." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "il y a 1 mois" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Supprimer ce statut" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "il y a %d mois" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Contenu invalide" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "il y a environ 1 an" -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Impossible de créer le formulaire OpenID : %s" +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "&s n'est pas une couleur valide !" -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Ce fichier est trop lourd. La taille maximale est %d." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Impossible de déchiffrer ce message." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Ceci n'est pas un utilisateur inscrit." + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Désolé, ceci n'est pas votre adresse de courriel entrant." + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Désolé, la réception de courriels n'est pas permise. " diff --git a/locale/ga/LC_MESSAGES/statusnet.mo b/locale/ga/LC_MESSAGES/statusnet.mo index 3b59ecb0d..e419f3b44 100644 Binary files a/locale/ga/LC_MESSAGES/statusnet.mo and b/locale/ga/LC_MESSAGES/statusnet.mo differ diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index cc008d93c..0433383fe 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -5,3119 +5,2029 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:31+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:13+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Buscar \"%s\" na Liña de tempo" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Non existe a etiqueta." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" agás esta informción privada: contrasinal, dirección de correo electrónico, " -"dirección IM, número de teléfono." +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Ningún usuario." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " dende " +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s e amigos" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Chíos que respostan a %2$s" +msgid "%s and friends" +msgstr "%s e amigos" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s invitoute a unirse a él en %2$s." +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Fonte para os amigos de %s" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s invitoute a unirte a el en %2$s (%3$s).\n" -"\n" -"%2$s é un servizo de microbloguexo que che permite manterte actualizado coa " -"xente que coñeces e xente na que tes interese.\n" -"\n" -"Tamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña " -"con xente que te coñece. Tamén está moi ben para coñecer xente que comparte " -"os mesmos intereses..\n" -"\n" -"%1$s dixo:\n" -"\n" -"%4$s\n" -"\n" -"Podes ollar a súa páxina de perfil %1$s's en %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"Se queres probar, fai clic na ligazón de abaixo para aceptar a invitación..\n" -"\n" -"%6$s\n" -"\n" -"Se non, pois ignora esta mensaxe. Pero aló ti, aquí se pasa moi ben.\n" -"\n" -"Saudiños, %2$s\n" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Fonte para os amigos de %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s está a escoitar os teus chíos %2$s." +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Fonte para os amigos de %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s está a escoitar os teus chíos en %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentamente todo seu,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "Hai %1$s chíos en resposta a chíos dende %2$s / %3$s." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "Estado de %1$s en %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s Fio Público" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s e amigos" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "Liña de tempo pública de %s" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Actualizacións dende %1$s e amigos en %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "Estado de %s" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Método da API non atopado" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Liña de tempo de %s" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Este método require un POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "%s chíos de calquera!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de " -"como confirmar a túa dirección de correo.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "O usuario non ten perfil." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** é un servizo de microbloguexo." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Bloqueo de usuario fallido." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Os contribuíntes deben atribuiselles polo nome completo ou apodo." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Desbloqueo de usuario fallido." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Non hai mensaxes de texto!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." msgstr "" -"De 1 a 64 letras minúsculas ou números, nin espazos nin signos de " -"puntuación. Requerido." +"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 ou máis caracteres" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Usuario destinatario non atopado." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 ou máis caracteres, non o esquenzas!" +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 ou máis caracteres. Requerido." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensaxes directas para %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " -"engadir a %s como contacto para que che poida enviar mensaxes." +msgid "All the direct messages sent from %s" +msgstr "Tódalas mensaxes directas enviadas dende %s" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Enviouseche un código de confirmación á dirección de correo que engadiches. " -"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " -"debes seguir." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Mensaxes directas para %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Enviouseche o código de confirmación ó número de teléfono que engadiches. " -"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " -"debes seguir." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Tódalas mensaxes directas enviadas a %s" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Método da API non atopado" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Non se atopou un estado con ese ID." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Método da API en contrución." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Este chío xa é un favorito!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Sobre" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Non se puido crear o favorito." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Aceptar" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Este chío non é un favorito!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Engadir" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Non se puido eliminar o favorito." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Engadir dirección OpenID" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Engadir ou eliminar OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Enderezo" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Direccións dos amigos que queres invitar (unha por liña)" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Tódalas subscricións" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Tódalas actualizacións de %s" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "" +"Dous identificadores de usuario ou nomes_en_pantalla deben ser " +"proporcionados." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Non se pudo recuperar a liña de tempo publica." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Sesión xa iniciada" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Non se puido atopar ningún estado" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "¡Xa está subscrito!." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Non se puido crear o favorito." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Estas seguro que queres eliminar este chío?" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Non se puido crear o favorito." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Subscrición de autorización." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Non se pode gardar a subscrición." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Endiante acceder automáticamente, coidado en equipos compartidos!" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " -"non humáns)" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Non é un alcume válido." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Avatar actualizado." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "A páxina persoal semella que non é unha URL válida." + +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "O nome completo é demasiado longo (max 255 car)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:261 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Description is too long (max %d chars)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "A localización é demasiado longa (max 255 car.)." + +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." msgstr "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta inválida: '%s'" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/" -"GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " -"a %s á túa lista de contactos?)" -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Agardando a confirmación neste número de teléfono." +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "Xa estas suscrito a estes usuarios:" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Antes »" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Bio" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "O teu Bio é demasiado longo (max 140 car.)." +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "Non estás suscrito a ese perfil" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Non se pode eliminar este chíos." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Non se pode ler a URL do avatar de '%s'" +msgid "%s groups" +msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Non se pode gardar a contrasinal." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Outras opcions" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Cancelar" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Usuarios" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Non se pode instanciar o obxecto consumidor de OpenID." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%1s non é unha orixe fiable." -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Non se pode normalizar ese identificador de Jabber" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Este método require un POST ou DELETE." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Esa dirección de correo non se pode normalizar " +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Non deberías eliminar o estado de outro usuario" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Modificado" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar actualizado." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Cambiar a xestión de email" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Non existe ningún estado con esa ID atopada." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Cambiar contrasinal" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Cambiar contrasinal" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Non atopado" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Configuración de perfil" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Confirmar" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de ficheiro de imaxe non soportado." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Confirmar enderezo" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favoritos dende %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Confirmación cancealada." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s updates favorited by %s / %s." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Código de confirmación." +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "Liña de tempo de %s" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Confirmation code not found." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Chíos que respostan a %2$s" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n" -"\n" -"* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n" -"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para " -"enviar os teus chíos a través de mensaxería instantánea.\n" -"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que " -"comparta os teus intereses. \n" -"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%" -"%) para decirlle a outros máis sobre ti. \n" -"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que " -"podes facer aquí. \n" -"\n" -"Grazas por rexistrarte e esperamos que laretexes moito." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Conectar" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Conectar con unha conta existente" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Contacto" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "Hai %1$s chíos en resposta a chíos dende %2$s / %3$s." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Non se pode crear o formulario OpenID: %s" +msgid "%s public timeline" +msgstr "Liña de tempo pública de %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Non podes seguir a este usuario: %s xa está na túa lista." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Non podes seguir a este usuario: o Usuario non se atopa." +msgid "%s updates from everyone!" +msgstr "%s chíos de calquera!" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Non se pode redireccionar ao servidor: %s" +msgid "Notices tagged with %s" +msgstr "Chíos tagueados con %s" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Non se pode gardar a información do avatar" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Non se pode gardar a nova información do perfil" +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non atopado" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Outro usuario non se puido suscribir a ti." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Ningún documento." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "No se pode suscribir." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Sen alcume." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Sen tamaño." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Non se pode convertir o token da petición a tokens de acceso." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Tamaño inválido." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Non se pode eliminar a confirmación de email." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Non se pode eliminar a subscrición." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Non se puido atopar ningún estado" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Usuario sen un perfil que coincida." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Non se puido recoller o token de petición." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Configuracións de Twitter" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Non se puido inserir o código de confirmación." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Non se puido inserir a nova subscrición." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Non se puido gardar o perfil." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#, fuzzy +msgid "Delete" +msgstr "eliminar" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Non se puido actualizar o usuario para autosuscrición." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Subir" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Non se puido actualizar o rexistro de usuario." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Non se puido actualizar o usuario." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Crear" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Envio de formulario non esperada." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Crear un novo usuario con este alcume." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Crear nova conta" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Creando nova conta para OpenID que xa ten un usuario." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Avatar actualizado." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Direccións Jabber/GTalk confirmadas." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Acounteceu un fallo ó actualizar o avatar." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Número de teléfono actual confirmado mediante SMS." +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Direccións de correo confirmadas actualmente." +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "Sen alcume." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Actual" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Non é o usuario" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#: actions/blockedfromgroup.php:90 #, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Erro ó inserir o hashtag na BD: %s" +msgid "%s blocked profiles" +msgstr "" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 +#: actions/blockedfromgroup.php:93 #, php-format -msgid "DB error inserting reply: %s" -msgstr "Erro ó inserir a contestación na BD: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Eliminar chío" +msgid "%s blocked profiles, page %d" +msgstr "" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Correo Electrónico" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Desbloqueo de usuario fallido." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Enderezo de correo" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Desbloquear" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Configuración de Correo" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "Bloquear usuario" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "O enderezo de correo xa existe." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Non está logueado." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Confirmar correo electrónico" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Non se especificou ningún perfil." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Dirección de correo, coma \"Nomede Usuario@exemplo.org\"" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Non se atopou un perfil con ese ID." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Enderezos de correo" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Bloquear usuario" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Insire o teu alcume ou enderezo de correo." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Insire o código que recibiches no teu teléfono." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "No" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Erro no token de autorización." +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Acounteceu un erro conectando o usuario ó OpenID." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Si" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Acounteceu un erro ó conectar co usuario" +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Acounteceu un erro ó inserir o avatar" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Xa bloqueaches a este usuario." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Acounteceu un erro ó inserir o novo perfil" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Erro ao gardar información de bloqueo." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Aconteceu un erro ó inserir o perfil remoto" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Acounteceu un erro gardando a confirmación de enderezo." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Acounteceu un erro gardando o perfil remoto." - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Acounteceu un erro ó gardar o perfil." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Acounteceu un erro gardando o usuario." +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Chíos dende SMS" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Acounteceu un erro gardando o usuario: é inválido." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Sen código de confirmación." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Acounteceu un erro configurando o usuario." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Confirmation code not found." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Acounteceu un erro actualizando o usuario" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "¡Ese código de confirmación non é para ti!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Acounteceu un erro actualizando o perfil remoto" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Tipo de enderezo %s non recoñecido" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Acounteceu un erro co código de confirmación." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Esa dirección xa foi confirmada." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Alcume existente" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Non se puido actualizar o usuario." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "Preguntas frecuentes" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Non se pode eliminar a confirmación de email." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Acounteceu un fallo ó actualizar o avatar." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Confirmar enderezo" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Fonte para os amigos de %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "A dirección \"%s\" xa foi confirmada para a túa conta." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Fonte para as contestacións de %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmación." -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Fonte para a etiqueta %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Chíos" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Atopar no contido dos chíos" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Ningún chío." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Atopar xente neste sitio" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Non se pode eliminar este chíos." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " -"contrasinal antes de cambiar as túas preferenzas." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Nome completo" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "O nome completo é demasiado longo (max 255 car)." +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Axuda" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Eliminar chío" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Persoal" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Estas seguro que queres eliminar este chío?" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Páxina persoal" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Non se pode eliminar este chíos." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "A páxina persoal semella que non é unha URL válida." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy +msgid "Delete this notice" +msgstr "Eliminar chío" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Quero enviar chíos dende o mail." +#: actions/deletenotice.php:157 +#, fuzzy +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..." -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Este chío non é un favorito!" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Enderezo de IM" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Engadir a favoritos" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Configuracións de IM" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Ningún documento." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " -"teu OpenID." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de " -"embaixo e fai clic en \"Engadir\"." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +#, fuzzy +msgid "You must be logged in to create a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " -"enderezo de correo que configuraches na túa conta." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#, fuzzy +msgid "You must be an admin to edit the group" +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Correo Entrante" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Dirección de correo entrante eliminada." +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Contrasinal actual incorrecta" +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Non se puido actualizar o usuario." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Usuario ou contrasinal incorrectos." +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "Configuracións gardadas." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo " -"de correo da túa conta." +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Configuración de Correo" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid avatar URL '%s'" -msgstr "URL do avatar '%s' inválido" +msgid "Manage how you get email from %%site.name%%." +msgstr "Xestina como recibir correo dende %%site.name%%." -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Dirección de correo Inválida: %s" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Enderezo" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Páxina persoal '%s' inválida" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Direccións de correo confirmadas actualmente." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "URL de licenza '%s' inválida" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Eliminar" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Contido do chío inválido" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/" +"GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " +"a %s á túa lista de contactos?)" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Enderezo de chío inválido" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Cancelar" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Enderezo de chío inválido" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Enderezo de correo" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Enderezo de perfil inválido '%s'." +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Dirección de correo, coma \"Nomede Usuario@exemplo.org\"" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Enderezo de perfil inválido (formato incorrecto)" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Engadir" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Enderezo de perfil inválido devolto polo servidor." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Correo Entrante" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Tamaño inválido." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Enviar un correo a esta dirección para enviar novos chíos." -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Usuario ou contrasinal inválidos." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Crear unha nova dirección de correo para enviar, elimina a antiga." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Invitación(s) enviada(s)." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Novo" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Invitación(s) enviada(s) á seguinte xente:" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Preferencias" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Invitar" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Envíame chios de novas suscricións por email." -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Invitar a novos usuarios" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Correndo o software de microblogaxe [StatusNet](http://status.net/), versión " -"%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." -"fsf.org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "O identificador de Jabber xa pertence a outro usuario." +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, " -"asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no " -"GTalk." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Permitir aos amigos darme toques e enviarme correos electrónicos." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Linguaxe" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Quero enviar chíos dende o mail." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "A Linguaxe é demasiado longa (max 50 car.)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publicar unha MicroID dende a miña dirección de correo." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Localización" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Gardar" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "A localización é demasiado longa (max 255 car.)." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Preferencias gardadas." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Inicio de sesión" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Non se inseriu unha dirección de correo" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Acceder con unha conta [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Esa dirección de correo non se pode normalizar " -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" -"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" -"action.openidlogin%%). " +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Non é unha dirección de correo válida" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Sair" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Xa é o teu enderezo de correo." -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Nome máis longo, preferiblemente o teu nome \"real\"" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Este enderezo de correo xa pertence a outro usuario." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "¿Perdeches a contrasinal?" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Non se puido inserir o código de confirmación." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Crear unha nova dirección de correo para enviar, elimina a antiga." +#: actions/emailsettings.php:358 +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 "" +"Enviouseche un código de confirmación á dirección de correo que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Xestina como recibir correo dende %%site.name%%." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Non hai ningunha confirmación pendente para cancelar." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Membro dende" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Esa é unha enderezo IM incorrecto." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Microblogue por %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Confirmación cancealada." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre " -"email e non está listada aquí, envianos unha mensaxe para incluilo en %s." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Esa non é a túa dirección de correo." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "O meu texto e arquivos están dispoñibles baixo licenza " +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Enderezo eliminado." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Novo" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Non hai direccións de correo entrante" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Nova dirección de email para posterar en %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Non se puido actualizar o rexistro de usuario." + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Dirección de correo entrante eliminada." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Engadida nova dirección de correo entrante." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Novo alcume" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Chíos populares" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Novo chío" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Chíos populares" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nova contrasinal" +#: actions/favorited.php:79 +#, fuzzy +msgid "The most popular notices on the site right now." +msgstr "Amoa os tags máis populares dende a semana pasada" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "A nova contrasinal gardouse correctamente. Xa estas logueado." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Alcume" +#: 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/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Chíos favoritos de %s" -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Alcume non permitido." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Alcume de usuario que queres" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Este chío xa é un favorito!" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Alcume ou email" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Desactivar favorito" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "No" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Usuarios destacados" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Sen Identificador de Jabber." +#: actions/featured.php:71 +#, fuzzy, php-format +msgid "Featured users, page %d" +msgstr "Usuarios destacados" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Sen petición de autorización!" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Non se seleccionou unha operadora." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Novo chío" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Non se inseriu ningún código" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Novo chío" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Sen código de confirmación." +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Sen contido!" +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Non se inseriu unha dirección de correo" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "¡Non esperaba esa resposta!" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Sen id." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "O usuario que está sendo escoitado non existe." -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Non hai direccións de correo entrante" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "¡Podes empregar a túa subscrición local!" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "O servidor remoto non proporcionou un alcume." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Este usuario non che permite suscribirte a el." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Sen alcume." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non está autorizado." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Non hai ningunha confirmación pendente para cancelar." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Non se pode convertir o token da petición a tokens de acceso." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Non hai ningún número de teléfono." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versión de protocolo OMB descoñecida." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "O servidor non voltou ningún enderezo de perfil." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Acounteceu un erro actualizando o perfil remoto" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Non hai un enderezo de correo rexistrado para ese usuario." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Non existe a etiqueta." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "¡Non se atoparon peticións!" +#: actions/getfile.php:75 +msgid "No such file." +msgstr "Ningún chío." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Non se atoparon resultados" +#: actions/getfile.php:79 +msgid "Cannot read file." +msgstr "Bloqueo de usuario fallido." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Sen tamaño." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Non se especificou ningún perfil." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Non se atopou un estado con ese ID." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Non existe ningún estado con esa ID atopada." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "O usuario bloqueoute." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Ningún OpenID." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "%1s non é unha orixe fiable." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Ningún documento." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuario" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Ningún chío." +#: actions/groupblock.php:155 +#, fuzzy, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Ningún código de recuperación." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Ningunha subscripción" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Ningún usuario." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Non hai ningún usuario con isa dirección de correo ou nome de usuario." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Ninguén para amosar" +#: actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Non é un código de recuperación." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Non é un usuario rexistrado." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Non se puido actualizar o usuario." -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Non é un formato de datos soportado." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Non se puideron gardar os teus axustes de Twitter!" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Non é un Identificador de Jabber válido" +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferencias gardadas." -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Non é un enderezo OpenID válido." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Non é unha dirección de correo válida" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Non é un enderezo de correo válido." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Non é un alcume válido." +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Avatar actualizado." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Non é un enderezo de perfil válido (servizos incorrectos)." +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Acounteceu un fallo ó actualizar o avatar." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Non é un enderezo de perfil válido (non está definido ningún XRDS)." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Non é unha imaxe ou está corrupta." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Non está autorizado." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "¡Non esperaba esa resposta!" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Bloquear" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Non atopado" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "Bloquear usuario" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Non está logueado." +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Non está suscrito!" +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Procura de Chíos" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Fonte de chíos para %s" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "O chío non ten perfil" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Chíos" +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Procurar xente." -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Chíos tagueados con %s" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Non se atoparon resultados" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Contrasinal antiga" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Configuración de conta OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Auto-Envío de OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Acceso OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "Enderezo OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Autenticación OpenID cancelada." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "A autenticación OpenID fallou: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Fallou o OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID eliminado." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Configuracións de OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Opcionalmente engadir unha mensaxe persoal á invitación." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Carga parcial." +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Contrasinal" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "A contrasinal e a súa confirmación non coinciden." +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "A contrasinal debe ter 6 caracteres ou máis." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Crear nova conta" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Petición de recuperación de contrasinal" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Contrasinal gardada." +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O usuario bloqueoute." -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "As contrasinais non coinciden" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Acounteceu un erro borrando o bloqueo." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Xente" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Configuracións de IM" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Procurar xente" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos]" +"(%%doc.im%%). Configura a túa conta e configuracións abaixo." -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Procurar xente." +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Persoal" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Direccións Jabber/GTalk confirmadas." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Mensaxe persoal" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Enderezo de IM" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, " +"asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no " +"GTalk." + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Enviarme advertencias a través de Jabber/GTalk." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Preferencias" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferencias gardadas." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Linguaxe preferida" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Privacidade" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Aconteceu un erro ó gardar o chío." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Perfil" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Enderezo de perfil" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Publicar unha MicroID dende a miña dirección de Jabber/GTalk." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Configuración de perfil" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Sen Identificador de Jabber." -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Perfil descoñecido" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Non se pode normalizar ese identificador de Jabber" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Sindicación do Fio Público" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Non é un Identificador de Jabber válido" -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Liña de tempo pública" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Xa é a túa conta de Jabber." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Publicar unha MicroID dende a miña dirección de Jabber/GTalk." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "O identificador de Jabber xa pertence a outro usuario." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publicar unha MicroID dende a miña dirección de correo." +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " +"engadir a %s como contacto para que che poida enviar mensaxes." -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Tags Recentes" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Esa non é a túa conta Jabber." -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Recuperar" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Band. Entrada para %s - páxina %d" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Recuperar contrasinal" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Band. Entrada para %s" -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Código de recuperación para usuario descoñecido." +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Rexistrar" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Non se permite o rexistro neste intre." +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Xa estas rexistrado!!" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Dirección de correo Inválida: %s" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Rexeitar" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Invitación(s) enviada(s)." -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Lembrarme" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Invitar a novos usuarios" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Non hai ningún perfil que coincida co perfil remoto" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Xa estas suscrito a estes usuarios:" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Suscrición remota" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Eliminar" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "Esta xente xa é usuario e ti foches suscrito automaticamente a eles:" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Eliminar OpenID" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Invitación(s) enviada(s) á seguinte xente:" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/invite.php:150 msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -"Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres " -"eliminalo, primeiro engade outro enderezo OpenID." +"Notificaráseche cando os teus invitados acepten unha invitación e se " +"rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Respostas" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "Replies to %s" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Enderezos de correo" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Restaurar" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Direccións dos amigos que queres invitar (unha por liña)" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Restaurar contrasinal" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Mensaxe persoal" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Opcionalmente engadir unha mensaxe persoal á invitación." -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Número de Teléfono do SMS" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Enviar" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Configuracións de SMS" +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s invitoute a unirse a él en %2$s." -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Confirmación de SMS" +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s invitoute a unirte a el en %2$s (%3$s).\n" +"\n" +"%2$s é un servizo de microbloguexo que che permite manterte actualizado coa " +"xente que coñeces e xente na que tes interese.\n" +"\n" +"Tamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña " +"con xente que te coñece. Tamén está moi ben para coñecer xente que comparte " +"os mesmos intereses..\n" +"\n" +"%1$s dixo:\n" +"\n" +"%4$s\n" +"\n" +"Podes ollar a súa páxina de perfil %1$s's en %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"Se queres probar, fai clic na ligazón de abaixo para aceptar a invitación..\n" +"\n" +"%6$s\n" +"\n" +"Se non, pois ignora esta mensaxe. Pero aló ti, aquí se pasa moi ben.\n" +"\n" +"Saudiños, %2$s\n" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Igual que a contrasinal de enriba" +#: actions/joingroup.php:60 +#, fuzzy +msgid "You must be logged in to join a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "A mesma contrasinal que arriba. Requerido." +#: actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "Xa estas suscrito a estes usuarios:" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Gardar" +#: actions/joingroup.php:128 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Buscar" +#: actions/joingroup.php:135 lib/command.php:239 +#, fuzzy, php-format +msgid "%s joined group %s" +msgstr "%s / Favoritos dende %s" + +#: actions/leavegroup.php:60 +#, fuzzy +msgid "You must be logged in to leave a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Procura no Fío" +#: actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Non estás suscrito a ese perfil" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de " -"procura por espazos, deben ter 3 caracteres ou máis." +#: actions/leavegroup.php:119 lib/command.php:278 +#, fuzzy +msgid "Could not find membership record." +msgstr "Non se puido actualizar o rexistro de usuario." + +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +msgid "%s left group %s" msgstr "" -"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " -"Separa os termos por espazos; deben ter 3 caracteres ou máis." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Selecciona unha operadora" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Enviar" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Sesión xa iniciada" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Enviar un correo a esta dirección para enviar novos chíos." +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Contido do chío inválido" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Envíame chios de novas suscricións por email." +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Usuario ou contrasinal incorrectos." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Enviarme advertencias a través de Jabber/GTalk." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Acounteceu un erro configurando o usuario." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme " -"grandes facturas." +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Inicio de sesión" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/login.php:243 +msgid "Login to site" msgstr "" -"Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Configuración" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Alcume" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Configuracións gardadas." +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Contrasinal" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Amoa os tags máis populares dende a semana pasada" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Lembrarme" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Alguen máis ten ese enderezo OpenID." +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Endiante acceder automáticamente, coidado en equipos compartidos!" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Algo gordo aconteceu." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "¿Perdeches a contrasinal?" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Aivá, non se permiten correos entrantes." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " +"contrasinal antes de cambiar as túas preferenzas." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Ise é un enderezo IM incorrecto." +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" +"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" +"action.openidlogin%%). " -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Fonte" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Estatísticas" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "OpenID almacenado non atopado" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Subscribir" +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Subscritores" +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Subscrición autorizada" +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Sen estado actual" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Subscrición rexeitada" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Subscricións" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nova mensaxe" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Tags" +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Non podes enviar mensaxes a este usurio." -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Texto" +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Sen contido!" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Procura de texto" +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Non se especificou ningún destinatario" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Ese OpenID non che pertence." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't 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/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Esa dirección xa foi confirmada." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Non hai mensaxes de texto!" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "¡Ese código de confirmación non é para ti!" +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Mensaxe directo a %s enviado" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Este enderezo de correo xa pertence a outro usuario." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Erro de Ajax" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Ese arquivo é demasiado grande." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Xa é a túa conta de Jabber." - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Xa é o teu enderezo de correo." - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Xa é o teu número de teléfono." - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Esa non é a túa conta Jabber." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Esa non é a túa dirección de correo." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Novo chío" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Ese non é o teu número de teléfono." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Chío publicado" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Esa é unha enderezo IM incorrecto." +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de " +"procura por espazos, deben ter 3 caracteres ou máis." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Ese é un número de confirmación incorrecto." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Procura de texto" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "O número de teléfono xa pertence a outro usuario." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Buscar \"%s\" na Liña de tempo" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "A dirección \"%s\" xa foi confirmada para a túa conta." +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Actualizacións dende %1$s en %2$s!" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Enderezo eliminado." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 +#: actions/nudge.php:85 msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"A subscrición foi autorizada, pero ningunha URL de retorno foi " -"proporcionada. Comproba coas instruccións do sitio para máis detalles en " -"como autorizar subscricións. O teu token de subscrición é:" +"Este usuario non permite toques, ou non confirmou ainda o seu correo " +"electrónico." -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Toque enviado" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Esa é a xente que escoita os chíos de %s." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Toque enviado!" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Esa é a xente que escoita os teus chíos." +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "O chío non ten perfil" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Esa é a xente á que lle estas a escoitar os seus chíos" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "Esta xente xa é usuario e ti foches suscrito automaticamente a eles:" +msgid "%1$s's status on %2$s" +msgstr "Estado de %1$s en %2$s" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Ese código de confirmación é demasiado antigo. Comeza de novo." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Conectar" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/oembed.php:160 +msgid "Only " msgstr "" -"Este formulario debería enviarse automáticamente. Se non é así, fai clic no " -"botón de enviar para ir ó teu proveedro OpenID." - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Esta é a primeria vez que accedes a %s polo que debes conectar o teu " -"enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou " -"conectarte cunha existente, se xa tes unha." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Este método require un POST ou DELETE." -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Este método require un POST." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Non é un formato de datos soportado." -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Procurar xente" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Fuso Horario" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Procura de Chíos" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Fuso Horario non seleccionado" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Outros axustes" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%" -"action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de " -"microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil " -"abaixo." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Xestionár axustes varios." -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -"Dous identificadores de usuario ou nomes_en_pantalla deben ser " -"proporcionados." -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Servizo de acortado automático a usar." -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuración de perfil" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Envio de formulario non esperada." +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Restauración de contrasinal non esperada." +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Sistema de acortamento de URLs demasiado longo (max 50 car.)." -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Acción descoñecida" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "Band. Saída para %s - páxina %d" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Versión de protocolo OMB descoñecida." +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Band. Saída para %s" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Aínda que especifiques outro, os contidos de este sitio teñen copyright " -"polos contribuidores e está dispoñible baixo " +"Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Tipo de enderezo %s non recoñecido" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Cambiar contrasinal" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Eliminar subscrición" +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Cambiar contrasinal" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Versión OMB non soportada" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Contrasinal gardada." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Formato de ficheiro de imaxe non soportado." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Contrasinal antiga" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Chíos dende SMS" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nova contrasinal" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Chíos dende mensaxería instantánea (IM)" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 ou máis caracteres" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Actualizacións dende %1$s e amigos en %2$s!" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Confirmar" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualizacións dende %1$s en %2$s!" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "igual á contrasinal de enriba" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Subir" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Modificado" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a " -"imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. " -"Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e " -"que queiras compartir." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Subir unha nova imaxe de usuario" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Emprega este formulario para invitar ós teus amigos e colegas a empregar " -"este servizo." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "A contrasinal debe ter 6 caracteres ou máis." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Empregado só para actualizacións, novidades, e recuperación de contrasinais" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "O usuario que está sendo escoitado non existe." - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "O usuario non ten perfil." - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Alcume de usuario" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Usuario non atopado." +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "As contrasinais non coinciden" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "En que fuso horario estas normalmente?" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Contrasinal actual incorrecta" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "¿Que pasa, %s?" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Acounteceu un erro gardando o usuario: é inválido." -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Non se pode gardar a contrasinal." -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Tipo de imaxe incorrecto para '%s'" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Contrasinal gardada." -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/peoplesearch.php:52 #, php-format -msgid "Wrong size image at '%s'" -msgstr "Tamaño de imaxe incorrecto en '%s'" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Si" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "¡Xa tes esa OpenID!" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " -"atrás... Quedas avisado!" - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "¡Xa estás logueado!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Xa estas suscrito a estes usuarios:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "No tes amigos con un usuario específico." +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Podes cambiar a túa contrasinal aquí. ¡Escolle unha boa!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Procurar xente." -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Podes crear unha nova conta para comezar a escribir chíos." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "%s non é unha etiqueta de xente válida" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Podes recibir mensaxes SMS a través do email dende %%site.name%%." +msgid "Users self-tagged with %s - page %d" +msgstr "Usuarios auto-etiquetados como %s - páxina %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Podes eliminar unha OpenID da túa conta facendo clic no botón marcado " -"\"Eliminar\"." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Contido do chío inválido" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos]" -"(%%doc.im%%). Configura a túa conta e configuracións abaixo." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Configuración de perfil" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3125,2298 +2035,1987 @@ msgstr "" "Podes actualizar a túa información do perfil persoal aquí para que a xente " "che poida coñecer mellor." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "¡Podes empregar a túa subscrición local!" +#: actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "Perfil descoñecido" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Non podes rexistrarte se non estas de acordo coa licenza." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Non nos enviaches ese perfil" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Nome completo" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Tes unha nova dirección de envio de mensaxes en %1$s.\n" -"\n" -"Envia unha mensaxe a %2$s para enviar novas mensaxes.\n" -"\n" -"Hai máis instruccións de envio en %3$s.\n" -"\n" -"Sempre teu...,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Páxina persoal" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Non deberías eliminar o estado de outro usuario" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Notificaráseche cando os teus invitados acepten unha invitación e se " -"rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Foiches identificado. Insire unha nova contrasinal abaixo." +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Bio" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "O teu enderezo OpenID" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Localización" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "O teu alcume neste servidor, ou o teu enderezo rexistrado." +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Tags" + +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " -"conta. Xestina os teus OpenIDs asociados dende aquí." +"Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " +"coma ou espazo" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "fai uns segundos" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Linguaxe" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "fai %d días" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Linguaxe preferida" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "fai %d horas" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Fuso Horario" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "fai %d minutos" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "En que fuso horario estas normalmente?" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "fai %d meses" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " +"non humáns)" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "fai un día" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "fai un minuto" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Fuso Horario non seleccionado" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "fai un mes" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "A Linguaxe é demasiado longa (max 50 car.)." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "fai un ano" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etiqueta inválida: '%s'" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "fai unha hora" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Non se puido actualizar o usuario para autosuscrición." -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "eliminar" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Non se puido gardar o perfil." -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "en contestación a..." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Non se puideron gardar as etiquetas." -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "contestar" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Configuracións gardadas." -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "igual á contrasinal de enriba" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "tipo de ficheiro non soportado" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Non se pudo recuperar a liña de tempo publica." -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Despois" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Liña de tempo pública" -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Liña de tempo pública" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Este chío non é un favorito!" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Sindicación do Fio Público" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Non se puido eliminar o favorito." +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Sindicación do Fio Público" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Gostame" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Sindicación do Fio Público" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Este chío xa é un favorito!" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Non se puido crear o favorito." - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Non me gosta" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "%s chíos favoritos" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 +#: actions/public.php:179 #, php-format -msgid "Feed of favorite notices of %s" -msgstr "Fonte para os chíos favoritos de %s" +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Band. Entrada para %s - páxina %d" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/public.php:186 #, php-format -msgid "Inbox for %s" -msgstr "Band. Entrada para %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -"Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:233 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "Acabas de invitar a %1$s a unirse a %2$s (%3$s).\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Loguearse automáticamente no futuro:" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Por razóns de seguranza, por favor re-insire o teu " - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Accede co teu nome de usuario e contrasinal." - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Non se especificou ningún destinatario" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Non podes enviar mensaxes a este usurio." +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/public.php:238 +#, fuzzy, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -"Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón " -"vante tomar por tolo." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Non é o usuario" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nova mensaxe" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Chío sen perfil coincidente" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Se queres engadir un enderezo OpenID á tua conta, " - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Eliminando o teu enderezo OpenID serache imposíbel acceder!" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Podes eliminar un identificador OpenID da túa conta " +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Sindicación do Fio Público" -#: actions/outbox.php:28 actions/outbox.php:58 +#: actions/publictagcloud.php:63 #, php-format -msgid "Outbox for %s - page %d" -msgstr "Band. Saída para %s - páxina %d" +msgid "These are most popular recent tags on %s " +msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/publictagcloud.php:69 #, php-format -msgid "Outbox for %s" -msgstr "Band. Saída para %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -"Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Usuario sen un perfil que coincida." +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Ese código de confirmación é demasiado antigo." +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "¡Xa estás logueado!" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Se esquenciches ou perdeches a túa" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Ningún código de recuperación." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Foches identificado. Insire unha " +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Non é un código de recuperación." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "O teu alcume neste servidor, " +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Código de recuperación para usuario descoñecido." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instruccións para recuperar a túa contrasinal." +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Acounteceu un erro co código de confirmación." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "A nova contrasinal foi gardada correctamente." +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Ese código de confirmación é demasiado antigo. Comeza de novo." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "A contrasinal debe ter 6 caracteres ou máis." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Deberías recibir unha mensaxe no teu email nun intre, con" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Para suscribirse, podes [loguearte](%%action.login%%)," +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Fonte para os favoritos de %s" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Non se pode " +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "O teu alcume neste servidor, ou o teu enderezo rexistrado." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Non existe a mensaxe." +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Recuperar" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Só o emisor e destinatario poden ler esta mensaxe." +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Restaurar contrasinal" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Mensaxe de %1$s en %2$s" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Recuperar contrasinal" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Mensaxe dende %1$s en %2$s" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Petición de recuperación de contrasinal" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Enviar unha mensaxe" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Acción descoñecida" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Operadora móbil do teu teléfono." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 ou máis caracteres, non o esquenzas!" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Mensaxes directas para %s" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Igual que a contrasinal de enriba" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Tódalas mensaxes directas enviadas a %s" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Restaurar" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Mensaxes Directas que Enviaches." +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Insire o teu alcume ou enderezo de correo." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Tódalas mensaxes directas enviadas dende %s" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Non hai ningún usuario con isa dirección de correo ou nome de usuario." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Non hai mensaxes de texto!" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Non hai un enderezo de correo rexistrado para ese usuario." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Usuario destinatario non atopado." +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Acounteceu un erro gardando a confirmación de enderezo." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." +"As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo " +"de correo da túa conta." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favoritos dende %s" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Restauración de contrasinal non esperada." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s updates favorited by %s / %s." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "A contrasinal debe ter 6 caracteres ou máis." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s gustoulle o teu chío" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "A contrasinal e a súa confirmación non coinciden." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n" -"\n" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "A nova contrasinal gardouse correctamente. Xa estas logueado." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " -"Twitter." +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Desculpa, só se pode rexistrar a xente con invitación." -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Configuracións de Twitter" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Acounteceu un erro co código de confirmación." -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Conta de Twitter" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Conta de twitter verificada actualmente." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Nome de usuario en Twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Sen espazos, anda..." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Contrasinal de Twitter" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Enviar automáticamente os meus chíos a Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Enviar respostas \"@\" locais a Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Suscribirse ós meus amigos de Twitter aquí." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e " -"sen espazos." +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Xa estas rexistrado!!" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Non se puideron verificar as túas credenciais en Twitter!" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Rexistrar" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Non se permite o rexistro neste intre." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Non se puideron gardar os teus axustes de Twitter!" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Non podes rexistrarte se non estas de acordo coa licenza." -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Configuracións de Twitter gardadas." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Esa non é a túa conta de Twitter." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Non se puido eliminar o usuario." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Conta de Twitter " - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Non se puideron gardar as preferenzas de Twitter." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Preferencias de Twitter gardadas." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Comproba estes datos para asegurarte" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "A suscrición foi autorizada, pero non" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "A suscrición foi rexeitada, pero non" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Resultados do comando" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Non é un enderezo de correo válido." -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Comando completo" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "O enderezo de correo xa existe." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Comando fallido" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Usuario ou contrasinal inválidos." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Desculpa, este comando todavía non está implementado." +#: actions/register.php:342 +#, fuzzy +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " +"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " +"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Subscricións: %1$s.\n" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"De 1 a 64 letras minúsculas ou números, nin espazos nin signos de " +"puntuación. Requerido." -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "O usuario non ten último chio." +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 ou máis caracteres. Requerido." -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Chío marcado coma favorito." +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "A mesma contrasinal que arriba. Requerido." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Correo Electrónico" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Nome completo: %s" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Empregado só para actualizacións, novidades, e recuperación de contrasinais" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Ubicación: %s" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Nome máis longo, preferiblemente o teu nome \"real\"" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Páxina persoal: %s" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "O meu texto e arquivos están dispoñibles baixo licenza " -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Sobre: %s" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 +#: actions/register.php:537 #, php-format -msgid "Direct message to %s sent" -msgstr "Mensaxe directo a %s enviado" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Erro ó enviar a mensaxe directa." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n" +"\n" +"* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n" +"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para " +"enviar os teus chíos a través de mensaxería instantánea.\n" +"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que " +"comparta os teus intereses. \n" +"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%" +"%) para decirlle a outros máis sobre ti. \n" +"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que " +"podes facer aquí. \n" +"\n" +"Grazas por rexistrarte e esperamos que laretexes moito." -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Especifica o nome do usuario ó que queres suscribirte" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de " +"como confirmar a túa dirección de correo.)" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/remotesubscribe.php:98 #, php-format -msgid "Subscribed to %s" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%" +"action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de " +"microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil " +"abaixo." + +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Suscrición remota" + +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" msgstr "Suscrito a %s" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Especifica o nome de usuario ó que queres deixar de seguir" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Alcume de usuario" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Desuscribir de %s" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Alcume de usuario que queres" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Comando non implementado." +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Enderezo de perfil" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Notificación desactivada." +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "No se pode desactivar a notificación." +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Subscribir" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Notificación habilitada." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Enderezo de perfil inválido (formato incorrecto)" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Non se pode activar a notificación." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Comandos:\n" +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Este é un perfil local! Rexístrate para suscribirte." -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Non se pode inserir unha mensaxe." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Non se puido recoller o token de petición." -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Non se puido actualizar a mensaxe coa nova URI." +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Replies to %s" + +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "Replies to %s" + +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Fonte de chíos para %s" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Usuario sen perfil coincidente no sistema." +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Fonte de chíos para %s" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/replies.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"Tes novas direccións de posteo en %1$s.\n" -"\n" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/replies.php:203 #, php-format -msgid "New private message from %s" -msgstr "%s enviouche unha nova mensaxe privada" +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/replies.php:205 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"%1$s (%2$s) enviouche unha mensaxe privada:\n" -"\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Só o usuario pode ler os seus propios buzóns." +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensaxe de %1$s en %2$s" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Este formulario debería enviarse automáticamente él mesmo." +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Chíos favoritos de %s" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Favoritos" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Non se pode " -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showfavorites.php:170 #, php-format -msgid "%s's favorite notices" -msgstr "Chíos favoritos de %s" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuario" +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Fonte para os amigos de %s" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Band. Entrada" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "As túas mensaxes entrantes" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Band. Saída" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "As túas mensaxes enviadas" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Opcións de integración de Twitter" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "A" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Non se puido analizaar a mensaxe." - -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s e amigos" - -#: actions/avatarsettings.php:76 -#, fuzzy -msgid "You can upload your personal avatar." -msgstr "Podes actualizar a túa información do perfil persoal aquí" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Fonte para os amigos de %s" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -#, fuzzy -msgid "Avatar settings" -msgstr "Configuracións de Twitter" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Fonte para os amigos de %s" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: actions/showfavorites.php:205 +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/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -#, fuzzy -msgid "There was a problem with your session token. " -msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -#, fuzzy -msgid "Lost our file." -msgstr "Bloqueo de usuario fallido." +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 +#: actions/showgroup.php:218 #, fuzzy -msgid "Unknown file type" -msgstr "tipo de ficheiro non soportado" +msgid "Group profile" +msgstr "Non existe o perfil." -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Non se especificou ningún perfil." +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Non se atopou un perfil con ese ID." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +#, fuzzy +msgid "Note" +msgstr "Chíos" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Bloquear usuario" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/block.php:129 +#: actions/showgroup.php:293 #, fuzzy -msgid "Are you sure you want to block this user? " -msgstr "Estas seguro que queres eliminar este chío?" +msgid "Group actions" +msgstr "Outras opcions" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Xa bloqueaches a este usuario." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Fonte de chíos para %s" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Erro ao gardar información de bloqueo." +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Fonte de chíos para %s" -#: actions/confirmaddress.php:159 +#: actions/showgroup.php:340 #, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "Enderezo eliminado." +msgid "Notice feed for %s group (Atom)" +msgstr "Fonte de chíos para %s" -#: actions/deletenotice.php:73 -#, fuzzy -msgid "You are about to permanently delete a notice. " -msgstr "" -"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " -"atrás... Quedas avisado!" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Band. Saída para %s" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Engadir a favoritos" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +#, fuzzy +msgid "Members" +msgstr "Membro dende" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +#, fuzzy +msgid "(None)" +msgstr "(nada)" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -#, fuzzy -msgid "You must be logged in to create a group." -msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Estatísticas" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +#: actions/showgroup.php:432 #, fuzzy -msgid "No nickname" -msgstr "Sen alcume." +msgid "Created" +msgstr "Crear" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "Non é o usuario" +#: actions/showgroup.php:448 +#, fuzzy, 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 "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -#, fuzzy -msgid "You must be an admin to edit the group" -msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" +#: actions/showgroup.php:454 +#, fuzzy, 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 "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Non existe a mensaxe." -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "O teu Bio é demasiado longo (max 140 car.)." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Só o emisor e destinatario poden ler esta mensaxe." -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "Non se puido actualizar o usuario." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Mensaxe de %1$s en %2$s" + +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Mensaxe dende %1$s en %2$s" -#: actions/editgroup.php:226 actions/editgroup.php:269 +#: actions/shownotice.php:90 #, fuzzy -msgid "Options saved." -msgstr "Configuracións gardadas." +msgid "Notice deleted." +msgstr "Chío publicado" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showstream.php:73 #, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Agardando a confirmación neste número de teléfono." +msgid " tagged %s" +msgstr "Chíos tagueados con %s" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#, fuzzy -msgid "Make a new email address for posting to; " -msgstr "Nova dirección de email para posterar en %s" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%s, page %d" +msgstr "Band. Entrada para %s - páxina %d" -#: actions/emailsettings.php:157 -#, fuzzy -msgid "Send me email when someone " -msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Permitir aos amigos darme toques e enviarme correos electrónicos." +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "Este enderezo de correo xa pertence a outro usuario." +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Fonte de chíos para %s" -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " -"engadir a %s como contacto para que che poida enviar mensaxes." +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Fonte de chíos para %s" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Band. Saída para %s" -#: actions/facebookhome.php:196 +#: actions/showstream.php:191 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "Sen contido!" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/showstream.php:234 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -#, fuzzy -msgid "After" -msgstr "« Despois" +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -#, fuzzy -msgid "Before" -msgstr "Antes »" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Configuracións de SMS" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/smssettings.php:69 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Podes recibir mensaxes SMS a través do email dende %%site.name%%." -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -#, fuzzy -msgid "Invitations have been sent to the following users:" -msgstr "Invitación(s) enviada(s) á seguinte xente:" +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, fuzzy, php-format -msgid "You have been invited to %s" -msgstr "%s douche un toque" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Número de teléfono actual confirmado mediante SMS." -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Fonte para os amigos de %s" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Agardando a confirmación neste número de teléfono." -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Código de confirmación." -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Insire o código que recibiches no teu teléfono." + +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Número de Teléfono do SMS" + +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" + +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" +"Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme " +"grandes facturas." -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Non se puido eliminar o usuario de Facebook." +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Non hai ningún número de teléfono." -#: actions/facebooksettings.php:65 -#, fuzzy -msgid "There was a problem saving your sync preferences!" -msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Non se seleccionou unha operadora." -#: actions/facebooksettings.php:67 -#, fuzzy -msgid "Sync preferences saved." -msgstr "Preferencias gardadas." +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Xa é o teu número de teléfono." -#: actions/facebooksettings.php:90 -#, fuzzy -msgid "Automatically update my Facebook status with my notices." -msgstr "Enviar automáticamente os meus chíos a Twitter." +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "O número de teléfono xa pertence a outro usuario." -#: actions/facebooksettings.php:97 +#: actions/smssettings.php:347 #, fuzzy -msgid "Send \"@\" replies to Facebook." -msgstr "Enviar respostas \"@\" locais a Twitter." +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 "" +"Enviouseche o código de confirmación ó número de teléfono que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." + +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Ese é un número de confirmación incorrecto." + +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Ese non é o teu número de teléfono." -#: actions/facebooksettings.php:106 +#: actions/smssettings.php:465 #, fuzzy -msgid "Prefix" -msgstr "Perfil" +msgid "Mobile carrier" +msgstr "Selecciona unha operadora" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Selecciona unha operadora" -#: actions/facebooksettings.php:124 +#: actions/smssettings.php:476 #, php-format -msgid "If you would like %s to automatically update " +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 "" +"Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre " +"email e non está listada aquí, envianos unha mensaxe para incluilo en %s." -#: actions/facebooksettings.php:147 -#, fuzzy -msgid "Sync preferences" -msgstr "Preferencias" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Desactivar favorito" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Non se inseriu ningún código" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Chíos populares" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Non estás suscrito a ese perfil" -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "Chíos populares" +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Non se pode gardar a subscrición." -#: actions/favorited.php:79 -#, fuzzy -msgid "The most popular notices on the site right now." -msgstr "Amoa os tags máis populares dende a semana pasada" +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Non é usuario local." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Usuarios destacados" +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Suscrito" -#: actions/featured.php:71 +#: actions/subscribers.php:50 #, fuzzy, php-format -msgid "Featured users, page %d" -msgstr "Usuarios destacados" +msgid "%s subscribers" +msgstr "Subscritores" -#: actions/featured.php:99 +#: actions/subscribers.php:52 #, php-format -msgid "A selection of some of the great users on %s" +msgid "%s subscribers, page %d" msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Este usuario non che permite suscribirte a el." - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Esa é a xente que escoita os teus chíos." -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Esa é a xente que escoita os chíos de %s." -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "Avatar actualizado." - -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "Acounteceu un fallo ó actualizar o avatar." - -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/subscribers.php:110 #, php-format -msgid "%s group members" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/groupmembers.php:96 +#: actions/subscribers.php:114 #, php-format -msgid "%s group members, page %d" +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Tódalas subscricións" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "Tódalas subscricións" -#: actions/groups.php:64 +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Esa é a xente á que lle estas a escoitar os seus chíos" + +#: actions/subscriptions.php:69 #, php-format -msgid "Groups, page %d" -msgstr "" +msgid "These are the people whose notices %s listens to." +msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." -#: actions/groups.php:90 +#: actions/subscriptions.php:121 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Crear nova conta" - -#: actions/groupsearch.php:57 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " +msgid "%s is not listening to anyone." +msgstr "%1$s está a escoitar os teus chíos %2$s." -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "Procurar xente." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber." -#: actions/imsettings.php:70 -#, fuzzy -msgid "You can send and receive notices through " -msgstr "Non podes enviar mensaxes a este usurio." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Non estás logueado." -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Enviarme advertencias a través de Jabber/GTalk." +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Non hai argumento id." -#: actions/imsettings.php:321 +#: actions/tagother.php:65 #, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Sen código de confirmación." +msgid "Tag %s" +msgstr "Tags" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/tagother.php:77 lib/userprofile.php:75 #, fuzzy -msgid "You must be logged in to join a group." -msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" +msgid "User profile" +msgstr "O usuario non ten perfil." -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "" + +#: actions/tagother.php:141 #, fuzzy -msgid "You are already a member of that group" -msgstr "Xa estas suscrito a estes usuarios:" +msgid "Tag user" +msgstr "Tags" + +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma " +"ou espazo" + +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a " +"ti." + +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Non se poden gardar as etiquetas." + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Usa este formulario para engadir etiquetas aos teus seguidores ou aos que " +"sigues." -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "Non podes seguir a este usuario: o Usuario non se atopa." +msgid "Notices tagged with %s, page %d" +msgstr "Chíos tagueados con %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "%s / Favoritos dende %s" +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Fonte de chíos para %s" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -#, fuzzy -msgid "You must be logged in to leave a group." -msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Fonte de chíos para %s" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." +#: actions/tagrss.php:35 +msgid "No such tag." msgstr "Non existe a etiqueta." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -#, fuzzy -msgid "You are not a member of that group." -msgstr "Non estás suscrito a ese perfil" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Método da API en contrución." -#: actions/leavegroup.php:100 -#, fuzzy -msgid "You may not leave a group while you are its administrator." -msgstr "Non deberías eliminar o estado de outro usuario" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Non hai identificador de perfil na peticion." -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -#, fuzzy -msgid "Could not find membership record." -msgstr "Non se puido actualizar o rexistro de usuario." +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Non se atopou un perfil con ese ID." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "Non podes seguir a este usuario: o Usuario non se atopa." +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "De-suscribido" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Sen estado actual" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Subscrición de autorización." -#: actions/newgroup.php:53 -msgid "New group" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "Non se puido crear o favorito." +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Aceptar" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "Could not set group membership." -msgstr "Non se pode gardar a subscrición." +msgid "Subscribe to this user" +msgstr "Suscrito a %s" -#: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy -msgid "That's too long. " -msgstr "Ese arquivo é demasiado grande." +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Rexeitar" -#: actions/newmessage.php:134 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Don't send a message to yourself; " -msgstr "Non podes enviar mensaxes a este usurio." +msgid "Reject this subscription" +msgstr "Subscrición de autorización." -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Chío publicado" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Sen petición de autorización!" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Erro de Ajax" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Subscrición autorizada" -#: actions/nudge.php:85 +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -"Este usuario non permite toques, ou non confirmou ainda o seu correo " -"electrónico." - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Toque enviado" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Toque enviado!" +"A subscrición foi autorizada, pero ningunha URL de retorno foi " +"proporcionada. Comproba coas instruccións do sitio para máis detalles en " +"como autorizar subscricións. O teu token de subscrición é:" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy -msgid "OpenID login" -msgstr "Acceso OpenID" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Subscrición rexeitada" -#: actions/openidsettings.php:128 +#: actions/userauthorization.php:261 #, fuzzy -msgid "Removing your only OpenID " -msgstr "Eliminar OpenID" - -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Outros axustes" - -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Xestionár axustes varios." - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Auto-acortado de URL" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Servizo" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Servizo de acortado automático a usar." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Sistema de acortamento de URLs demasiado longo (max 50 car.)." +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/passwordsettings.php:69 -#, fuzzy -msgid "Change your password." -msgstr "Cambiar contrasinal" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -#, fuzzy -msgid "Password change" -msgstr "Contrasinal gardada." +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/userauthorization.php:322 #, php-format -msgid "Not a valid people tag: %s" -msgstr "%s non é unha etiqueta de xente válida" +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/userauthorization.php:338 #, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Usuarios auto-etiquetados como %s - páxina %d" +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/peopletag.php:91 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" -"Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar " -"intereses comuns, características, aficións ou traballos." +msgid "Can’t read avatar URL ‘%s’." +msgstr "Non se pode ler a URL do avatar de '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imaxe incorrecto para '%s'" + +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Sen id." -#: actions/profilesettings.php:91 actions/profilesettings.php:99 +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #, fuzzy -msgid "Profile information" -msgstr "Perfil descoñecido" +msgid "Profile design" +msgstr "Configuración de perfil" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -"Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " -"coma ou espazo" -#: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " -"non humáns)" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/usergroups.php:64 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Etiqueta inválida: '%s'" +msgid "%s groups, page %d" +msgstr "" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Non se puideron gardar as etiquetas." +#: actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/usergroups.php:153 #, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Liña de tempo pública" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Non se pudo recuperar a liña de tempo publica." +msgid "%s is not a member of any group." +msgstr "%1s non é unha orixe fiable." -#: actions/public.php:220 +#: actions/usergroups.php:158 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "Sindicación do Fio Público" +#: classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" -#: actions/publictagcloud.php:63 +#: classes/File.php:147 #, php-format -msgid "These are most popular recent tags on %s " +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Desculpa, só se pode rexistrar a xente con invitación." +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Non se pode inserir unha mensaxe." -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Non podes rexistrarte se non estas de acordo coa licenza." +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Non se puido actualizar a mensaxe coa nova URI." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Erro ó inserir o hashtag na BD: %s" -#: actions/register.php:368 +#: classes/Notice.php:179 #, fuzzy -msgid "1-64 lowercase letters or numbers, " +msgid "Problem saving notice. Too long." +msgstr "Aconteceu un erro ó gardar o chío." + +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." + +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." -#: actions/register.php:382 actions/register.php:386 +#: classes/Notice.php:194 #, fuzzy -msgid "Used only for updates, announcements, " +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -"Empregado só para actualizacións, novidades, e recuperación de contrasinais" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Tes restrinxido o envio de chíos neste sitio." -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Aconteceu un erro ó gardar o chío." -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "Erro ó inserir a contestación na BD: %s" + +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensaxe de %1$s en %2$s" + +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Perfil" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Configuración de perfil" -#: actions/register.php:432 +#: lib/accountsettingsaction.php:112 #, fuzzy -msgid " except this private data: password, " -msgstr "" -" agás esta informción privada: contrasinal, dirección de correo electrónico, " -"dirección IM, número de teléfono." +msgid "Upload an avatar" +msgstr "Acounteceu un fallo ó actualizar o avatar." -#: actions/register.php:471 -#, fuzzy, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Cambiar contrasinal" + +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Cambiar a xestión de email" + +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." -#: actions/register.php:495 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "(You should receive a message by email " -msgstr "(Deberías recibir unha mensaxe no teu email nun intre, con" +msgid "Design your profile" +msgstr "O usuario non ten perfil." -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Este é un perfil local! Rexístrate para suscribirte." +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Outros" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "Replies to %s" +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Outras opcions" -#: actions/showfavorites.php:79 +#: lib/action.php:144 #, fuzzy, php-format -msgid "%s favorite notices, page %d" -msgstr "%s chíos favoritos" +msgid "%s - %s" +msgstr "%s (%s)" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy -msgid "Group profile" -msgstr "Non existe o perfil." +#: lib/action.php:430 +msgid "Home" +msgstr "Persoal" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 +#: lib/action.php:432 #, fuzzy -msgid "Note" -msgstr "Chíos" +msgid "Account" +msgstr "Sobre" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 +#: lib/action.php:432 #, fuzzy -msgid "Group actions" -msgstr "Outras opcions" - -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "Fonte de chíos para %s" +msgid "Change your email, avatar, password, profile" +msgstr "Cambiar contrasinal" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -#, fuzzy -msgid "Members" -msgstr "Membro dende" +#: lib/action.php:435 +msgid "Connect" +msgstr "Conectar" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 +#: lib/action.php:435 #, fuzzy -msgid "(None)" -msgstr "(nada)" +msgid "Connect to services" +msgstr "Non se pode redireccionar ao servidor: %s" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invitar" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/action.php:440 lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." -#: actions/showmessage.php:98 -#, fuzzy -msgid "Only the sender and recipient " -msgstr "Só o emisor e destinatario poden ler esta mensaxe." - -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, fuzzy, php-format -msgid "%s, page %d" -msgstr "Band. Entrada para %s - páxina %d" +#: lib/action.php:445 +msgid "Logout" +msgstr "Sair" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Perfil" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 +#: lib/action.php:450 #, fuzzy -msgid "User profile" -msgstr "O usuario non ten perfil." +msgid "Create an account" +msgstr "Crear nova conta" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: lib/action.php:453 +msgid "Login to the site" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -#, fuzzy -msgid "User actions" -msgstr "Outras opcions" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Axuda" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 +#: lib/action.php:456 #, fuzzy -msgid "Send a direct message to this user" -msgstr "Non podes enviar mensaxes a este usurio." +msgid "Help me!" +msgstr "Axuda" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -#, fuzzy -msgid "Message" -msgstr "Nova mensaxe" +#: lib/action.php:459 +msgid "Search" +msgstr "Buscar" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "Subscritores" +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "" -#: actions/showstream.php:533 lib/profileaction.php:235 +#: lib/action.php:480 #, fuzzy -msgid "All groups" -msgstr "Tódalas etiquetas" +msgid "Site notice" +msgstr "Novo chío" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/smssettings.php:128 +#: lib/action.php:612 #, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" +msgid "Page notice" +msgstr "Novo chío" -#: actions/smssettings.php:162 +#: lib/action.php:714 #, fuzzy -msgid "Send me notices through SMS; " -msgstr "Enviarme advertencias a través de Jabber/GTalk." +msgid "Secondary site navigation" +msgstr "Navegación de subscricións" -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Agardando a confirmación neste número de teléfono." +#: lib/action.php:721 +msgid "About" +msgstr "Sobre" -#: actions/smssettings.php:453 actions/smssettings.php:465 -#, fuzzy -msgid "Mobile carrier" -msgstr "Selecciona unha operadora" +#: lib/action.php:723 +msgid "FAQ" +msgstr "Preguntas frecuentes" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Non estás suscrito a ese perfil" +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Non se pode gardar a subscrición." +#: lib/action.php:730 +msgid "Privacy" +msgstr "Privacidade" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Non é usuario local." +#: lib/action.php:732 +msgid "Source" +msgstr "Fonte" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Suscrito" +#: lib/action.php:734 +msgid "Contact" +msgstr "Contacto" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "Subscritores" +#: lib/action.php:736 +msgid "Badge" +msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "Esa é a xente que escoita os chíos de %s." - -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "Esa é a xente que escoita os chíos de %s." +#: lib/action.php:767 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." +"broughtby%%](%%site.broughtbyurl%%). " -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Tódalas subscricións" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "Tódalas subscricións" +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Correndo o software de microblogaxe [StatusNet](http://status.net/), versión " +"%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)." -#: actions/subscriptions.php:65 +#: lib/action.php:785 #, fuzzy -msgid "These are the people whose notices " -msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." - -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "Esa é a xente que escoita os chíos de %s." - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber." +msgid "Site content license" +msgstr "Atopar no contido dos chíos" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Chíos tagueados con %s" +#: lib/action.php:794 +#, fuzzy +msgid "All " +msgstr "Todos" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Non estás logueado." - -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Non hai argumento id." - -#: actions/tagother.php:65 -#, fuzzy, php-format -msgid "Tag %s" -msgstr "Tags" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" -#: actions/tagother.php:141 +#: lib/action.php:1062 #, fuzzy -msgid "Tag user" -msgstr "Tags" +msgid "After" +msgstr "« Despois" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma " -"ou espazo" +#: lib/action.php:1070 +#, fuzzy +msgid "Before" +msgstr "Antes »" -#: actions/tagother.php:164 +#: lib/action.php:1119 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -"Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a " -"ti." - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Non se poden gardar as etiquetas." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -"Usa este formulario para engadir etiquetas aos teus seguidores ou aos que " -"sigues." - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Non existe a etiqueta." -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Microblog etiquetado con %s" +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Bloqueo de usuario fallido." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Desbloqueo de usuario fallido." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non atopado" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Resultados do comando" -#: actions/twittersettings.php:71 -#, fuzzy -msgid "Add your Twitter account to automatically send " -msgstr "" -"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " -"Twitter." +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Comando completo" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Nome de usuario en Twitter" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Comando fallido" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Contrasinal de Twitter" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Desculpa, este comando todavía non está implementado." -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Amigos de Twitter" +#: lib/command.php:88 +#, 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." -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/twittersettings.php:341 +#: lib/command.php:99 #, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." +msgid "Nudge sent to %s" +msgstr "Toque enviado" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Acounteceu un erro borrando o bloqueo." +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" +"Suscripcións: %1$s\n" +"Suscriptores: %2$s\n" +"Chíos: %3$s" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Non hai identificador de perfil na peticion." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Non se atopou un perfil con ese ID." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "O usuario non ten último chio." -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "De-suscribido" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Chío marcado coma favorito." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: lib/command.php:315 #, php-format -msgid "%s groups" -msgstr "" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: lib/command.php:318 #, php-format -msgid "%s groups, page %d" -msgstr "" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." +msgid "Fullname: %s" +msgstr "Nome completo: %s" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " -"duns minutos." +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Ubicación: %s" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Tes restrinxido o envio de chíos neste sitio." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Páxina persoal: %s" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "Acounteceu un fallo ó actualizar o avatar." +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "Sobre: %s" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Outros" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Outras opcions" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Erro ó enviar a mensaxe directa." -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/command.php:431 #, fuzzy, php-format -msgid "%s - %s" -msgstr "%s (%s)" +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "Non se pode eliminar este chíos." -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Aconteceu un erro ó gardar o chío." -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Especifica o nome do usuario ó que queres suscribirte" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Suscrito a %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Account" -msgstr "Sobre" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Especifica o nome de usuario ó que queres deixar de seguir" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Change your email, avatar, password, profile" -msgstr "Cambiar contrasinal" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Desuscribir de %s" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Comando non implementado." -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Notificación desactivada." -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "No se pode desactivar a notificación." + +#: lib/command.php:574 +msgid "Notification on." +msgstr "Notificación habilitada." + +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Non se pode activar a notificación." + +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Non se pode crear o formulario OpenID: %s" + +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +#: lib/command.php:613 #, fuzzy -msgid "Create an account" -msgstr "Crear nova conta" +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Comandos:\n" +"on - activar as notificacións\n" +"off - desactivar as notificacións\n" +"help - mostrar esta axuda\n" +"follow - suscribirse ao usuario\n" +"leave - de-suscribirse do usuario\n" +"d - mensaxe directa ao usuario\n" +"get - lelo último chío do usuario\n" +"whois - amosar informacion do usuario\n" +"fav - engadilo último chío do usuario como favorito\n" +"stats - amosalas túas estatísticas\n" +"stop - o mesmo que 'off'\n" +"quit - o mesmo que 'off'\n" +"sub - o mesmo que 'follow'\n" +"unsub - o mesmo que 'leave'\n" +"last - o mesmo que 'get'\n" +"on - non implementado por agora.\n" +"off - non implementado por agora.\n" +"nudge - non implementado por agora.\n" +"invite - non implementado por agora.\n" +"track - non implementado por agora.\n" +"untrack - non implementado por agora.\n" +"track off - non implementado por agora.\n" +"untrack all - non implementado por agora.\n" +"tracks - non implementado por agora.\n" +"tracking - non implementado por agora.\n" -#: lib/action.php:341 lib/action.php:418 +#: lib/common.php:191 #, fuzzy -msgid "Login with OpenID" -msgstr "Ningún OpenID." +msgid "No configuration file found. " +msgstr "Sen código de confirmación." -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Axuda" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "Novo chío" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Novo chío" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Chíos dende mensaxería instantánea (IM)" + +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Chíos dende SMS" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#: lib/designsettings.php:105 #, fuzzy -msgid "Secondary site navigation" -msgstr "Navegación de subscricións" +msgid "Upload file" +msgstr "Subir" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +#: lib/designsettings.php:170 #, fuzzy -msgid "All " -msgstr "Todos" +msgid "Change colours" +msgstr "Cambiar contrasinal" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 +#: lib/designsettings.php:191 #, fuzzy -msgid "Block this user" -msgstr "Bloquear usuario" +msgid "Content" +msgstr "Conectar" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Bloquear" +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Buscar" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Texto" + +#: lib/designsettings.php:230 #, fuzzy -msgid "Disfavor this notice" -msgstr "%s chíos favoritos" +msgid "Links" +msgstr "Lista" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "Crear nova conta" +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 +#: lib/disfavorform.php:114 lib/disfavorform.php:140 #, fuzzy -msgid "Published" -msgstr "Público" +msgid "Disfavor this notice" +msgstr "%s chíos favoritos" #: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy msgid "Favor this notice" msgstr "%s chíos favoritos" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Gostame" + #: lib/feedlist.php:64 msgid "Export data" msgstr "" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + #: lib/galleryaction.php:121 msgid "Filter tags" msgstr "Filtrar etiquetas" @@ -5425,67 +4024,88 @@ msgstr "Filtrar etiquetas" msgid "All" msgstr "Todos" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecciona unha operadora" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Etiqueta" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Elixe unha etiqueta para reducila lista" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" msgstr "Ir" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + #: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Subscricións" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquear usuario" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Sair" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "" @@ -5500,10 +4120,45 @@ msgid "Tags in %s group's notices" msgstr "" #: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " +msgid "This page is not available in a media type you accept" msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Carga parcial." + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro." + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Non é unha imaxe ou está corrupta." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Formato de ficheiro de imaxe non soportado." + +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Bloqueo de usuario fallido." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +#, fuzzy +msgid "Unknown file type" +msgstr "tipo de ficheiro non soportado" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Novo chío" + #: lib/joinform.php:114 #, fuzzy msgid "Join" @@ -5514,120 +4169,343 @@ msgstr "Inicio de sesión" msgid "Leave" msgstr "Gardar" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Accede co teu nome de usuario e contrasinal." -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Crear nova conta" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Só o usuario pode ler os seus propios buzóns." + +#: lib/mailbox.php:139 +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/mail.php:175 +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " dende " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Confirmar correo electrónico" + +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" +"Ei, %s.\n" +"\n" +"Alguén introduceu o teu correo electrónico en %s.\n" +"\n" +"Se foches ti, e queres confirmar a entrada, pincha na seguinte URL:\n" +"\n" +"\t%s\n" +"\n" +"Se non, simplemente ignora esta mensaxe.\n" +"\n" +"Grazas polo teu tempo, \n" +"%s\n" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está a escoitar os teus chíos %2$s." -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s está a escoitar os teus chíos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente todo seu,\n" +"%4$s.\n" + +#: lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Ubicación: %s" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Páxina persoal: %s" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Nova dirección de email para posterar en %s" + +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Tes unha nova dirección de envio de mensaxes en %1$s.\n" +"\n" +"Envia unha mensaxe a %2$s para enviar novas mensaxes.\n" +"\n" +"Hai máis instruccións de envio en %3$s.\n" +"\n" +"Sempre teu...,\n" +"%4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "Estado de %s" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Confirmación de SMS" + +#: lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s douche un toque" -#: lib/mail.php:465 -#, fuzzy, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -"%1$s (%2$s) enviouche unha mensaxe privada:\n" + +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "%s enviouche unha nova mensaxe privada" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" "\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s gustoulle o teu chío" -#: lib/mail.php:555 +#: lib/mail.php:556 #, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -"A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" "\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -#, fuzzy -msgid "From" -msgstr " dende " - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -#, fuzzy -msgid "Send a direct notice" -msgstr "Eliminar chío" +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "Dar un toque" +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "6 ou máis caracteres" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy -msgid "in reply to" -msgstr "en contestación a..." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -#, fuzzy -msgid "Reply to this notice" -msgstr "Non se pode eliminar este chíos." +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -#, fuzzy -msgid "Reply" -msgstr "contestar" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -#, fuzzy -msgid "Delete this notice" -msgstr "Eliminar chío" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -#, fuzzy -msgid "Delete" -msgstr "eliminar" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Non se pudo recuperar a liña de tempo publica." + +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: lib/messageform.php:120 +#, fuzzy +msgid "Send a direct notice" +msgstr "Eliminar chío" + +#: lib/messageform.php:146 +msgid "To" +msgstr "A" + +#: lib/messageform.php:162 lib/noticeform.php:173 +#, fuzzy +msgid "Available characters" +msgstr "6 ou máis caracteres" + +#: lib/noticeform.php:145 +#, fuzzy +msgid "Send a notice" +msgstr "Dar un toque" + +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "¿Que pasa, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Sen contido!" + +#: lib/noticelist.php:498 +#, fuzzy +msgid "Reply to this notice" +msgstr "Non se pode eliminar este chíos." + +#: lib/noticelist.php:499 +#, fuzzy +msgid "Reply" +msgstr "contestar" #: lib/nudgeform.php:116 #, fuzzy @@ -5644,43 +4522,143 @@ msgstr "Toque enviado" msgid "Send a nudge to this user" msgstr "Non podes enviar mensaxes a este usurio." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Acounteceu un erro ó inserir o novo perfil" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Acounteceu un erro ó inserir o avatar" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Aconteceu un erro ó inserir o perfil remoto" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Eliminar chío" + +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Non se puido inserir a nova subscrición." + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Persoal" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Respostas" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favoritos" + +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuario" + +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Band. Entrada" + +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "As túas mensaxes entrantes" + +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Band. Saída" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "As túas mensaxes enviadas" + #: lib/personaltagcloudsection.php:56 #, fuzzy, php-format msgid "Tags in %s's notices" msgstr "O usuario non ten último chio." -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(nada)" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Subscricións" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Tódalas subscricións" + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Subscritores" + +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Subscritores" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuario" + +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Membro dende" + +#: lib/profileaction.php:235 +#, fuzzy +msgid "All groups" +msgstr "Tódalas etiquetas" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +#: lib/publicgroupnav.php:78 msgid "Public" msgstr "Público" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +#: lib/publicgroupnav.php:82 #, fuzzy msgid "User groups" msgstr "Usuarios" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etiquetas recentes" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +#: lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacado" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +#: lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Buscar" + +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Buscar" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Xente" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Atopar xente neste sitio" + #: lib/searchgroupnav.php:82 #, fuzzy msgid "Notice" msgstr "Chíos" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Atopar no contido dos chíos" + #: lib/searchgroupnav.php:85 #, fuzzy msgid "Find groups on this site" @@ -5690,38 +4668,62 @@ msgstr "Atopar xente neste sitio" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Suscrición remota" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Suscrito a %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, fuzzy, php-format -msgid "Invite friends and colleagues to join you on %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(nada)" + +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -"Emprega este formulario para invitar ós teus amigos e colegas a empregar " -"este servizo." -#: lib/subs.php:53 lib/subs.php:52 +#: lib/subs.php:52 msgid "User has blocked you." msgstr "O usuario bloqueoute." -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -#, fuzzy -msgid "Subscribe to this user" -msgstr "Suscrito a %s" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "No se pode suscribir." + +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Outro usuario non se puido suscribir a ti." + +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Non está suscrito!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Non se pode eliminar a subscrición." #: lib/tagcloudsection.php:56 #, fuzzy @@ -5732,2327 +4734,110 @@ msgstr "No" msgid "Top posters" msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -#, fuzzy -msgid "Unblock this user" -msgstr "Bloquear usuario" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Desbloquear" - #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 #, fuzzy msgid "Unsubscribe from this user" msgstr "Desuscribir de %s" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Fonte para os amigos de %s" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Fonte para os amigos de %s" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Fonte para os amigos de %s" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Eliminar subscrición" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/userprofile.php:116 #, fuzzy -msgid "You and friends" -msgstr "%s e amigos" +msgid "Edit Avatar" +msgstr "Avatar" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Podes actualizar a túa información do perfil persoal aquí" +#: lib/userprofile.php:236 +#, fuzzy +msgid "User actions" +msgstr "Outras opcions" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/userprofile.php:248 #, fuzzy -msgid "Avatar deleted." -msgstr "Avatar actualizado." +msgid "Edit profile settings" +msgstr "Configuración de perfil" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " -"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " -"ser notificado de ningunha resposta-@ del." -#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#: lib/userprofile.php:272 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " -"atrás... Quedas avisado!" +msgid "Send a direct message to this user" +msgstr "Non podes enviar mensaxes a este usurio." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#: lib/userprofile.php:273 #, fuzzy -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..." +msgid "Message" +msgstr "Nova mensaxe" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "fai uns segundos" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "fai un minuto" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: lib/util.php:848 #, php-format -msgid "Okay, do it!" -msgstr "" +msgid "about %d minutes ago" +msgstr "fai %d minutos" -#: actions/facebooksettings.php:124 -#, 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 "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "fai unha hora" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: lib/util.php:852 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Microblogue por %s" +msgid "about %d hours ago" +msgstr "fai %d horas" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " -"Separa os termos por espazos; deben ter 3 caracteres ou máis." +#: lib/util.php:854 +msgid "about a day ago" +msgstr "fai un día" -#: actions/groups.php:90 +#: lib/util.php:856 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Erro ó enviar a mensaxe directa." - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Buscar \"%s\" na Liña de tempo" - -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " -"contrasinal antes de cambiar as túas preferenzas." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Sindicación do Fio Público" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Sindicación do Fio Público" +msgid "about %d days ago" +msgstr "fai %d días" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Sindicación do Fio Público" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "fai un mes" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: lib/util.php:860 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/register.php:286 actions/register.php:329 -#, fuzzy, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" -"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " -"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " -"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" agás esta informción privada: contrasinal, dirección de correo electrónico, " -"dirección IM, número de teléfono." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Crear" - -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, fuzzy, 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 "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Non existe o perfil." - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Non existe o perfil." - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Fonte de chíos para %s" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Fonte de chíos para %s" - -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Fonte de chíos para %s" - -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Band. Saída para %s" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Avatar" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Configuración de perfil" +msgid "about %d months ago" +msgstr "fai %d meses" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "fai un ano" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"Enviouseche o código de confirmación ó número de teléfono que engadiches. " -"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " -"debes seguir." +msgid "%s is not a valid color!" +msgstr "%1s non é unha orixe fiable." -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: lib/webcolor.php:123 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" -"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" -"\n" -"Se o olvidaches, podes velo texto do teu chío aquí:\n" -"\n" -"%3$s\n" -"\n" -"Podes vela lista de cíos favoritos de %1$s aquí:\n" -"\n" -"%4$s\n" -"\n" -"Fielmente teu,\n" -"%5$s\n" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Non é o usuario" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " -"Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " -"duns minutos." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Non se puido analizaar a mensaxe." -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Non é un usuario rexistrado." -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Ise é un enderezo IM incorrecto." -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" -"Suscripcións: %1$s\n" -"Suscriptores: %2$s\n" -"Chíos: %3$s" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "" -"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " -"teu OpenID." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" -"Ei, %s.\n" -"\n" -"Alguén introduceu o teu correo electrónico en %s.\n" -"\n" -"Se foches ti, e queres confirmar a entrada, pincha na seguinte URL:\n" -"\n" -"\t%s\n" -"\n" -"Se non, simplemente ignora esta mensaxe.\n" -"\n" -"Grazas polo teu tempo, \n" -"%s\n" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s está a escoitar os teus chíos en %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentamente todo seu,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" -"%1$s (%2$s) preguntase que é de ti, e invítate a publicar algun chío.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" -"%1$s (%2$s) enviouche unha mensaxe privada:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Buscar" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Ningún documento." - -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "" - -#: actions/block.php:150 -msgid "Block this user from this group" -msgstr "" - -#: actions/blockedfromgroup.php:90 -#, php-format -msgid "%s blocked profiles" -msgstr "" - -#: actions/blockedfromgroup.php:93 -#, php-format -msgid "%s blocked profiles, page %d" -msgstr "" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Desbloqueo de usuario fallido." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Código de confirmación." - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Non se pode eliminar este chíos." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Etiqueta inválida: '%s'" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Non se puido crear o favorito." - -#: 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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Novo chío" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Novo chío" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Non é un alcume válido." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Non se especificou ningún perfil." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "O usuario bloqueoute." - -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "%1s non é unha orixe fiable." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Bloquear usuario" - -#: actions/groupblock.php:155 -#, fuzzy, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" -"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " -"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " -"ser notificado de ningunha resposta-@ del." - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Non se puido actualizar o usuario." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Non se puideron gardar os teus axustes de Twitter!" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Preferencias gardadas." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Non se atoparon resultados" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "O usuario bloqueoute." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Non hai mensaxes de texto!" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Non se puido gardar o perfil." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) permiteche acceder en moitos sitios coa mesma " -"conta. Xestina os teus OpenIDs asociados dende aquí." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Configuración de perfil" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " -"enderezo de correo que configuraches na túa conta." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Foiches identificado. Insire unha nova contrasinal abaixo." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Petición de recuperación de contrasinal" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Acounteceu un erro co código de confirmación." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Suscrito a %s" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Chíos favoritos de %s" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Fonte de chíos para %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Fonte de chíos para %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Fonte de chíos para %s" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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 "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Non é usuario local." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Chíos tagueados con %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Fonte de chíos para %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s está a escoitar os teus chíos %2$s." - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Fonte de chíos para %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Fonte de chíos para %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Este chío xa é un favorito!" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Este chío non é un favorito!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Non se pudo recuperar a liña de tempo publica." - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Non se especificou ningún destinatario" - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Non se puido atopar ningún estado" - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Chíos que respostan a %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Actualizacións dende %1$s en %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Subscrición de autorización." - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Configuración de perfil" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "%1s non é unha orixe fiable." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Aconteceu un erro ó gardar o chío." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Mensaxe de %1$s en %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "O usuario non ten perfil." - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Perfil" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Subir" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Cambiar contrasinal" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Conectar" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Buscar" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Lista" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Bloquear" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Bloquear usuario" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" -"\n" -"Se o olvidaches, podes velo texto do teu chío aquí:\n" -"\n" -"%3$s\n" -"\n" -"Podes vela lista de cíos favoritos de %1$s aquí:\n" -"\n" -"%4$s\n" -"\n" -"Fielmente teu,\n" -"%5$s\n" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Sen contido!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Usuario" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Buscar" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "%1s non é unha orixe fiable." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Non existe a etiqueta." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Mensaxes directas para %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "" -"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Non podes seguir a este usuario: o Usuario non se atopa." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "O teu Bio é demasiado longo (max 140 car.)." - -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." -msgstr "Xa estas suscrito a estes usuarios:" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Non podes seguir a este usuario: o Usuario non se atopa." - -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." -msgstr "Non estás suscrito a ese perfil" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Non podes seguir a este usuario: o Usuario non se atopa." - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Usuarios" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "%1s non é unha orixe fiable." - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Outras opcions" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Avatar actualizado." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "" -"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Formato de ficheiro de imaxe non soportado." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Chíos dende SMS" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "O teu Bio é demasiado longo (max 140 car.)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Actualizacións dende %1$s en %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "O usuario que está sendo escoitado non existe." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Non está autorizado." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Non se pode convertir o token da petición a tokens de acceso." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Versión de protocolo OMB descoñecida." - -#: actions/getfile.php:75 -msgid "No such file." -msgstr "Ningún chío." - -#: actions/getfile.php:79 -msgid "Cannot read file." -msgstr "Bloqueo de usuario fallido." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Actualizacións dende %1$s en %2$s!" - -#: actions/imsettings.php:89 -msgid "IM is not available." -msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" -"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" -"action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Actualizacións dende %1$s en %2$s!" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Conectar" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "O teu Bio é demasiado longo (max 140 car.)." - -#: actions/register.php:336 actions/register.php:342 -#, fuzzy -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" -"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " -"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " -"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Este é un perfil local! Rexístrate para suscribirte." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Non se puido recoller o token de petición." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Fonte de chíos para %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Fonte de chíos para %s" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Fonte de chíos para %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Mensaxe de %1$s en %2$s" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Fonte para os amigos de %s" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Fonte para os amigos de %s" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Fonte para os amigos de %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "Band. Saída para %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Chío publicado" - -#: actions/smssettings.php:91 -msgid "SMS is not available." -msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Fonte de chíos para %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"A subscrición foi autorizada, pero ningunha URL de retorno foi " -"proporcionada. Comproba coas instruccións do sitio para máis detalles en " -"como autorizar subscricións. O teu token de subscrición é:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Non se pode ler a URL do avatar de '%s'" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Tipo de imaxe incorrecto para '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Non se pode redireccionar ao servidor: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Atopar no contido dos chíos" - -#: lib/command.php:88 -#, 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." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Toque enviado" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " - -#: lib/command.php:439 -#, php-format -msgid "Reply to %s sent" -msgstr "Non se pode eliminar este chíos." - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Aconteceu un erro ó gardar o chío." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Sen código de confirmación." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Selecciona unha operadora" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Novo chío" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s gustoulle o teu chío" - -#: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" -"\n" -"Se o olvidaches, podes velo texto do teu chío aquí:\n" -"\n" -"%3$s\n" -"\n" -"Podes vela lista de cíos favoritos de %1$s aquí:\n" -"\n" -"%4$s\n" -"\n" -"Fielmente teu,\n" -"%5$s\n" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " dende " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Non se pudo recuperar a liña de tempo publica." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Eliminar chío" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Contido do chío inválido" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Non se pode crear o formulario OpenID: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Podes actualizar a túa información do perfil persoal aquí" - -#: lib/command.php:613 -#, fuzzy -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" -"Comandos:\n" -"on - activar as notificacións\n" -"off - desactivar as notificacións\n" -"help - mostrar esta axuda\n" -"follow - suscribirse ao usuario\n" -"leave - de-suscribirse do usuario\n" -"d - mensaxe directa ao usuario\n" -"get - lelo último chío do usuario\n" -"whois - amosar informacion do usuario\n" -"fav - engadilo último chío do usuario como favorito\n" -"stats - amosalas túas estatísticas\n" -"stop - o mesmo que 'off'\n" -"quit - o mesmo que 'off'\n" -"sub - o mesmo que 'follow'\n" -"unsub - o mesmo que 'leave'\n" -"last - o mesmo que 'get'\n" -"on - non implementado por agora.\n" -"off - non implementado por agora.\n" -"nudge - non implementado por agora.\n" -"invite - non implementado por agora.\n" -"track - non implementado por agora.\n" -"untrack - non implementado por agora.\n" -"track off - non implementado por agora.\n" -"untrack all - non implementado por agora.\n" -"tracks - non implementado por agora.\n" -"tracking - non implementado por agora.\n" - -#~ msgid "" -#~ "Commands:\n" -#~ "on - turn on notifications\n" -#~ "off - turn off notifications\n" -#~ "help - show this help\n" -#~ "follow - subscribe to user\n" -#~ "leave - unsubscribe from user\n" -#~ "d - direct message to user\n" -#~ "get - get last notice from user\n" -#~ "whois - get profile info on user\n" -#~ "fav - add user's last notice as a 'fave'\n" -#~ "stats - get your stats\n" -#~ "stop - same as 'off'\n" -#~ "quit - same as 'off'\n" -#~ "sub - same as 'follow'\n" -#~ "unsub - same as 'leave'\n" -#~ "last - same as 'get'\n" -#~ "on - not yet implemented.\n" -#~ "off - not yet implemented.\n" -#~ "nudge - not yet implemented.\n" -#~ "invite - not yet implemented.\n" -#~ "track - not yet implemented.\n" -#~ "untrack - not yet implemented.\n" -#~ "track off - not yet implemented.\n" -#~ "untrack all - not yet implemented.\n" -#~ "tracks - not yet implemented.\n" -#~ "tracking - not yet implemented.\n" -#~ msgstr "" -#~ "Comandos:\n" -#~ "on - activar as notificacións\n" -#~ "off - desactivar as notificacións\n" -#~ "help - mostrar esta axuda\n" -#~ "follow - suscribirse ao usuario\n" -#~ "leave - de-suscribirse do usuario\n" -#~ "d - mensaxe directa ao usuario\n" -#~ "get - lelo último chío do usuario\n" -#~ "whois - amosar informacion do usuario\n" -#~ "fav - engadilo último chío do usuario como favorito\n" -#~ "stats - amosalas túas estatísticas\n" -#~ "stop - o mesmo que 'off'\n" -#~ "quit - o mesmo que 'off'\n" -#~ "sub - o mesmo que 'follow'\n" -#~ "unsub - o mesmo que 'leave'\n" -#~ "last - o mesmo que 'get'\n" -#~ "on - non implementado por agora.\n" -#~ "off - non implementado por agora.\n" -#~ "nudge - non implementado por agora.\n" -#~ "invite - non implementado por agora.\n" -#~ "track - non implementado por agora.\n" -#~ "untrack - non implementado por agora.\n" -#~ "track off - non implementado por agora.\n" -#~ "untrack all - non implementado por agora.\n" -#~ "tracks - non implementado por agora.\n" -#~ "tracking - non implementado por agora.\n" - -#, fuzzy -#~ msgid "" -#~ "Commands:\n" -#~ "on - turn on notifications\n" -#~ "off - turn off notifications\n" -#~ "help - show this help\n" -#~ "follow - subscribe to user\n" -#~ "leave - unsubscribe from user\n" -#~ "d - direct message to user\n" -#~ "get - get last notice from user\n" -#~ "whois - get profile info on user\n" -#~ "fav - add user's last notice as a 'fave'\n" -#~ "fav # - add notice with the given id as a 'fave'\n" -#~ "reply # - reply to notice with a given id\n" -#~ "reply - reply to the last notice from user\n" -#~ "join - join group\n" -#~ "drop - leave group\n" -#~ "stats - get your stats\n" -#~ "stop - same as 'off'\n" -#~ "quit - same as 'off'\n" -#~ "sub - same as 'follow'\n" -#~ "unsub - same as 'leave'\n" -#~ "last - same as 'get'\n" -#~ "on - not yet implemented.\n" -#~ "off - not yet implemented.\n" -#~ "nudge - remind a user to update.\n" -#~ "invite - not yet implemented.\n" -#~ "track - not yet implemented.\n" -#~ "untrack - not yet implemented.\n" -#~ "track off - not yet implemented.\n" -#~ "untrack all - not yet implemented.\n" -#~ "tracks - not yet implemented.\n" -#~ "tracking - not yet implemented.\n" -#~ msgstr "" -#~ "Comandos:\n" -#~ "on - activar as notificacións\n" -#~ "off - desactivar as notificacións\n" -#~ "help - mostrar esta axuda\n" -#~ "follow - suscribirse ao usuario\n" -#~ "leave - de-suscribirse do usuario\n" -#~ "d - mensaxe directa ao usuario\n" -#~ "get - lelo último chío do usuario\n" -#~ "whois - amosar informacion do usuario\n" -#~ "fav - engadilo último chío do usuario como favorito\n" -#~ "stats - amosalas túas estatísticas\n" -#~ "stop - o mesmo que 'off'\n" -#~ "quit - o mesmo que 'off'\n" -#~ "sub - o mesmo que 'follow'\n" -#~ "unsub - o mesmo que 'leave'\n" -#~ "last - o mesmo que 'get'\n" -#~ "on - non implementado por agora.\n" -#~ "off - non implementado por agora.\n" -#~ "nudge - non implementado por agora.\n" -#~ "invite - non implementado por agora.\n" -#~ "track - non implementado por agora.\n" -#~ "untrack - non implementado por agora.\n" -#~ "track off - non implementado por agora.\n" -#~ "untrack all - non implementado por agora.\n" -#~ "tracks - non implementado por agora.\n" -#~ "tracking - non implementado por agora.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Aivá, non se permiten correos entrantes." diff --git a/locale/he/LC_MESSAGES/statusnet.mo b/locale/he/LC_MESSAGES/statusnet.mo index e109d6513..700f4c5ce 100644 Binary files a/locale/he/LC_MESSAGES/statusnet.mo and b/locale/he/LC_MESSAGES/statusnet.mo differ diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 67dbdedba..7c043a5b3 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -5,5979 +5,4123 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:34+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:16+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "חיפוש ברצף אחרי \"%s\"" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "אין הודעה כזו." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "אין משתמש כזה." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s וחברים" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgid "%s and friends" +msgstr "%s וחברים" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "הזנות החברים של %s" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "הזנות החברים של %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "הזנות החברים של %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s מאזין כעת להודעות שלך ב %2$s. \n" -"\n" -"\t%3$s\n" -" שלך,\n" -" %4$s.\n" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "הסטטוס של %1$s ב-%2$s " - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "רצף ציבורי ב-%s" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s וחברים" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s public timeline" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s וחברים" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s timeline" +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" -"site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** הוא שרות ביקרובלוג." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "למשתמש אין פרופיל." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "תנו קרדיט מלא לכותבים בשמם המלא או בכינויים." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "לפחות 6 אותיות" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "לפחות 6 אותיות, אל תשכח!" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr " לפחות 6 אותיות. שדה חובה." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:89 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "Direct messages from %s" msgstr "" -"קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " -"מידיים אליך." -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "אודות" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "קבל" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "הוסף" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "הוסף OpenID" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" msgstr "" -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "כתבות" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "כל המנויים" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "כל העדכונים עבור %s" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" +msgid "Could not follow user: %s is already on your list." +msgstr "" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "כבר מחובר." +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "נכשלה ההפניה לשרת: %s" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "כבר מנוי!" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "אשר מנוי" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "עידכון המשתמש נכשל." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "בעתיד התחבר אוטומטית; לא לשימוש במחשבים ציבוריים!" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "עידכון המשתמש נכשל." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "שמירת מידע התמונה נכשל" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "תמונה" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "שמירת מידע התמונה נכשל" -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "התמונה עודכנה." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "יצירת המנוי נכשלה." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"מחכה לאישור כתובת זו. בדוק את חשבון ה-Jabber/GTalk שלך לקבלת מסר עם הוראות " -"נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "שם משתמש לא חוקי." -#: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy -msgid "Before »" -msgstr "לפני >>" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "לאתר הבית יש כתובת לא חוקית." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "ביוגרפיה" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "לא ניתן לשמור את הסיסמה" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "כתובת אתר הבית '%s' אינה חוקית" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "בטל" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "לא ניתן להפעיל את אובייקט הלקוח של OpenID." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "כבר נכנסת למערכת!" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "שנה" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "נכשלה ההפניה לשרת: %s" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "שנה סיסמה" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "נכשלה יצירת OpenID מתוך: %s" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" msgstr "" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "אשר" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "פרופיל" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "אשר כתובת" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "האישור בוטל." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "קוד האישור לא נמצא." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "התמונה עודכנה." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "התחבר" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "התחבר לחשבון קיים" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "לא נמצא" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "צור קשר" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "פורמט התמונה אינו נתמך." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "נכשלה יצירת OpenID מתוך: %s" +msgid "%s / Favorites from %s" +msgstr "" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinefavorites.php:119 #, php-format -msgid "Could not follow user: %s is already on your list." +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" msgstr "" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format -msgid "Could not redirect to server: %s" -msgstr "נכשלה ההפניה לשרת: %s" +msgid "Updates from %1$s on %2$s!" +msgstr "" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "שמירת מידע התמונה נכשל" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "הסטטוס של %1$s ב-%2$s " -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "שמירת מידע הפרופיל החדש נכשלה" +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" msgstr "" -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "מיקרובלוג מאת %s" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "" +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "לא נמצא" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "מחיקת המנוי לא הצליחה." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "אין מסמך כזה." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "אין כינוי" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "אסימון הבקשה לא התקבל." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "אין גודל." -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "הכנסת קוד האישור נכשלה." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "גודל לא חוקי." -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "הכנסת מנוי חדש נכשלה." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "תמונה" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "שמירת הפרופיל נכשלה." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "הגדרות" + +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "עידכון המשתמש נכשל." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "צור" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#, fuzzy +msgid "Delete" +msgstr "מחק" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "צור משתמש חדש עם הכינוי הזה." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "ההעלה" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "צור חשבון חדש" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "יצירת חשבון חדש עבור OpenID שכבר משוייך למשתמש." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "כתובת מאושרת נוכחית של Jabber/GTalk." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "הגשת טופס לא צפויה." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "כרגע" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "התמונה עודכנה." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "עדכון התמונה נכשל." -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "התמונה עודכנה." -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "אין כינוי" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "אין הודעה כזו." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "למשתמש אין פרופיל." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s וחברים" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "אין משתמש כזה." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "אין משתמש כזה." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "לא מחובר." -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "שגיאה באישור האסימון" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "שגיאה בקישור המשתמש ל-OpenID." +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "אין משתמש כזה." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "שגיאת חיבור משתמש." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "שגיאה בהכנסת התמונה." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "לא" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "שגיאה בהכנסת הפרופיל" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "נכשלה ההפניה לשרת: %s" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "שגיאה בהכנסת פרופיל מרוחק" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "כן" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "שגיאה בשמירת אישור הכתובת." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "אין משתמש כזה." -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "שגיאה בשמירת פרופיל מרוחק" +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "כבר נכנסת למערכת!" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "שגיאה בשמירת הפרופיל." +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "שגיאה בשמירת המשתמש." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "שגיאה בשמירת שם המשתמש, לא עומד בכללים." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "אין קוד אישור." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "שגיאה ביצירת שם המשתמש." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "קוד האישור לא נמצא." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "שגיאה בעידכון הפרופיל" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "קוד האישור הזה אינו מיועד לך!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "שגיאה בעדכון פרופיל מרוחק" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "סוג לא מזוהה של כתובת %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "שגיאה באישור הקוד." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "כתובת זו כבר אושרה." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "כינוי זה כבר קיים" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "עידכון המשתמש נכשל." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "רשימת שאלות נפוצות" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "עדכון התמונה נכשל." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "אשר כתובת" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "הזנות החברים של %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "הכתובת \"%s\" אושרה עבור חשבונך." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "הזנת התגובות ל-%s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "מיקום" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "הודעות" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "אין הודעה כזו." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." msgstr "" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "שם מלא" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "עזרה" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "אין הודעה כזו." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "בית" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "אתר בית" +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "לאתר הבית יש כתובת לא חוקית." +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "כתובת מסרים מידיים" +#: actions/disfavor.php:94 +#, fuzzy +msgid "Add to favorites" +msgstr "מועדפים" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "הגדרות מסרים מידיים" +#: actions/doc.php:69 +msgid "No such document." +msgstr "אין מסמך כזה." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -"אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -"אם אתה רוצה להוסיף OpenID לחשבון שלך, הכנס אותו לתיבה שלמטה ולחץ \"הוסף\"" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "הסיסמה הישנה לא נכונה" +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "עידכון המשתמש נכשל." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "שם משתמש או סיסמה לא נכונים." +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "ההגדרות נשמרו." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/emailsettings.php:60 +msgid "Email Settings" msgstr "" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "כתובת התמונה '%s' אינה חוקית" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "כתובת אתר הבית '%s' אינה חוקית" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "כתובת הרשיון '%s' איה חוקית" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "כתבות" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "תוכן ההודעה לא חוקי" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "כתובת לא חוקית" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "הסר" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "כתובת לא חוקית" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "כתובת הפרופיל '%s' לא חוקית." +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "בטל" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "כתובת פרופיל לא חוקית (פורמט לא תקין)" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "השרת החזיר כתובת פרופיל לא חוקית" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "גודל לא חוקי." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "הוסף" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "שם המשתמש או הסיסמה לא חוקיים" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "חדש" + +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "העדפות" + +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -"הוא פועל על תוכנת המיקרובלוג [](http://status.netלאקוניקה/) לאקוניקה, גירסה %" -"s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)" -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר." +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -"כתובת Jabber או GTalk, כגון \"UserName@example.org\". הוסף את %s אל רשימת " -"החברים בתוכנת ההמסרים המידיים או GTalk שלך." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "שפה" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "מיקום" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "שמור" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "העדפות נשמרו." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "היכנס" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "התחבר לחשבון [OpenID](%%doc.openid%%). " +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." -"register%%) לחשבון " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "צא" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "שכחת או איבדת את הסיסמה?" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "הכנסת קוד האישור נכשלה." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: actions/emailsettings.php:358 +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 "" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "אין אישור ממתין שניתן לבטל." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "חבר מאז" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "זוהי כתובת מסרים מידיים שגויה." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "מיקרובלוג מאת %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "האישור בוטל." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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." +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "הטקסטים והקבצים שלי מופצים תחת רשיון" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "הכתובת הוסרה." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "חדש" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "כינוי חדש" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "הודעה חדשה" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "אין הודעה כזו." -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "סיסמה חדשה" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "אין הודעה כזו." -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "הסיסמה החדשה נשמרה בהצלחה. אתה מחובר למערכת." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "כינוי" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -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/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "כינוי זה אסור." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "כינויו של המשתמש אחריו אתה רוצה לעקוב" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "מיקרובלוג מאת %s" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "לא" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "אין זיהוי Jabber כזה." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "לא התבקש אישור!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "אין קוד אישור." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "הודעה חדשה" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "אין תוכן!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "הודעה חדשה" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "אין זיהוי." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "השרת הרחוק לא מספק כינוי" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "זו תגובה לא צפויה!" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "אין כינוי" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "המשתמש אליו אתה מאזין אינו קיים." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "אין אישור ממתין שניתן לבטל." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "ניתן להשתמש במנוי המקומי!" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "השרת לא החזיר כתובת פרופיל" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "לא מורשה." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "לא נמצאה בקשה!" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "גירסה לא מוכרת של פרוטוקול OMB" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "אין תוצאות" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "שגיאה בעדכון פרופיל מרוחק" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "אין גודל." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "אין הודעה כזו." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "אין הודעה כזו." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "אין הודעה כזו." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "אין OpenID כזה." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "למשתמש אין פרופיל." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "אין מסמך כזה." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "אין הודעה כזו." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "אין משתמש כזה." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "אין קוד שיחזור כזה." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "אין מנוי כזה" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "אין משתמש כזה." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "אין את מי להציג!" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "זהו לא קוד אישור." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "קבוצות" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "עידכון המשתמש נכשל." + +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "לא עומד בכללים לזיהוי Jabber" +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "העדפות נשמרו." -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "לא עומד בכללים ל-OpenID." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "שם משתמש לא חוקי." +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "התמונה עודכנה." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Not a valid profile URL (incorrect services)." +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "עדכון התמונה נכשל." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Not a valid profile URL (no XRDS defined)." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Not a valid profile URL (no YADIS document)." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "זהו לא קובץ תמונה, או שחל בו שיבוש." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "לא מורשה." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "זו תגובה לא צפויה!" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "לא נמצא" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "אין משתמש כזה." -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "לא מחובר." +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "לא מנוי!" +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "הזנת הודעות של %s" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "מיקרובלוג מאת %s" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "להודעה אין פרופיל" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " +"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "הודעות" +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "חיפוש סיסמה" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "אין תוצאות" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/groupsearch.php:82 #, php-format -msgid "Notices tagged with %s" +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "סיסמה ישנה" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "הגדרת חשבון OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "הגשה אוטומטית של OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "כניסת OpenId" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "כתובת ה-OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "אישור ה-OpenID בוטל." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "אישור ה-OpenID נכשל: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "כשל OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID הוסר." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "הגדרות OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "העלאה חלקית." +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "קבוצות" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "סיסמה" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "הסיסמה ואישורה אינן תואמות." +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "הסיסמה חייבת להיות בת לפחות 6 אותיות." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "צור חשבון חדש" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "התבקש שיחזור סיסמה" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "הסיסמה נשמרה." +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "למשתמש אין פרופיל." -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "הסיסמאות לא תואמות." +#: actions/groupunblock.php:128 actions/unblock.php:108 +#, fuzzy +msgid "Error removing the block." +msgstr "שגיאה בשמירת המשתמש." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "אנשים" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "הגדרות מסרים מידיים" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "חיפוש אנשים" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " +"את כתובתך והעדפותיך למטה." -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "חיפוש סיסמה" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "אישי" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "כתובת מאושרת נוכחית של Jabber/GTalk." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"מחכה לאישור כתובת זו. בדוק את חשבון ה-Jabber/GTalk שלך לקבלת מסר עם הוראות " +"נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "כתובת מסרים מידיים" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " -"להירשם, לחץ \"בטל\"." +"כתובת Jabber או GTalk, כגון \"UserName@example.org\". הוסף את %s אל רשימת " +"החברים בתוכנת ההמסרים המידיים או GTalk שלך." + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "שלח לי הודעות דרך Jabber/GTalk." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "פרסם הודעה כששורת הסטטוס שלי ב-Jabber/GTalk מתעדכנת." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "העדפות" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "העדפות נשמרו." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "פרטיות" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "אין זיהוי Jabber כזה." -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "בעיה בשמירת ההודעה." +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "פרופיל" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "לא עומד בכללים לזיהוי Jabber" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "כתובת הפרופיל" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "זהו כבר זיהוי ה-Jabber שלך." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "הגדרות הפרופיל" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר." -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "פרופיל לא מוכר" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " +"מידיים אליך." -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "הזנת זרם הציבורי" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "זהו לא זיהוי ה-Jabber שלך." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "קו זמן ציבורי" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "שיחזור" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "סיסמת שיחזור" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "קוד שיחזור למשתמש לא ידוע." +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "הירשם" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "דחה" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "זכור אותי" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "אין פרופיל תואם לפרופיל המרוחק " +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "הרשמה מרוחקת" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "הסר" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "הסר OpenID" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/invite.php:162 msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"הסרת ה-OpenID היחיד שלך תגרום לכך שלא תוכל להתחבר למערכת. אם אתה צריך להסיר " -"אותו, לפני כן הוסף OpenID אחר." - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "תגובות" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "תגובת עבור %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "איפוס" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "איפוס סיסמה" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "סמס" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "זהה לסיסמה למעלה" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "שמור" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "חיפוש" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "הזנת זרם החיפושים" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "שלח" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:226 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +msgid "%1$s has invited you to join them on %2$s" msgstr "" -"חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת רווחים בין הביטויים; עליהם " -"להיות בני לפחות 3 אותיות." -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/invite.php:228 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " -"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "שלח" +#: actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "כבר נכנסת למערכת!" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." +#: actions/joingroup.php:128 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "נכשלה ההפניה לשרת: %s" + +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "שלח לי הודעות דרך Jabber/GTalk." +#: actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy +msgid "You are not a member of that group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." msgstr "" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "נכשלה יצירת OpenID מתוך: %s" + +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" msgstr "" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "הגדרות" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "כבר מחובר." -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "ההגדרות נשמרו." +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "תוכן ההודעה לא חוקי" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "שם משתמש או סיסמה לא נכונים." -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "למישהו כבר יש את ה-OpenID הזה." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "שגיאה ביצירת שם המשתמש." -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "קרה משהו מוזר." +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "היכנס" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "כינוי" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "מקור" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "סיסמה" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "סטטיסטיקה" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "זכור אותי" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "OpenID מאוכסן לא נמצא." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "הירשם כמנוי" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "בעתיד התחבר אוטומטית; לא לשימוש במחשבים ציבוריים!" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "מנויים" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "שכחת או איבדת את הסיסמה?" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "ההרשמה אושרה" +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "ההרשמה נדחתה" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." +"register%%) לחשבון " -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "הרשמות" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "שגיאת מערכת בהעלאת הקובץ." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "טקסט" +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "חיפוש טקסט" +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "ה-OpenID הזה אינו שייך לך." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "כתובת זו כבר אושרה." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "קוד האישור הזה אינו מיועד לך!" +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "הודעה חדשה" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "קובץ זה גדול מידי." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "זהו כבר זיהוי ה-Jabber שלך." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "אין תוכן!" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." +#: actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "זהו לא זיהוי ה-Jabber שלך." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "הודעה חדשה" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" msgstr "" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "זוהי כתובת מסרים מידיים שגויה." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "הודעה חדשה" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" +#: actions/newnotice.php:199 +#, fuzzy +msgid "Notice posted" +msgstr "הודעות" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/noticesearch.php:68 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "הכתובת \"%s\" אושרה עבור חשבונך." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "הכתובת הוסרה." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " -"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " -"דחיית מנוי." +"חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת רווחים בין הביטויים; עליהם " +"להיות בני לפחות 3 אותיות." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "אלה האנשים במאזינים להודעות של %s." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "חיפוש טקסט" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "אלה האנשים המאזינים להודעות שלך." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "חיפוש ברצף אחרי \"%s\"" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "אלה האנשים ש%s מאזין להודעות שלהם." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "אלה האנשים שלהודעות שלהם אתה מאזין." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "קוד אישור זה ישן מידי. אנא התחל מחדש." - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "טופס אמור לשלוח את עצמו אוטומטית. אם לא, " - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearch.php:124 #, 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 "" -"זו ההתחברות הראשונה שלך אל %s לכן עליך להתחבר לחשבון מקומי של OpenID. אתה " -"יכול ליצור חשבון חדש, או להתחבר לחשבון קיים, אם יש לך." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "מיקרובלוג מאת %s" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format +#: actions/nudge.php:85 msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"כדי לעשות מנוי, עליך [להיכנס למערכת](%%action.login%%), או [להירשם](%%action." -"register%%) לחשבון חדשה. אם יש לך כבר חשבון [במערכת מיקרובלוג תואמת](%%doc." -"openmublog%%), הכנס את כתובת הפרופיל שלך למטה. " -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "הגשת טופס לא צפויה." - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "איפוס סיסמה לא צפוי." - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/nudge.php:97 +msgid "Nudge sent!" msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "גירסה לא מוכרת של פרוטוקול OMB" - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "אם לא פורט אחרת, כל הזכויות על התוכן של אתר " +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "להודעה אין פרופיל" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "Unrecognized address type %s" -msgstr "סוג לא מזוהה של כתובת %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "בטל מנוי" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "גירסה לא נתמכת של OMB" +msgid "%1$s's status on %2$s" +msgstr "הסטטוס של %1$s ב-%2$s " -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "פורמט התמונה אינו נתמך." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "התחבר" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/oembed.php:160 +msgid "Only " msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." msgstr "" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "חיפוש אנשים" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "ההעלה" +#: actions/othersettings.php:60 +#, fuzzy +msgid "Other Settings" +msgstr "הגדרות" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +#: actions/othersettings.php:71 +msgid "Manage various other options." msgstr "" -"העלה תמונת משתמש כאן. לאחר העלאת התמונה לא תוכל לערוך אותה, לכן וודא שהיא " -"ריבועית (פחות או יותר). כמו כן, התמונה תפורסם תחת רשיון השימוש של האתר. " -"השתמש בתמונה ששייכת לך ושאתה מוכן לשתף. " -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "לשימוש רק במקרים של עידכונים, הודעות מערכת, ושיחזורי סיסמאות" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "הגדרות הפרופיל" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "המשתמש אליו אתה מאזין אינו קיים." +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "למשתמש אין פרופיל." +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "כינוי משתמש" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "מה המצב %s?" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "שנה סיסמה" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "שנה סיסמה" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "סוג התמונה של '%s' אינו מתאים" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "הסיסמה נשמרה." -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "גודל התמונה של: '%s' לא מתאים." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "סיסמה ישנה" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "כן" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "סיסמה חדשה" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "כבר יש לך את ה-OpenID הזה!" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "לפחות 6 אותיות" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "אשר" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "כבר נכנסת למערכת!" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "זהה לסיסמה למעלה" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "שנה" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." msgstr "" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "אפשר לשנות את הסיסמה כאן. בחר סיסמה טובה!" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "הסיסמאות לא תואמות." -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "ניתן ליצור חשבון חדש ולהתחיל לפרסם הודעות." +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "הסיסמה הישנה לא נכונה" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "שגיאה בשמירת שם המשתמש, לא עומד בכללים." -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "הסיר OpenID מחשבונך על ידי לחיצה על הכפתור המסומן \"הסר\"." +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "לא ניתן לשמור את הסיסמה" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "הסיסמה נשמרה." + +#: actions/peoplesearch.php:52 #, php-format msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " -"את כתובתך והעדפותיך למטה." - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שאנשים יוכלו לדעת עליך יותר." - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "ניתן להשתמש במנוי המקומי!" +"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " +"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "לא ניתן להירשם ללא הסכמה לרשיון" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "חיפוש סיסמה" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "לא שלחנו אלינו את הפרופיל הזה" +#: actions/peopletag.php:70 +#, fuzzy, php-format +msgid "Not a valid people tag: %s" +msgstr "לא עומד בכללים ל-OpenID." -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/peopletag.php:144 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +msgid "Users self-tagged with %s - page %d" msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "תוכן ההודעה לא חוקי" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 +#: actions/postnotice.php:90 #, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "זוהית. הכנס סיסמה חדשה למטה." - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "כתובת ה-OpenID שלך" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "הגדרות הפרופיל" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:71 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " -"מכאן. [OpenID](%%doc.openid%%)" - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "לפני מספר שניות" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "לפני כ-%d ימים" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "לפני כ-%d שעות" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "לפני כ-%d דקות" +"You can update your personal profile info here so people know more about you." +msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שאנשים יוכלו לדעת עליך יותר." -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "לפני כ-%d חודשים" +#: actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "פרופיל לא מוכר" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "לפני כיום" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "לפני כדקה" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "שם מלא" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "לפני כחודש" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "אתר בית" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "לפני כשנה" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "לפני כשעה" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "מחק" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "בתגובה ל..." +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "ביוגרפיה" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "הגב" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "מיקום" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "זהה לסיסמה למעלה" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy -msgid "« After" -msgstr "<< אחרי" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "שפה" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" msgstr "" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "כתובת אתר הבית '%s' אינה חוקית" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "שמירת הפרופיל נכשלה." -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" +#: actions/profilesettings.php:336 +#, fuzzy +msgid "Couldn't save tags." +msgstr "שמירת הפרופיל נכשלה." -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "ההגדרות נשמרו." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:83 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "קו זמן ציבורי" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "קו זמן ציבורי" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "הזנת זרם הציבורי" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "הזנת זרם הציבורי" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "הזנת זרם הציבורי" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/public.php:179 +#, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "הודעה חדשה" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/public.php:186 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "הזנת זרם הציבורי" -#: actions/outbox.php:28 actions/outbox.php:58 +#: actions/publictagcloud.php:63 #, php-format -msgid "Outbox for %s - page %d" +msgid "These are most popular recent tags on %s " msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/publictagcloud.php:69 #, php-format -msgid "Outbox for %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "כבר נכנסת למערכת!" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "אין קוד שיחזור כזה." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "זהו לא קוד אישור." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "קוד שיחזור למשתמש לא ידוע." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "שגיאה באישור הקוד." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "קוד אישור זה ישן מידי. אנא התחל מחדש." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "שיחזור" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "איפוס סיסמה" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "סיסמת שיחזור" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "התבקש שיחזור סיסמה" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "לפחות 6 אותיות, אל תשכח!" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "זהה לסיסמה למעלה" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "איפוס" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." msgstr "" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "שגיאה בשמירת אישור הכתובת." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "איפוס סיסמה לא צפוי." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "הסיסמה חייבת להיות בת לפחות 6 אותיות." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "הסיסמה ואישורה אינן תואמות." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "הסיסמה החדשה נשמרה בהצלחה. אתה מחובר למערכת." -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "שגיאה באישור הקוד." -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "הירשם" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "לא ניתן להירשם ללא הסכמה לרשיון" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." +#: actions/register.php:201 +msgid "Not a valid email address." msgstr "" -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." +#: actions/register.php:212 +msgid "Email address already exists." msgstr "" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "שם המשתמש או הסיסמה לא חוקיים" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 +#: actions/register.php:342 msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr " לפחות 6 אותיות. שדה חובה." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "לשימוש רק במקרים של עידכונים, הודעות מערכת, ושיחזורי סיסמאות" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "הטקסטים והקבצים שלי מופצים תחת רשיון" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/register.php:496 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"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%%), הכנס את כתובת הפרופיל שלך למטה. " -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "הרשמה מרוחקת" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "ההרשמה אושרה" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "כינוי משתמש" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "כינויו של המשתמש אחריו אתה רוצה לעקוב" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "כתובת הפרופיל" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "הירשם כמנוי" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "כתובת פרופיל לא חוקית (פורמט לא תקין)" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Not a valid profile URL (no YADIS document)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "אסימון הבקשה לא התקבל." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "About: %s" -msgstr "אודות: %s" +msgid "Replies to %s" +msgstr "תגובת עבור %s" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "תגובת עבור %s" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "הזנת הודעות של %s" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "הזנת הודעות של %s" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/replies.php:198 #, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/replies.php:203 #, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "תגובת עבור %s" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "אין הודעה כזו." -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "הזנות החברים של %s" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "הזנות החברים של %s" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "הזנות החברים של %s" -#: lib/mail.php:147 lib/mail.php:289 -#, php-format +#: actions/showfavorites.php:205 msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"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 "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/showfavorites.php:207 #, php-format -msgid "New private message from %s" +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/showfavorites.php:211 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "מועדפים" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "%s's favorite notices" +msgid "%s group" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "מתשמש" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" +#: actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "אין הודעה כזו." -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +#, fuzzy +msgid "Note" +msgstr "הודעות" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "אל" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "הזנת הודעות של %s" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "הזנת הודעות של %s" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showgroup.php:340 #, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s וחברים" +msgid "Notice feed for %s group (Atom)" +msgstr "הזנת הודעות של %s" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "הזנת הודעות של %s" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 #, fuzzy -msgid "Avatar settings" -msgstr "הגדרות" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" +msgid "Members" +msgstr "חבר מאז" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "סטטיסטיקה" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 +#: actions/showgroup.php:432 #, fuzzy -msgid "Lost our file." -msgstr "אין הודעה כזו." +msgid "Created" +msgstr "צור" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" +#: actions/showgroup.php:448 +#, 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 "" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." +#: actions/showgroup.php:454 +#, 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 "" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: actions/block.php:111 actions/block.php:134 -#, fuzzy -msgid "Block user" -msgstr "אין משתמש כזה." - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/showmessage.php:81 +msgid "No such message." msgstr "" -#: actions/block.php:162 actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "כבר נכנסת למערכת!" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: actions/confirmaddress.php:159 -#, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "הכתובת הוסרה." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" msgstr "" -#: actions/disfavor.php:94 +#: actions/shownotice.php:90 #, fuzzy -msgid "Add to favorites" -msgstr "מועדפים" +msgid "Notice deleted." +msgstr "הודעות" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showstream.php:73 #, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +msgid " tagged %s" msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "אין כינוי" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "אין הודעה כזו." - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" - -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "עידכון המשתמש נכשל." - -#: actions/editgroup.php:226 actions/editgroup.php:269 -#, fuzzy -msgid "Options saved." -msgstr "ההגדרות נשמרו." +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showstream.php:136 #, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "שגיאה באישור הקוד." +msgid "Notice feed for %s (RSS 2.0)" +msgstr "הזנת הודעות של %s" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "הזנת הודעות של %s" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "כתובת זו כבר אושרה." - -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -"קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " -"מידיים אליך." -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/facebookhome.php:196 +#: actions/showstream.php:234 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showstream.php:239 #, php-format -msgid "Allow %s to update my Facebook status" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "אין תוכן!" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -#, fuzzy -msgid "After" -msgstr "<< אחרי" - -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 +#: actions/smssettings.php:91 #, fuzzy -msgid "Before" -msgstr "לפני >>" +msgid "SMS is not available." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" +#: actions/smssettings.php:130 +msgid "Confirmation code" msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "הזנות החברים של %s" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: actions/facebookremove.php:56 -#, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "עידכון המשתמש נכשל." - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/facebooksettings.php:67 -#, fuzzy -msgid "Sync preferences saved." -msgstr "העדפות נשמרו." - -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: actions/facebooksettings.php:106 -#, fuzzy -msgid "Prefix" -msgstr "פרופיל" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: actions/facebooksettings.php:147 -#, fuzzy -msgid "Sync preferences" -msgstr "העדפות" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 +#: actions/smssettings.php:347 #, fuzzy -msgid "Popular notices" -msgstr "אין הודעה כזו." - -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "אין הודעה כזו." +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 "קוד האישור הזה אינו מיועד לך!" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: actions/smssettings.php:476 +#, php-format +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 "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" +#: actions/subedit.php:83 +#, fuzzy +msgid "Could not save subscription." +msgstr "יצירת המנוי נכשלה." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 +#: actions/subscribe.php:55 #, fuzzy -msgid "Logo updated." -msgstr "התמונה עודכנה." +msgid "Not a local user." +msgstr "אין משתמש כזה." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 +#: actions/subscribe.php:69 #, fuzzy -msgid "Failed updating logo." -msgstr "עדכון התמונה נכשל." +msgid "Subscribed" +msgstr "הירשם כמנוי" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "מנויים" + +#: actions/subscribers.php:52 #, php-format -msgid "%s group members" +msgid "%s subscribers, page %d" msgstr "" -#: actions/groupmembers.php:96 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "אלה האנשים המאזינים להודעות שלך." + +#: actions/subscribers.php:67 #, php-format -msgid "%s group members, page %d" -msgstr "" +msgid "These are the people who listen to %s's notices." +msgstr "אלה האנשים במאזינים להודעות של %s." -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "קבוצות" - -#: actions/groups.php:64 +#: actions/subscribers.php:110 #, php-format -msgid "Groups, page %d" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/groups.php:90 +#: actions/subscribers.php:114 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "צור חשבון חדש" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "כל המנויים" -#: actions/groupsearch.php:57 +#: actions/subscriptions.php:54 #, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " -"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." +msgid "%s subscriptions, page %d" +msgstr "כל המנויים" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "חיפוש סיסמה" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "אלה האנשים שלהודעות שלהם אתה מאזין." -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "אלה האנשים ש%s מאזין להודעות שלהם." -#: actions/imsettings.php:120 +#: actions/subscriptions.php:121 #, php-format -msgid "Jabber or GTalk address, " +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "שלח לי הודעות דרך Jabber/GTalk." - -#: actions/imsettings.php:321 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "אין קוד אישור." +msgid "%s is not listening to anyone." +msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" +#: actions/subscriptions.php:194 +#, fuzzy +msgid "Jabber" +msgstr "אין זיהוי Jabber כזה." -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "סמס" + +#: actions/tagother.php:33 #, fuzzy -msgid "You are already a member of that group" -msgstr "כבר נכנסת למערכת!" +msgid "Not logged in" +msgstr "לא מחובר." -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "נכשלה ההפניה לשרת: %s" +#: actions/tagother.php:39 +#, fuzzy +msgid "No id argument." +msgstr "אין מסמך כזה." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/tagother.php:65 #, php-format -msgid "%s joined group %s" +msgid "Tag %s" msgstr "" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +#, fuzzy +msgid "User profile" +msgstr "למשתמש אין פרופיל." -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "אין הודעה כזו." +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -#, fuzzy -msgid "You are not a member of that group." -msgstr "לא שלחנו אלינו את הפרופיל הזה" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: actions/tagother.php:200 +#, fuzzy +msgid "Could not save tags." +msgstr "שמירת מידע התמונה נכשל" + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "נכשלה יצירת OpenID מתוך: %s" +msgid "Notices tagged with %s, page %d" +msgstr "מיקרובלוג מאת %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "הזנת הודעות של %s" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "הזנת הודעות של %s" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" +#: actions/tagrss.php:35 +#, fuzzy +msgid "No such tag." +msgstr "אין הודעה כזו." -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: actions/twitapitrends.php:87 +msgid "API method under construction." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#: actions/unsubscribe.php:77 #, fuzzy -msgid "Could not create group." -msgstr "שמירת מידע התמונה נכשל" +msgid "No profile id in request." +msgstr "השרת לא החזיר כתובת פרופיל" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#: actions/unsubscribe.php:84 #, fuzzy -msgid "Could not set group membership." -msgstr "יצירת המנוי נכשלה." +msgid "No profile with that id." +msgstr "אין פרופיל תואם לפרופיל המרוחק " -#: actions/newmessage.php:119 actions/newnotice.php:132 +#: actions/unsubscribe.php:98 #, fuzzy -msgid "That's too long. " -msgstr "קובץ זה גדול מידי." +msgid "Unsubscribed" +msgstr "בטל מנוי" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -#, fuzzy -msgid "Notice posted" -msgstr "הודעות" - -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "אשר מנוי" -#: actions/nudge.php:85 +#: actions/userauthorization.php:110 +#, fuzzy msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" +"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " +"להירשם, לחץ \"בטל\"." -#: actions/nudge.php:94 -msgid "Nudge sent" +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "קבל" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "OpenID login" -msgstr "כניסת OpenId" +msgid "Subscribe to this user" +msgstr "ההרשמה אושרה" -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "הסר OpenID" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "דחה" -#: actions/othersettings.php:60 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Other Settings" -msgstr "הגדרות" +msgid "Reject this subscription" +msgstr "כל המנויים" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "לא התבקש אישור!" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "ההרשמה אושרה" -#: actions/othersettings.php:112 +#: actions/userauthorization.php:249 #, fuzzy -msgid "Service" -msgstr "חיפוש" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" +"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " +"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -#, fuzzy -msgid "URL shortening service is too long (max 50 chars)." -msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." - -#: actions/passwordsettings.php:69 -#, fuzzy -msgid "Change your password." -msgstr "שנה סיסמה" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "ההרשמה נדחתה" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#: actions/userauthorization.php:261 #, fuzzy -msgid "Password change" -msgstr "הסיסמה נשמרה." - -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "לא עומד בכללים ל-OpenID." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " +"דחיית מנוי." -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/userauthorization.php:296 #, php-format -msgid "Users self-tagged with %s - page %d" +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/peopletag.php:91 +#: actions/userauthorization.php:301 #, php-format -msgid "These are users who have tagged themselves \"%s\" " +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy -msgid "Profile information" -msgstr "פרופיל לא מוכר" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "כתובת אתר הבית '%s' אינה חוקית" - -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "שמירת הפרופיל נכשלה." +msgid "Can’t read avatar URL ‘%s’." +msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/userauthorization.php:348 #, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "קו זמן ציבורי" +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "סוג התמונה של '%s' אינו מתאים" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" +#: actions/userbyid.php:70 +msgid "No id." +msgstr "אין זיהוי." -#: actions/public.php:220 -#, php-format +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "הגדרות הפרופיל" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "הזנת זרם הציבורי" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" -#: actions/publictagcloud.php:63 +#: actions/usergroups.php:64 #, php-format -msgid "These are most popular recent tags on %s " +msgid "%s groups, page %d" msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "לא ניתן להירשם ללא הסכמה לרשיון" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " +#: classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." +#: classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "לשימוש רק במקרים של עידכונים, הודעות מערכת, ושיחזורי סיסמאות" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" -#: actions/register.php:410 +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + +#: classes/Notice.php:179 #, fuzzy -msgid "Where you are, like \"City, " -msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" +msgid "Problem saving notice. Too long." +msgstr "בעיה בשמירת ההודעה." -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr "" +#: classes/Notice.php:183 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "בעיה בשמירת ההודעה." -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "תגובת עבור %s" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "בעיה בשמירת ההודעה." -#: actions/showfavorites.php:79 +#: classes/Notice.php:1120 #, php-format -msgid "%s favorite notices, page %d" -msgstr "" +msgid "DB error inserting reply: %s" +msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: classes/User.php:333 #, php-format -msgid "%s group" +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "פרופיל" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 +#: lib/accountsettingsaction.php:112 #, fuzzy -msgid "Group profile" -msgstr "אין הודעה כזו." +msgid "Upload an avatar" +msgstr "עדכון התמונה נכשל." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -#, fuzzy -msgid "Note" -msgstr "הודעות" - -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "הזנת הודעות של %s" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Members" -msgstr "חבר מאז" +msgid "Design your profile" +msgstr "למשתמש אין פרופיל." -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/showgroup.php:378 +#: lib/action.php:144 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "%s - %s" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "פרופיל" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "למשתמש אין פרופיל." +#: lib/action.php:430 +msgid "Home" +msgstr "בית" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "" +#: lib/action.php:432 +#, fuzzy +msgid "Account" +msgstr "אודות" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -#, fuzzy -msgid "Message" -msgstr "הודעה חדשה" +#: lib/action.php:435 +msgid "Connect" +msgstr "התחבר" -#: actions/showstream.php:451 lib/profileaction.php:157 +#: lib/action.php:435 #, fuzzy -msgid "All subscribers" -msgstr "מנויים" +msgid "Connect to services" +msgstr "נכשלה ההפניה לשרת: %s" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/showstream.php:542 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." - -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "שלח לי הודעות דרך Jabber/GTalk." - -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "קוד האישור הזה אינו מיועד לך!" +#: lib/action.php:445 +msgid "Logout" +msgstr "צא" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/subedit.php:70 +#: lib/action.php:450 #, fuzzy -msgid "You are not subscribed to that profile." -msgstr "לא שלחנו אלינו את הפרופיל הזה" +msgid "Create an account" +msgstr "צור חשבון חדש" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "יצירת המנוי נכשלה." +#: lib/action.php:453 +msgid "Login to the site" +msgstr "" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "אין משתמש כזה." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "עזרה" -#: actions/subscribe.php:69 +#: lib/action.php:456 #, fuzzy -msgid "Subscribed" -msgstr "הירשם כמנוי" +msgid "Help me!" +msgstr "עזרה" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "מנויים" +#: lib/action.php:459 +msgid "Search" +msgstr "חיפוש" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/subscribers.php:63 +#: lib/action.php:480 #, fuzzy -msgid "These are the people who listen to " -msgstr "אלה האנשים במאזינים להודעות של %s." - -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "אלה האנשים במאזינים להודעות של %s." - -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "כל המנויים" +msgid "Site notice" +msgstr "הודעה חדשה" -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "כל המנויים" +#: lib/action.php:546 +msgid "Local views" +msgstr "" -#: actions/subscriptions.php:65 +#: lib/action.php:612 #, fuzzy -msgid "These are the people whose notices " -msgstr "אלה האנשים ש%s מאזין להודעות שלהם." - -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "אלה האנשים במאזינים להודעות של %s." +msgid "Page notice" +msgstr "הודעה חדשה" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 +#: lib/action.php:714 #, fuzzy -msgid "Jabber" -msgstr "אין זיהוי Jabber כזה." +msgid "Secondary site navigation" +msgstr "הרשמות" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "מיקרובלוג מאת %s" +#: lib/action.php:721 +msgid "About" +msgstr "אודות" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: lib/action.php:723 +msgid "FAQ" +msgstr "רשימת שאלות נפוצות" + +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/tagother.php:33 -#, fuzzy -msgid "Not logged in" -msgstr "לא מחובר." +#: lib/action.php:730 +msgid "Privacy" +msgstr "פרטיות" -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "אין מסמך כזה." +#: lib/action.php:732 +msgid "Source" +msgstr "מקור" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" +#: lib/action.php:734 +msgid "Contact" +msgstr "צור קשר" + +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 +#: lib/action.php:767 +#, php-format msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" +"site.broughtbyurl%%)." -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** הוא שרות ביקרובלוג." -#: actions/tagother.php:191 actions/tagother.php:193 +#: lib/action.php:771 +#, php-format msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"הוא פועל על תוכנת המיקרובלוג [](http://status.netלאקוניקה/) לאקוניקה, גירסה %" +"s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)" -#: actions/tagother.php:198 actions/tagother.php:200 +#: lib/action.php:785 #, fuzzy -msgid "Could not save tags." -msgstr "שמירת מידע התמונה נכשל" +msgid "Site content license" +msgstr "הודעה חדשה" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/tagrss.php:35 -#, fuzzy -msgid "No such tag." -msgstr "אין הודעה כזו." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "מיקרובלוג מאת %s" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 +#: lib/action.php:1062 #, fuzzy -msgid "Not found." -msgstr "לא נמצא" - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" +msgid "After" +msgstr "<< אחרי" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 +#: lib/action.php:1070 #, fuzzy -msgid "Twitter password" -msgstr "סיסמה חדשה" +msgid "Before" +msgstr "לפני >>" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy -msgid "Error removing the block." -msgstr "שגיאה בשמירת המשתמש." - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "השרת לא החזיר כתובת פרופיל" - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -#, fuzzy -msgid "No profile with that id." -msgstr "אין פרופיל תואם לפרופיל המרוחק " - -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "Unsubscribed" -msgstr "בטל מנוי" +msgid "Provider" +msgstr "פרופיל" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -#, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "בעיה בשמירת ההודעה." - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "עדכון התמונה נכשל." - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/command.php:88 #, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" +msgid "Could not find a user with nickname %s" +msgstr "עידכון המשתמש נכשל." -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Account" -msgstr "אודות" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "צור חשבון חדש" - -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "אין OpenID כזה." - -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "עזרה" - -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "הודעה חדשה" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "הודעה חדשה" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "הרשמות" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: lib/command.php:321 +#, php-format +msgid "Location: %s" msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "אין משתמש כזה." +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "אודות: %s" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: lib/facebookaction.php:268 +#: lib/command.php:431 #, php-format -msgid "To use the %s Facebook Application you need to login " +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "צור חשבון חדש" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "ציבורי" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "תגובת עבור %s" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/command.php:441 #, fuzzy -msgid "Favor this notice" -msgstr "אין הודעה כזו." +msgid "Error saving notice." +msgstr "בעיה בשמירת ההודעה." -#: lib/feedlist.php:64 -msgid "Export data" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -#, fuzzy -msgid "URL of the homepage or blog of the group or topic" -msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " - -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "הרשמות" - -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -#, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" - -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "צא" - -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "נכשלה יצירת OpenID מתוך: %s" -#: lib/grouptagcloudsection.php:56 +#: lib/command.php:602 #, php-format -msgid "Tags in %s group's notices" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/joinform.php:114 +#: lib/common.php:191 #, fuzzy -msgid "Join" -msgstr "היכנס" +msgid "No configuration file found. " +msgstr "אין קוד אישור." -#: lib/leaveform.php:114 -#, fuzzy -msgid "Leave" -msgstr "שמור" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "שם המשתמש או הסיסמה לא חוקיים" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "צור חשבון חדש" +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "ההעלה" + +#: lib/designsettings.php:109 msgid "" -"Bio: %s\n" -"\n" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +#: lib/designsettings.php:170 #, fuzzy -msgid "Send a notice" -msgstr "הודעה חדשה" +msgid "Change colours" +msgstr "שנה סיסמה" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 +#: lib/designsettings.php:191 #, fuzzy -msgid "Available characters" -msgstr "לפחות 6 אותיות" +msgid "Content" +msgstr "התחבר" -#: lib/noticelist.php:426 lib/noticelist.php:429 +#: lib/designsettings.php:204 #, fuzzy -msgid "in reply to" -msgstr "בתגובה ל..." +msgid "Sidebar" +msgstr "חיפוש" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "טקסט" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 +#: lib/designsettings.php:230 #, fuzzy -msgid "Reply" -msgstr "הגב" +msgid "Links" +msgstr "היכנס" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -#, fuzzy -msgid "Delete" -msgstr "מחק" +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "ציבורי" +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "אין הודעה כזו." -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy -msgid "Popular" -msgstr "אנשים" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: lib/searchgroupnav.php:82 -#, fuzzy -msgid "Notice" -msgstr "הודעות" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: lib/galleryaction.php:121 +msgid "Filter tags" msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "הרשמה מרוחקת" +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "הרשמה מרוחקת" +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" +#: lib/galleryaction.php:140 +msgid "Tag" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -#, fuzzy -msgid "User has blocked you." -msgstr "למשתמש אין פרופיל." +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 +#: lib/groupeditform.php:163 #, fuzzy -msgid "Subscribe to this user" -msgstr "ההרשמה אושרה" +msgid "URL of the homepage or blog of the group or topic" +msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " -#: lib/tagcloudsection.php:56 +#: lib/groupeditform.php:168 #, fuzzy -msgid "None" -msgstr "לא" +msgid "Describe the group or topic" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 +#: lib/groupeditform.php:172 #, fuzzy -msgid "Unblock this user" -msgstr "אין משתמש כזה." +msgid "Description" +msgstr "הרשמות" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "הזנות החברים של %s" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "הזנות החברים של %s" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "אין משתמש כזה." -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#: lib/groupnav.php:101 #, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "הזנות החברים של %s" - -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s וחברים" +msgid "%s blocked users" +msgstr "אין משתמש כזה." -#: actions/avatarsettings.php:78 +#: lib/groupnav.php:107 #, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +msgid "Edit %s group properties" msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/groupnav.php:112 #, fuzzy -msgid "Avatar deleted." -msgstr "התמונה עודכנה." +msgid "Logo" +msgstr "צא" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: lib/grouptagcloudsection.php:56 #, 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." +msgid "Tags in %s group's notices" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" -#: actions/facebooksettings.php:124 -#, 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 "" +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "העלאה חלקית." -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "שגיאת מערכת בהעלאת הקובץ." -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "מיקרובלוג מאת %s" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "זהו לא קובץ תמונה, או שחל בו שיבוש." -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " -"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "פורמט התמונה אינו נתמך." -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "אין הודעה כזו." -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "חיפוש ברצף אחרי \"%s\"" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "הודעה חדשה" -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "היכנס" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: lib/leaveform.php:114 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "הזנת זרם הציבורי" +msgid "Leave" +msgstr "שמור" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#: lib/logingroupnav.php:80 #, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "הזנת זרם הציבורי" +msgid "Login with a username and password" +msgstr "שם המשתמש או הסיסמה לא חוקיים" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: lib/logingroupnav.php:86 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "הזנת זרם הציבורי" +msgid "Sign up for a new account" +msgstr "צור חשבון חדש" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format +#: lib/mailbox.php:139 msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +"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 "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +#: lib/mail.php:172 +msgid "Email address confirmation" msgstr "" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "צור" - -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: lib/mail.php:174 #, 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%%%%))" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "אין הודעה כזו." - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "פרופיל" - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "הזנת הודעות של %s" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "הזנת הודעות של %s" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: lib/mail.php:240 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "הזנת הודעות של %s" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s מאזין כעת להודעות שלך ב %2$s. \n" +"\n" +"\t%3$s\n" +" שלך,\n" +" %4$s.\n" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: lib/mail.php:253 #, php-format -msgid "FOAF for %s" +msgid "Location: %s\n" msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "תמונה" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "הגדרות הפרופיל" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: lib/mail.php:257 #, php-format msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +"Bio: %s\n" +"\n" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "קוד האישור הזה אינו מיועד לך!" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: lib/mail.php:288 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" +"You have a new posting address on %1$s.\n" "\n" -"You can see the list of %1$s's favorites here:\n" +"Send email to %2$s to post new messages.\n" "\n" -"%4$s\n" +"More email instructions at %3$s.\n" "\n" "Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "אין משתמש כזה." - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " -"להירשם, לחץ \"בטל\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +"%4$s" msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: lib/mail.php:412 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "" -"אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" +msgid "%s status" msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/mail.php:462 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +msgid "You've been nudged by %s" msgstr "" -"%1$s מאזין כעת להודעות שלך ב %2$s. \n" -"\n" -"\t%3$s\n" -" שלך,\n" -" %4$s.\n" #: lib/mail.php:466 #, php-format @@ -5989,12 +4133,17 @@ msgid "" "\n" "%3$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%4$s\n" msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + #: lib/mail.php:513 #, php-format msgid "" @@ -6008,21 +4157,47 @@ msgid "" "\n" "%4$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%5$s\n" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 #, php-format -msgid "%s sent a notice to your attention" +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: lib/mail.php:613 #, php-format msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" "The notice is here:\n" "\n" @@ -6032,1572 +4207,430 @@ msgid "" "\n" "\t%4$s\n" "\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "חיפוש" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" -#: lib/section.php:106 -msgid "More..." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/all.php:80 actions/all.php:127 -#, php-format +#: lib/mediafile.php:147 msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "אין מסמך כזה." +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "נכשלה ההפניה לשרת: %s" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" -#: actions/block.php:150 +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy -msgid "Block this user from this group" -msgstr "אין משתמש כזה." +msgid "Could not determine file's mime-type!" +msgstr "עידכון המשתמש נכשל." -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "למשתמש אין פרופיל." +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s וחברים" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "אין משתמש כזה." +#: lib/messageform.php:146 +msgid "To" +msgstr "אל" -#: actions/conversation.php:99 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "Conversation" -msgstr "מיקום" +msgid "Available characters" +msgstr "לפחות 6 אותיות" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#: lib/noticeform.php:145 #, fuzzy -msgid "Do not delete this notice" -msgstr "אין הודעה כזו." +msgid "Send a notice" +msgstr "הודעה חדשה" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/noticeform.php:158 #, php-format -msgid "Too many aliases! Maximum %d." +msgid "What's up, %s?" +msgstr "מה המצב %s?" + +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "כתובת אתר הבית '%s' אינה חוקית" +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." +#: lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "אין תוכן!" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/noticelist.php:498 +msgid "Reply to this notice" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#: lib/noticelist.php:499 #, fuzzy -msgid "Could not create aliases." -msgstr "שמירת מידע התמונה נכשל" +msgid "Reply" +msgstr "הגב" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/nudgeform.php:116 +msgid "Nudge this user" 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." +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" msgstr "" -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "הודעה חדשה" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "שגיאה בהכנסת הפרופיל" -#: actions/file.php:38 +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "שגיאה בהכנסת התמונה." + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "שגיאה בהכנסת פרופיל מרוחק" + +#: lib/oauthstore.php:345 #, fuzzy -msgid "No notice" +msgid "Duplicate notice" msgstr "הודעה חדשה" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "הכנסת מנוי חדש נכשלה." -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "אישי" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "שם משתמש לא חוקי." +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "תגובות" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "מועדפים" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "מתשמש" + +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "למשתמש אין פרופיל." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "לא שלחנו אלינו את הפרופיל הזה" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "אין משתמש כזה." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" -#: actions/groupblock.php:155 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +msgid "Tags in %s's notices" msgstr "" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "הרשמות" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "כל המנויים" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "קבוצות" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "מנויים" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "מנויים" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 +#: lib/profileaction.php:177 #, fuzzy -msgid "Couldn't update your design." -msgstr "עידכון המשתמש נכשל." +msgid "User ID" +msgstr "מתשמש" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "חבר מאז" + +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "העדפות נשמרו." +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "ציבורי" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" +#: lib/publicgroupnav.php:82 +msgid "User groups" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/publicgroupnav.php:92 #, fuzzy -msgid "No results." -msgstr "אין תוצאות" +msgid "Popular" +msgstr "אנשים" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "חיפוש" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "חיפוש" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "אנשים" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/groupunblock.php:95 +#: lib/searchgroupnav.php:82 #, fuzzy -msgid "User is not blocked from group." -msgstr "למשתמש אין פרופיל." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +msgid "Notice" +msgstr "הודעות" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "הרשמה מרוחקת" -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "הודעה חדשה" +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "הרשמה מרוחקת" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 +#: lib/subgroupnav.php:99 #, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +msgid "Groups %s is a member of" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/subs.php:52 +#, fuzzy +msgid "User has blocked you." +msgstr "למשתמש אין פרופיל." -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "שמירת הפרופיל נכשלה." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "לא מנוי!" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "מחיקת המנוי לא הצליחה." -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/tagcloudsection.php:56 +#, fuzzy +msgid "None" +msgstr "לא" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "בטל מנוי" -#: actions/openidsettings.php:70 -#, fuzzy, 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 " -"מכאן. [OpenID](%%doc.openid%%)" +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "תמונה" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/userprofile.php:248 #, fuzzy -msgid "View profile designs" +msgid "Edit profile settings" msgstr "הגדרות הפרופיל" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "זוהית. הכנס סיסמה חדשה למטה." - -#: actions/recoverpassword.php:188 +#: lib/userprofile.php:273 #, fuzzy -msgid "Password recover" -msgstr "התבקש שיחזור סיסמה" +msgid "Message" +msgstr "הודעה חדשה" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "שגיאה באישור הקוד." +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "לפני מספר שניות" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "ההרשמה אושרה" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "לפני כדקה" -#: actions/replies.php:179 actions/replies.php:198 +#: lib/util.php:848 #, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +msgid "about %d minutes ago" +msgstr "לפני כ-%d דקות" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "לפני כשעה" -#: actions/replies.php:186 actions/replies.php:205 +#: lib/util.php:852 #, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "אין הודעה כזו." - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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 "" +msgid "about %d hours ago" +msgstr "לפני כ-%d שעות" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "לפני כיום" -#: actions/showfavorites.php:176 +#: lib/util.php:856 #, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "הזנת הודעות של %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "הזנת הודעות של %s" +msgid "about %d days ago" +msgstr "לפני כ-%d ימים" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "הזנת הודעות של %s" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "לפני כחודש" -#: actions/showgroup.php:446 actions/showgroup.php:454 +#: lib/util.php:860 #, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "אין משתמש כזה." +msgid "about %d months ago" +msgstr "לפני כ-%d חודשים" -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "לפני כשנה" -#: actions/showstream.php:121 actions/showstream.php:122 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "הזנת הודעות של %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" +msgid "%s is not a valid color!" +msgstr "לאתר הבית יש כתובת לא חוקית." -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 +#: lib/webcolor.php:123 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "הזנת הודעות של %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "הזנת הודעות של %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "עידכון המשתמש נכשל." - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "עידכון המשתמש נכשל." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "הסטטוס של %1$s ב-%2$s " - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "מיקרובלוג מאת %s" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "כל המנויים" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "הגדרות הפרופיל" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "לא שלחנו אלינו את הפרופיל הזה" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "בעיה בשמירת ההודעה." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "למשתמש אין פרופיל." - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "פרופיל" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "ההעלה" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "שנה סיסמה" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "התחבר" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "חיפוש" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "היכנס" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "אין משתמש כזה." - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "אין משתמש כזה." - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "אין תוכן!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "מתשמש" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "חיפוש" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "לאתר הבית יש כתובת לא חוקית." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "אין הודעה כזו." - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "נכשלה ההפניה לשרת: %s" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "כבר נכנסת למערכת!" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "נכשלה ההפניה לשרת: %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "לא שלחנו אלינו את הפרופיל הזה" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "נכשלה יצירת OpenID מתוך: %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "פרופיל" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "לא שלחנו אלינו את הפרופיל הזה" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "התמונה עודכנה." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "פורמט התמונה אינו נתמך." - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "מיקרובלוג מאת %s" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "המשתמש אליו אתה מאזין אינו קיים." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "לא מורשה." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "גירסה לא מוכרת של פרוטוקול OMB" - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "אין הודעה כזו." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "אין הודעה כזו." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "מיקרובלוג מאת %s" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." -"register%%) לחשבון " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "מיקרובלוג מאת %s" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "התחבר" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Not a valid profile URL (no YADIS document)." - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "אסימון הבקשה לא התקבל." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "הזנת הודעות של %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "הזנת הודעות של %s" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "הזנת הודעות של %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "תגובת עבור %s" - -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "הזנות החברים של %s" - -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "הזנות החברים של %s" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "הזנות החברים של %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "הזנת הודעות של %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "הודעות" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "הזנת הודעות של %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " -"להירשם, לחץ \"בטל\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " -"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " -"דחיית מנוי." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "סוג התמונה של '%s' אינו מתאים" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "נכשלה ההפניה לשרת: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "הודעה חדשה" - -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "עידכון המשתמש נכשל." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "תגובת עבור %s" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "בעיה בשמירת ההודעה." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "אין קוד אישור." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "הודעה חדשה" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "עידכון המשתמש נכשל." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "הודעה חדשה" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "תוכן ההודעה לא חוקי" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "נכשלה יצירת OpenID מתוך: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/is/LC_MESSAGES/statusnet.mo b/locale/is/LC_MESSAGES/statusnet.mo index 29242098c..f1850515b 100644 Binary files a/locale/is/LC_MESSAGES/statusnet.mo and b/locale/is/LC_MESSAGES/statusnet.mo differ diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 6f8c4816f..c4fad2f35 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -5,3127 +5,1973 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:36+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:18+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Leita í bablveitu að \"%s\"" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"nema þessi persónulegu gögn: lykilorð, tölvupóstfang, snarskilaboðafang (IM " -"netfang), símanúmer." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Ekkert þannig merki." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "frá" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Enginn svoleiðis notandi." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Færslur sem svar til %2$s" +msgid "%s and friends, page %d" +msgstr "%s og vinirnir, síða %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s" +msgid "%s and friends" +msgstr "%s og vinirnir" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 +#: actions/all.php:99 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -"%1$s hefur boðið þér að slást í hópinn með þeim á %2$s (%3$s).\n" -"\n" -"%2$s er örbloggsþjónusta sem leyfir þér að fylgjast með með fólki sem þú " -"þekkir eða öðru áhugaverðu fólki í rauntíma.\n" -"\n" -"Þú getur líka sent inn fréttir af þér og deilt hugleiðingum og netveru þinni " -"með fólki sem þekkir til þín. Þetta er frábær leið til þess að kynnast fólki " -"sem hefur sömu áhugamál og þú.\n" -"\n" -"%1$s sagði:\n" -"\n" -"%4$s\n" -"\n" -"Þú getur séð persónulega síðu %1$s á %2$s hér:\n" -"\n" -"%5$s\n" -"\n" -"Ef þig langar til að prófa þjónustuna, smelltu þá á hlekkinn hér fyrir neðan " -"til að taka þessu boði.\n" -"\n" -"%6$s\n" -"\n" -"Ef ekki, þá getur þú hunsað þessi skilaboð. Takk fyrir tímann og " -"þolinmæðina.\n" -"\n" -"Með bestu kveðju, %2$s\n" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s er að hlusta á bablið þitt á %2$s." -#: ../lib/mail.php:126 +#: actions/all.php:107 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -"%1$s er að hlusta á bablið þitt á %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Með kveðju,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s færslur sem svara færslum frá %2$s / %3$s." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:115 #, php-format -msgid "%1$s's status on %2$s" -msgstr "Staða %1$s á %2$s" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" - -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "%s Opinber bablveita" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s og vinirnir" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "Almenningsrás %s" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "Staða %s" +msgid "Feed for friends of %s (Atom)" +msgstr "" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/all.php:127 #, php-format -msgid "%s timeline" -msgstr "Rás %s" +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/all.php:132 #, php-format -msgid "%s updates from everyone!" -msgstr "%s færslur frá öllum!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -"(Þú ættir að fá tölvupóst eftir smá stund. Í tölvupóstinum eru leiðbeiningar " -"um það hvernig þú staðfestir tölvupóstfangið þitt.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/all.php:134 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." -"broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** er örbloggsþjónusta." - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "Fulls nafns eða stuttnefnis efnishöfunda skal vera getið." - -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/all.php:165 +msgid "You and friends" msgstr "" -"1-64 lágstafir eða tölustafir, engin greinarmerki eða bil. Nauðsynlegt." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 eða fleiri tákn" +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Færslur frá %1$s og vinum á %2$s!" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 eða fleiri tákn og ekki gleyma því!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Aðferð í forritsskilum fannst ekki!" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 eða fleiri tákn. Nauðsynlegt" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Þessi aðferð krefst POST." -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Staðfestingarlykill var sendur á snarskilaboðafangið sem þú varst að bæta " -"við. Þú verður að leyfa %s að senda snarskilaboð til þín." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"Staðfestingarlykill var sendur á tölvupóstfangið sem þú varst að bæta við. " -"Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " -"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. " -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Staðfestingarlykill var sendur á símanúmerið sem þú varst að bæta við. " -"Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " -"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann." - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Aðferð í forritsskilum fannst ekki!" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Notandi hefur enga persónulega síðu." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Aðferð í forritsskilum er í þróun." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Mistókst að loka á notanda." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Um" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Mistókst að opna fyrir notanda." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Samþykkja" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Enginn texti í skilaboðum!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Bæta við" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Þetta er of langt. Hámarkslengd skilaboða er 140 tákn." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Bæta við OpenID" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Móttakandi fannst ekki." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Bæta við eða fjarlægja OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Tölvupóstfang" +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Tölvupóstfang vina sem þú vilt bjóða (eitt póstfang í hverja línu)" +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Bein skilaboð til %s" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Allar áskriftir" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "Öll bein skilaboð send frá %s" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 +#: actions/apidirectmessage.php:101 #, php-format -msgid "All updates for %s" -msgstr "Allar færslur %s" +msgid "Direct messages to %s" +msgstr "Bein skilaboð til %s" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apidirectmessage.php:105 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Allar færslur sem passa við \"%s\"" +msgid "All the direct messages sent to %s" +msgstr "Öll bein skilaboð til %s" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Þú hefur nú þegar skráð þig inn." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Engin staða fundin með þessu kenni." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Þú ert nú þegar áskrifandi!" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Ertu viss um að þú viljir eyða þessu babli?" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Gat ekki búið til uppáhald." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Heimila áskriftir" - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Sjálfvirk innskráning í framtíðinni. Ekki nota þetta á tölvu sem aðrir deila " -"með þér!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -"Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér " -"(best fyrir ómannlega notendur)" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Mynd" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Gat ekki eytt uppáhaldi." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Mynd hefur verið uppfærð." +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Get ekki fylgst með notanda: Notandinn finnst ekki." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Býð eftir staðfestingu frá þessu netfangi. Athugaðu Jabber/GTalk aðganginn " -"þinn. Þar ættu að vera skilaboð með ítarlegri leiðbeiningum. (Hefurðu bætt %" -"s við í vinalistann þinn?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +msgid "Could not follow user: %s is already on your list." msgstr "" -"Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og " -"ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Býð eftir staðfestingu varðandi þetta símanúmer." +"Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Eldri »" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Get ekki fylgst með notanda: Notandinn finnst ekki." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Lýsing" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)." +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Tvo notendakenni eða skjáarnöfn verða að vera uppgefin." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Get ekki eytt þessu babli." +#: actions/apifriendshipsshow.php:135 +msgid "Could not determine source user." +msgstr "" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Get ekki lesið slóðina fyrir myndina '%s'" +#: actions/apifriendshipsshow.php:143 +msgid "Could not find target user." +msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Get ekki vistað nýja lykilorðið." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Gat ekki búið til hóp." -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Hætta við" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +msgid "Could not create aliases." +msgstr "" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Get ekki útbúið OpenID notandahlut." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Gat ekki skráð hópmeðlimi." -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Get ekki staðlað þetta Jabber kenni" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Get ekki staðlað þetta tölvupóstfang" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Breyta" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Ekki tækt stuttnefni." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Breyta tölvupóstumsjón" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Heimasíða er ekki gild vefslóð." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Breyta lykilorði" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Breyta lykilorðinu þínu" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Breyta persónulegu stillingunum þínum" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Staðfesta" +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Staðfesta tölvupóstfang" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Hætt við staðfestingu." +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Staðfestingarlykill" +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Staðfestingarlykill fannst ekki." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Þú ert nú þegar meðlimur í þessum hópi" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -"Til hamingju %s! Frábært að þú skulir hafa skráð þig á %%%%site.name%%%%. " -"Héðan vilt þú kannski...\n" -"\n" -"* Fara á [persónulegu síðuna þína](%s) senda inn þitt fyrsta babl.\n" -"* Bæta við [Jabber/GTalk snarskilaboðafangi](%%%%action.imsettings%%%%) svo " -"þú getir sent inn babl í snarskilaboðum.\n" -"* [Leita að fólki](%%%%action.peoplesearch%%%%) sem þú þekkir eða hefur sömu " -"áhugamál og þú. \n" -"* Uppfæra [persónulegu síðuna](%%%%action.profilesettings%%%%) þína til þess " -"að leyfa öðrum að kynnast þér betur.\n" -"* Lesa [vefleiðbeiningarnar](%%%%doc.help%%%%) til þess að læra að babla " -"betur.\n" -"\n" -"Takk fyrir að skrá þig og við vonum að þú njótir þjónustunnar." -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Tengjast" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Gat ekki bætt notandanum %s í hópinn %s" -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Tengja aðgang sem nú þegar er til" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Þú ert ekki meðlimur í þessum hópi." -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Tengiliður" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Gat ekki búið til OpenID eyðublað: %s" +msgid "%s groups" +msgstr "Hópar %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" -"Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Hópsaðgerðir" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Get ekki fylgst með notanda: Notandinn finnst ekki." +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Hópar %s" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "Gat ekki framsent til vefþjóns: %s" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Hópar sem %s er meðlimur í" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Gat ekki vistað myndupplýsingar" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Þessi aðferð krefst POST eða DELETE." -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Gat ekki vistað nýjar persónuupplýsingar" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Þú getur ekki eytt stöðu annars notanda." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Gat ekki farið í áskrift." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Engin staða með þessu kenni fannst." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Gat ekki breytt beiðnistókum í aðgangstóka." +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Fannst ekki" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Gat ekki eytt tölvupóstsstaðfestingu." - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Gat ekki eytt áskrift." +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Gat ekki fundið neinar notendastöður." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Skráarsnið myndar ekki stutt." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Gat ekki komist yfir beiðnistóka." +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Uppáhaldsbabl frá %s" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Gat ekki sett inn staðfestingarlykil." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Gat ekki sett inn nýja áskrift." +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "Rás %s" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Gat ekki vistað persónulega síðu." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift." +#: actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Gat ekki uppfært skráarfærslu notanda." +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s færslur sem svara færslum frá %2$s / %3$s." -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Gat ekki uppfært notanda." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "Almenningsrás %s" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Búa til" +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s færslur frá öllum!" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Búa til nýjan notanda með þessu stuttnefni." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "Babl merkt með %s" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Búa til nýjan aðgang" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Búa til nýjan aðgang fyrir OpenID sem nú þegar hefur notanda." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Fannst ekki." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Núverandi staðfesta Jabber/GTalk snarskilaboðafangið." +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Núverandi staðfesta SMS símanúmerið." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Ekkert stuttnefni." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Núverandi staðfesta tölvupóstfangið." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Engin stærð." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Í gangi núna" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Ótæk stærð." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Mynd" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 +#: actions/avatarsettings.php:78 #, php-format -msgid "DB error inserting reply: %s" -msgstr "Gagnagrunnsvilla við innsetningu svars: %s" +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Eyða babli" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Notandi með enga persónulega síðu sem passar við" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Lýstu þér og áhugamálum þínum í 140 táknum" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Stillingar fyrir mynd" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Tölvupóstur" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Upphafleg mynd" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Tölvupóstfang" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Forsýn" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Tölvupóstsstillingar" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Eyða" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Tölvupóstfang er nú þegar skráð." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Hlaða upp" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Staðfesting tölvupóstfangs" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Skera af" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Tölvupóstfang eins og \"notandi@eitthvað.is\"" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Það kom upp vandamál með setutókann þinn. Vinsamlegast reyndu aftur." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Tölvupóstföng" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Bjóst ekki við innsendingu eyðublaðs." -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Sláðu inn stuttnefni eða tölvupóstfang." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "" +"Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Sláðu inn lykilinn sem þú fékkst í símann þinn." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Týndum skráargögnunum okkar" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Villa kom upp í heimilun tóka" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Mynd hefur verið uppfærð." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Villa kom upp í tengingu notanda við OpenID." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Mistókst að uppfæra mynd" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Villa kom upp við að tengja notanda." +#: actions/avatarsettings.php:387 +msgid "Avatar deleted." +msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Villa kom upp við að setja inn mynd" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Ekkert stuttnefni" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Villa kom upp við að setja inn nýja persónulega síðu" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Enginn þannig hópur" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Villa kom upp við að setja inn persónulega fjarsíðu" +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Villa kom upp í vistun netfangsstaðfestingar." +#: actions/blockedfromgroup.php:93 +#, php-format +msgid "%s blocked profiles, page %d" +msgstr "" -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Villa kom upp í vistun persónulegrar fjarsíðu" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Villa kom upp í vistun persónulegu síðunnar." +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Villa kom upp í vistun notandans." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Opna" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Villa kom upp í vistun notanda: ótækt." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Opna á þennan notanda" -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Villa kom upp í stillingu notanda." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Ekki innskráð(ur)." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Villa kom upp í uppfærslu persónulegu síðunnar" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Engin persónuleg síða tilgreind" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Engin persónulega síða með þessu einkenni" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Villa kom upp varðandi staðfestingarlykilinn." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Loka á notanda" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Stuttnefni er nú þegar til" +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "Spurt og svarað" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Nei" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Mistókst að uppfæra mynd" +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Vinaveita %s" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Já" -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Svaraveita %s" +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Merkjaveita %s" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Finna innihald babls" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Mistókst að vista upplýsingar um notendalokun" -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Finna persónur á þessu vefsvæði" +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Ljósmynd" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Af öryggisástæðum, vinsamlegast sláðu aftur inn notendanafnið þitt og " -"lykilorð áður en þú breytir stillingunum þínum." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Enginn staðfestingarlykill." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Fullt nafn" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Staðfestingarlykill fannst ekki." -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Þessi staðfestingarlykill er ekki fyrir þig!" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Hjálp" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Óþekkt gerð tölvupóstfangs %s" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Heim" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Heimasíða" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Gat ekki uppfært notanda." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Heimasíða er ekki gild vefslóð." +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Gat ekki eytt tölvupóstsstaðfestingu." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Ég vil babla í gegnum tölvupóst." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Staðfesta tölvupóstfang" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "Snarskilaboð" +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "" +"Þetta tölvupóstfang, \"%s\", hefur verið staðfest fyrir aðganginn þinn." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Snarskilaboðafang" +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Snarskilaboðastillingar" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Babl" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Ef ert nú þegar með aðgang, skráðu þig inn með notendanafni og lykilorði til " -"þess að tengjast OpenID aðganginum þínum." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Ekkert svoleiðis babl." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Ef þig langar til það bæta við OpenID í aðganginn þinn, sláðu það þá inn í " -"reitinn hér fyrir neðan og smelltu á \"Bæta við\"." +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Get ekki eytt þessu babli." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +#: actions/deletenotice.php:103 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Ef þú hefur gleymt eða tapað lykilorðinu þínu getur þú fengið nýtt sent á " -"tölvupóstfangið sem þú hefur vistað í notendaaðganginum þínum." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Móttökutölvupóstur" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Eyða babli" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Móttökutölvupóstfang fjarlægt." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Ertu viss um að þú viljir eyða þessu babli?" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Rangt eldra lykilorð" +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Rangt notendanafn eða lykilorð." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Eyða þessu babli" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -"Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið " -"sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Ótæk myndarslóð '%s'" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Þetta babl er ekki í uppáhaldi!" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Ótækt tölvupóstfang: %s" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Bæta við sem uppáhaldsbabli" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Ótæk heimasíða '%s'" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Ekkert svoleiðis skjal." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 +#: actions/editgroup.php:56 #, php-format -msgid "Invalid license URL '%s'" -msgstr "Ótæk leyfisslóð '%s'" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Ótækt bablinnihald" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Ótækt veffang babls" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Ótækt veffang babls" +msgid "Edit %s group" +msgstr "Breyta hópnum %s" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Ótækt veffang persónulegrar síðu '%s'." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Ótækt veffang persónulegrar síðu (vitlaust snið)" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Þú verður að vera stjórnandi til að geta breytt hópnum" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Ótæku veffangi persónulegrar síðu skilað af vefþjóni." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Notaðu þetta eyðublað til að breyta hópnum." -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Ótæk stærð." +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Ótækt notendanafn eða lykilorð." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Gat ekki uppfært hóp." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Boðskort hefur verið sent út" +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Valmöguleikar vistaðir." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Boðskort sent á eftirfarandi aðila:" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Tölvupóstsstillingar" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Bjóða" +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Stilla það hvernig þú færð tölvupóst frá %%site.name%%." -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Bjóða nýjum notendum að vera með" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Tölvupóstfang" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Það keyrir [StatusNet](http://status.net/) örbloggshugbúnaðinn, útgáfu %s, " -"sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Núverandi staðfesta tölvupóstfangið." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber-kennið tilheyrir öðrum notanda." +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Fjarlægja" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format +#: actions/emailsettings.php:113 msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Jabber eða GTalk netfang eins og \"notandi@eitthvað.is\". Fyrst skaltu vera " -"viss um að bæta %s við í vinalistann þinn í snarskilaboðaforritinu þínu eða " -"á GTalk." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Tungumál" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Tungumál er of langt (í mesta lagi 50 stafir)." - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Staðsetning" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." +"Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og " +"ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Innskráning" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Hætta við" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Innskráning með [OpenID](%%doc.openid%%) aðgangi." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Tölvupóstfang" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með " -"notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%" -"action.openidlogin%%). " +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Tölvupóstfang eins og \"notandi@example.org\"" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Útskráning" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Bæta við" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Lengra nafn, ákjósalegast að það sé \"rétta\" nafnið þitt" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Móttökutölvupóstur" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Tapað eða gleymt lykilorð?" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Sendu tölvupóst á þetta póstfang til þess að senda inn nýtt babl." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Búa til nýtt tölvupóstfang til að senda til. Skrifar yfir það gamla." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Stilla það hvernig þú færð tölvupóst frá %%site.name%%." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Nýtt" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Meðlimur síðan" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Örblogg frá %s" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Farsímafélagið þitt. Ef þú veist um farsímafélag sem tekur á móti SMS í " -"gegnum tölvupóst sem er ekki í þessum lista, sendu okkur tölvupóst í %s og " -"láttu okkur vita." - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Textinn og skrárnar mínar eru aðgengilegar undir " - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Nýtt" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Stillingar" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Nýtt tölvupóstfang til að senda á %s" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Sendu mér tilkynningu varðandi nýjar áskriftir í gegnum tölvupóst." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "Nýju móttökutölvupóstfangi bætt við." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nýtt stuttnefni" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð." -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nýtt babl" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nýtt lykilorð" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Leyfa vinum að ýta við mér og senda mér tölvupóst." -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Tókst að vista nýtt lykilorð. Þú ert núna innskráð(ur)" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Ég vil babla í gegnum tölvupóst." -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Stuttnefni" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Birta MicroID fyrir tölvupóstfangið mitt." -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Vista" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Stillingar vistaðar." -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Stuttnefni ekki leyfilegt." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Ekkert tölvupóstfang." -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Stuttnefni notandans sem þú vilt fylgja" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Get ekki staðlað þetta tölvupóstfang" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Stuttnefni eða tölvupóstur" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Ekki tækt tölvupóstfang" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Nei" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Þetta er nú þegar tölvupóstfangið þitt." -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Ekkert Jabber-kenni" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Þetta tölvupóstfang tilheyrir öðrum notanda." -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Engin heimildarbeiðni!" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Gat ekki sett inn staðfestingarlykil." -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Ekkert farsímafélag valið." +#: actions/emailsettings.php:358 +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 "" +"Staðfestingarlykill var sendur á tölvupóstfangið sem þú varst að bæta við. " +"Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " +"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. " -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Enginn lykill sleginn inn" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Engin staðfesting í bið sem þarf að hætta við." -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Enginn staðfestingarlykill." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Þetta er rangt snarskilaboðafang." -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Ekkert innihald!" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Hætt við staðfestingu." -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Ekkert tölvupóstfang." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Þetta er ekki tölvupóstfangið þitt." -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Ekkert kenni." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Tölvupóstfangið hefur verið fjarlægt." -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 #: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Ekkert móttökutölvupóstfang." -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Ekkert stuttnefni uppgefið hjá hinum vefþjóninum." +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Gat ekki uppfært skráarfærslu notanda." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Ekkert stuttnefni." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Móttökutölvupóstfang fjarlægt." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Engin staðfesting í bið sem þarf að hætta við." +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "Nýju móttökutölvupóstfangi bætt við." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Ekkert símanúmer." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Vinsælt babl" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Ekkert veffang persónulegrar síðu skilað af vefþjóni." +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Vinsælt babl, síða %d" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Ekkert tölvupóstfang á skrá fyrir þennan notanda." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Vinsælasta bablið á síðunni um þessar mundir." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Engin beiðni fundin!" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Engar niðurstöður" +#: 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/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Engin stærð." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Engin staða fundin með þessu kenni." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Uppáhaldsbabl %s" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Engin staða með þessu kenni fannst." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Ekkert svoleiðis OpenID." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Þetta babl er nú þegar í uppáhaldi!" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Ekkert svoleiðis skjal." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Ekki lengur í uppáhaldi" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Ekkert svoleiðis babl." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Notendur í sviðsljósinu" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Enginn svoleiðis staðfestingarlykill." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Notendur í sviðsljósinu, síða %d" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Engin svoleiðis áskrift" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Enginn svoleiðis notandi." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Úrval nokkurra frábærra notenda á %s" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Enginn notandi með þetta tölvupóstfang eða notendanafn" +#: actions/file.php:34 +msgid "No notice id" +msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Enginn sem hægt er að sýna!" +#: actions/file.php:38 +msgid "No notice" +msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Þetta er ekki staðfestingarlykill." +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Ekki skráður notandi." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Enginn stuðningur við gagnasnið." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Bjóst ekki við þessu svari!" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Ekki tækt Jabber-kenni" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Notandi sem verið er að hlusta á er ekki til." -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Ekki tækt OpenID" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Þú getur notað staðbundna áskrift!" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Ekki tækt tölvupóstfang" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Ekki tækt tölvupóstfang." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Engin heimild." -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Ekki tækt stuttnefni." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Gat ekki breytt beiðnistókum í aðgangstóka." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Ekki tækt veffang á persónulega síðu (röng þjónusta)." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Óþekkt útgáfa OMB samskiptamátans." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Ekki tækt veffang á persónulega síðu (XRDS ekki skilgreint)." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Ekki tækt veffang á persónulega síðu (ekkert YADIS skjal)." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Enginn þannig hópur." -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Annaðhvort ekki mynd eða þá að skráin er gölluð." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Ekkert svoleiðis babl." -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Engin heimild." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Týndum skránni okkar" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Bjóst ekki við þessu svari!" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Fannst ekki" +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Ekki innskráð(ur)." +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Ekki í áskrift!" +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Leit í babli" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 +#: actions/groupblock.php:155 #, php-format -msgid "Notice feed for %s" -msgstr "Bablveita fyrir %s" +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Babl hefur enga persónulega síðu" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Babl" +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Ekkert einkenni" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Babl merkt með %s" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Eldra lykilorð" +#: actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Uppsetning OpenID aðgangs" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Sjálfvirk innsending OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID notendanafn" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "Veffang OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID heimild afturkölluð." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Tókst ekki að fá OpenID heimild: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID mistókst: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID fjarlægt." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Stillingar OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Upphal að hluta til." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +msgid "Couldn't update your design." +msgstr "" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Lykilorð" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" +msgstr "" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Lykilorð og staðfesting passa ekki saman." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +msgid "Design preferences saved." +msgstr "" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Lykilorð verður að vera 6 tákn eða fleiri." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Einkennismynd hópsins" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Beiðni um að endurheimta lykilorð hefur verið send inn" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Lykilorð vistað." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Lykilorðin passa ekki saman." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Einkennismynd uppfærð." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Fólk" +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Tókst ekki að uppfæra einkennismynd" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Leit að fólki" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "Hópmeðlimir %s" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Leit að fólki" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "Hópmeðlimir %s, síða %d" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Persónulegt" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Listi yfir notendur í þessum hóp." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Persónuleg skilaboð" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Stjórnandi" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Símanúmer, með svæðisnúmeri ef við á, án greinarmerkja eða bila" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Loka" -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Loka á þennan notanda" + +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -"Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir " -"gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " -"áskrifandi að babli, smelltu þá á \"Hætta við\"." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Senda inn babl þegar Jabber/GTalk staðan breytist." +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Stillingar" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Stillingar vistaðar." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Tungumál (ákjósanlegt)" +#: actions/groupsearch.php:52 +#, php-format +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 "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Friðhelgi" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Hópleit" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Vandamál komu upp við að vista babl." +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Persónuleg síða" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Veffang persónulegrar síðu" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Stillingar persónulegrar síðu" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Hópar" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Persónuleg síða þekkist ekki" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Hópar, síða %d" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Skilaboðaveita almenningsrásarinnar" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Almenningsrás" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Búa til nýjan hóp" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Birta MicroID fyrir Jabber/GTalk netfangið mitt." - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Birta MicroID fyrir tölvupóstfangið mitt." - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Nýleg merki" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Endurheimta" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Endurheimta lykilorð" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Lykill fyrir endurheimtingu óþekkts notanda." - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Nýskrá" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Nýskráning ekki leyfð." - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Nýskráning tókst" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Hafna" +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Muna eftir mér" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Vill kom upp við að aflétta notendalokun." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Persónuleg fjarsíða með engri persónulegri síðu sem passar" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Snarskilaboðastillingar" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Fara í fjaráskrift" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Þú getur sent og tekið á móti babli í gegnum Jabber/GTalk " +"[snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir " +"neðan og stilltu notkunina." -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Fjarlægja" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Þessi síða er ekki aðgengileg í " -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Fjarlægja OpenID" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Núverandi staðfesta Jabber/GTalk snarskilaboðafangið." -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/imsettings.php:114 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"Að fjarlægja þetta eina OpenID sem þú ert með gerir innskráningu ómögulega! " -"Ef þú þarft að fjarlægja það, búðu þá til nýtt OpenID fyrst." +"Býð eftir staðfestingu frá þessu netfangi. Athugaðu Jabber/GTalk aðganginn " +"þinn. Þar ættu að vera skilaboð með ítarlegri leiðbeiningum. (Hefurðu bætt %" +"s við í vinalistann þinn?)" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Svör" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Snarskilaboðafang" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/imsettings.php:126 #, php-format -msgid "Replies to %s" -msgstr "Svör við %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Endurstilla" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Endurstilla lykilorð" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber eða GTalk netfang eins og \"notandi@eitthvað.is\". Fyrst skaltu vera " +"viss um að bæta %s við í vinalistann þinn í snarskilaboðaforritinu þínu eða " +"á GTalk." -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS símanúmer" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Sendur mér babl í gegnum Jabber/GTalk." -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS stillingar" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Senda inn babl þegar Jabber/GTalk staðan breytist." -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS staðfesting" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að." -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Sama og lykilorðið hér fyrir ofan" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Birta MicroID fyrir Jabber/GTalk netfangið mitt." -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Ekkert Jabber-kenni" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Vista" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Get ekki staðlað þetta Jabber kenni" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Leita" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Ekki tækt Jabber-kenni" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Leita í bablveitu" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Þetta er nú þegar Jabber-kennið þitt." -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Leita í innihaldi babls á %%site.name%%. Leitarorð eru aðskilin með bili og " -"verða að vera að minnsta kosti 3 tákn." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber-kennið tilheyrir öðrum notanda." -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/imsettings.php:327 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -"Leita að fólki á %%site.name%% eftir nafni, staðsetningu eða áhugamáli. " -"Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Veldu farsímafyrirtæki" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Senda" +"Staðfestingarlykill var sendur á snarskilaboðafangið sem þú varst að bæta " +"við. Þú verður að leyfa %s að senda snarskilaboð til þín." -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Sendu tölvupóst á þetta póstfang til þess að senda inn nýtt babl." +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Þetta er ekki Jabber-kennið þitt." -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Sendu mér tilkynningu varðandi nýjar áskriftir í gegnum tölvupóst." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Innhólf %s - síða %d" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Sendur mér babl í gegnum Jabber/GTalk." +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Innhólf %s" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -"Sendu mér babl í gegnum SMS. Ég veit að það er möguleiki að " -"farsímafyrirtækið rukki fyrir móttöku á SMSunum." +"Þetta er innhólfið þitt sem sýnir persónuleg skilaboð sem voru send til þín." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -"Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að." - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Stillingar" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Stillingar vistaðar." +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Þú verður að vera innskráð(ur) til að geta boðið öðrum að nota %s" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Sýni vinsælustu merki síðustu viku" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Ótækt tölvupóstfang: %s" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Einhver annar hefur þetta OpenID nú þegar." +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Boðskort hefur verið sent út" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Eitthvað undarlegt gerðist." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Bjóða nýjum notendum að vera með" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Því miður er móttökutölvupóstur ekki leyfður." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Þú ert nú þegar í áskrift að þessum notendum:" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Afsakið en þetta er ekki móttökutölvupóstfangið þitt." +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Frumþula" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Þetta fólk er nú þegar notendur og þú varðst sjálfkrafa áskrifandi að þeim:" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Tölfræði" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Boðskort sent á eftirfarandi aðila:" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Vista OpenID fannst ekki." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Gerast áskrifandi" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Við sendum þér tilkynningu þegar þeir sem þú býður samþykkja boðskortið og " +"skrá sig á síðuna. Takk fyrir að stækka samfélagið!" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Áskrifendur" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Notaðu þetta eyðublað til þess að bjóða vinum þínum og kunningjum að nota " +"þessa örbloggsþjónustu." -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Áskrift heimiluð" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Tölvupóstföng" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Áskrift hafnað" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Tölvupóstfang vina sem þú vilt bjóða (eitt póstfang í hverja línu)" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Áskriftir" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Persónuleg skilaboð" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Kerfisvilla kom upp við upphal skráar." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Merki" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Senda" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Texti" +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Textaleit" +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s hefur boðið þér að slást í hópinn með þeim á %2$s (%3$s).\n" +"\n" +"%2$s er örbloggsþjónusta sem leyfir þér að fylgjast með með fólki sem þú " +"þekkir eða öðru áhugaverðu fólki í rauntíma.\n" +"\n" +"Þú getur líka sent inn fréttir af þér og deilt hugleiðingum og netveru þinni " +"með fólki sem þekkir til þín. Þetta er frábær leið til þess að kynnast fólki " +"sem hefur sömu áhugamál og þú.\n" +"\n" +"%1$s sagði:\n" +"\n" +"%4$s\n" +"\n" +"Þú getur séð persónulega síðu %1$s á %2$s hér:\n" +"\n" +"%5$s\n" +"\n" +"Ef þig langar til að prófa þjónustuna, smelltu þá á hlekkinn hér fyrir neðan " +"til að taka þessu boði.\n" +"\n" +"%6$s\n" +"\n" +"Ef ekki, þá getur þú hunsað þessi skilaboð. Takk fyrir tímann og " +"þolinmæðina.\n" +"\n" +"Með bestu kveðju, %2$s\n" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Þetta OpenID tilheyrir þér ekki." +#: actions/joingroup.php:60 +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/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Þú ert nú þegar meðlimur í þessum hópi" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Þessi staðfestingarlykill er ekki fyrir þig!" +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "Gat ekki bætt notandanum %s í hópinn %s" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Þetta tölvupóstfang tilheyrir öðrum notanda." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s bætti sér í hópinn %s" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Þessi skrá er of stór." +#: actions/leavegroup.php:60 +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." -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Þetta er nú þegar Jabber-kennið þitt." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "Þú ert ekki meðlimur í þessum hópi." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Þetta er nú þegar tölvupóstfangið þitt." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Gat ekki fundið meðlimaskrá." -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Þetta er nú þegar símanúmerið þitt." +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Þetta er ekki Jabber-kennið þitt." +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s gekk úr hópnum %s" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Þetta er ekki tölvupóstfangið þitt." +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Þú hefur nú þegar skráð þig inn." -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Þetta er ekki símanúmerið þitt." +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Ótækt bablinnihald" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Þetta er rangt snarskilaboðafang." +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Rangt notendanafn eða lykilorð." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Þetta er rangur staðfestingarlykill." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Villa kom upp í stillingu notanda." -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Þetta símanúmer tilheyri nú þegar öðrum notanda." +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Innskráning" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." +#: actions/login.php:243 +msgid "Login to site" +msgstr "Skrá þig inn á síðuna" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Þetta er of langt. Hámarkslengd babls er 255 tákn." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Stuttnefni" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Lykilorð" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Muna eftir mér" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" msgstr "" -"Þetta tölvupóstfang, \"%s\", hefur verið staðfest fyrir aðganginn þinn." +"Sjálfvirk innskráning í framtíðinni. Ekki nota þetta á tölvu sem aðrir deila " +"með þér!" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Tölvupóstfangið hefur verið fjarlægt." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Tapað eða gleymt lykilorð?" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 +#: actions/login.php:282 msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" -"Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu " -"leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " -"þinn er;" +"Af öryggisástæðum, vinsamlegast sláðu aftur inn notendanafnið þitt og " +"lykilorð áður en þú breytir stillingunum þínum." -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 +#: actions/login.php:286 +#, fuzzy, php-format msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" -"Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu " -"leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Þetta er fólkið sem hlustar á bablið í %s." +"Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með " +"notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%" +"action.openidlogin%%). " -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Þetta er fólkið sem hlustar á bablið í þér." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/makeadmin.php:95 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Þetta er fólkið sem %s hlustar á bablið í." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Þetta er fólkið sem þú hlustar á bablið í." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +msgid "%s is already an admin for group \"%s\"." msgstr "" -"Þetta fólk er nú þegar notendur og þú varðst sjálfkrafa áskrifandi að þeim:" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -"Þessi staðfestingarlykill er of gamall. Vinsamlegast byrjaðu aftur upp á " -"nýtt." -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" msgstr "" -"Þetta eyðublað ætti að sendast inn sjálfkrafa. Ef ekki smelltu þá á " -"innsendingartakkann til að fara til OpenID þjónustuaðilans þíns." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Þetta er í fyrsta skipti sem þú skráir þig inn á %s þannig að við verðum að " -"tengja OpenID aðganginn þinn við staðbundinn aðgang. Þú getur annaðhvort " -"búið til nýjan aðgang eða tengst við aðgan sem þú hefur nú þegar búið til." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Þessi aðferð krefst POST eða DELETE." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Engin núverandi staða" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Þessi aðferð krefst POST." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Nýr hópur" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" -"Þessi síða er ekki aðgengileg í margmiðlunargerðinni sem þú tekur á móti" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Tímabelti" +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Ný skilaboð" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Tímabelti ekki valið." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Þú getur ekki sent þessum notanda skilaboð." -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Ekkert innihald!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Enginn móttökuaðili tilgreindur." + +#: actions/newmessage.php:164 lib/command.php:370 msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -"Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%) eða " -"[nýskráð þig](%%action.register%%). Ef þú hefur nú þegar búið til aðgang á " -"[samvirkandi örbloggsþjónustu](%%doc.openmublog%%), sláðu þá inn veffang " -"persónulegu síðunnar þinnar hér fyrir neðan." +"Ekki senda þér skilaboð. Þú getur sagt þetta í hljóði við sjálfa(n) þig í " +"staðinn." -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Tvo notendakenni eða skjáarnöfn verða að vera uppgefin." - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -"Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru " -"vefsvæði" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu" +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Bein skilaboð send til %s" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Bjóst ekki við innsendingu eyðublaðs." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Ajax villa" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Bjóst ekki við endurstillingu lykilorðs." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nýtt babl" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Óþekkt aðgerð" +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Babl sent inn" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Óþekkt útgáfa OMB samskiptamátans." +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Leita í innihaldi babls á %%site.name%%. Leitarorð eru aðskilin með bili og " +"verða að vera að minnsta kosti 3 tákn." + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Textaleit" + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" +msgstr "" -#: ../lib/util.php:269 lib/util.php:285 +#: actions/noticesearch.php:121 +#, php-format msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Nema að annað sé tekið fram þá er innihald þessarar síðu varið með " -"höfundaréttarvernd og aðgengilegt undir " -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 +#: actions/noticesearch.php:124 #, php-format -msgid "Unrecognized address type %s" -msgstr "Óþekkt gerð tölvupóstfangs %s" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Fara úr áskrift" +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "OMB útgáfa ekki studd" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Allar færslur sem passa við \"%s\"" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Skráarsnið myndar ekki stutt." +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Þessi notandi leyfir ekki að ýta við sér eða hefur ekki staðfest eða skráð " +"tölvupóstinn sinn." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Færslur sendar með SMS" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Ýtt við notanda" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Færslur sendar með snarskilaboðaþjónustu (instant messaging)" +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Ýtt við notanda!" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Færslur frá %1$s og vinum á %2$s!" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Babl hefur enga persónulega síðu" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Færslur frá %1$s á %2$s!" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Hlaða upp" +msgid "%1$s's status on %2$s" +msgstr "Staða %1$s á %2$s" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Þú getur hlaðið upp nýrri mynd (notendamynd) hér. Þú getur ekki breytt " -"myndinni eftir að þú hefur hlaðið henni upp þannig að vertu viss um að hún " -"sé ferningur. Myndin verður líka að vera gefin út undir leyfi vefsvæðisins. " -"Notaðu mynd sem tilheyrir þér og þú vilt deila með öðrum." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Hlaða upp mynd á persónulega síðu" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/oembed.php:157 +msgid "content type " msgstr "" -"Notaðu þetta eyðublað til þess að bjóða vinum þínum og kunningjum að nota " -"þessa örbloggsþjónustu." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" +#: actions/oembed.php:160 +msgid "Only " msgstr "" -"Aðeins notað fyrir uppfærslur, tilkynningar og endurheimtingu lykilorða." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Notandi sem verið er að hlusta á er ekki til." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Enginn stuðningur við gagnasnið." -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Notandi hefur enga persónulega síðu." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Leit að fólki" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Stuttnefni notanda" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Leit í babli" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Notandi fannst ekki." +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Aðrar stillingar" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "Í hvaða tímabelti eru í rauninni?" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Sjá um ýmsar aðrar stillingar." -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Hvað er að frétta %s?" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Staðsetning þín, eins og \"borg, sýsla, land\"" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Þjónusta sem sér um sjálfkrafa styttingu." + +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "" +"Þjónusta sjálfvirkrar vefslóðastyttingar er of löng (í mesta lagi 50 stafir)." -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#: actions/outbox.php:58 #, php-format -msgid "Wrong image type for '%s'" -msgstr "Röng gerð myndar fyrir '%s'" +msgid "Outbox for %s - page %d" +msgstr "Úthólf %s - síða %d" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/outbox.php:61 #, php-format -msgid "Wrong size image at '%s'" -msgstr "Röng stærð myndar á '%s'" +msgid "Outbox for %s" +msgstr "Úthólf %s" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Já" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" +"Þetta er úthólfið þitt sem sýnir persónuleg skilaboð sem þú hefur sent." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Þú ert nú þegar með þetta OpenID!" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Breyta lykilorði" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Þú ert í þann mund að eyða babli alveg. Þessi aðgerð getur ekki verið " -"afturkölluð." +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Breyta lykilorðinu þínu." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Þú ert nú þegar innskráð(ur)!" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Lykilorðabreyting" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Þú ert nú þegar í áskrift að þessum notendum:" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Eldra lykilorð" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Þú ert ekki vinur þessa notanda." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nýtt lykilorð" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Þú getur breytt lykilorðinu þínu hér. Veldu eitthvað gott lykilorð!" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 eða fleiri tákn" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Þú getur búið til nýjan aðgang og byrjað að babla." +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Staðfesta" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Þú getur fengið SMS í gegnum tölvupóst frá %%site.name%%." +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "sama og lykilorðið hér fyrir ofan" + +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Breyta" + +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Lykilorð verður að vera að minnsta kosti 6 tákn." + +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Lykilorðin passa ekki saman." + +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Rangt eldra lykilorð" + +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Villa kom upp í vistun notanda: ótækt." + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Get ekki vistað nýja lykilorðið." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Lykilorð vistað." -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +#: actions/peoplesearch.php:52 +#, php-format msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Þú getur fjarlægt OpenID aðganginn frá þínum aðgangi með því að smella á " -"hnappinn sem er merktur \"Fjarlægja\"." +"Leita að fólki á %%site.name%% eftir nafni, staðsetningu eða áhugamáli. " +"Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Leit að fólki" + +#: actions/peopletag.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Not a valid people tag: %s" +msgstr "Ekki gilt persónumerki: %s" + +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "Notendur sjálfmerktir með %s - síða %d" + +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Ótækt bablinnihald" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Þú getur sent og tekið á móti babli í gegnum Jabber/GTalk " -"[snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir " -"neðan og stilltu notkunina." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Stillingar persónulegrar síðu" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3133,2877 +1979,2152 @@ msgstr "" "Þú getur uppfært persónulegu síðuna þína hér þannig að fólk geti lært meira " "um þig." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Þú getur notað staðbundna áskrift!" +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Upplýsingar á persónulegri síðu" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Þú sendir okkur ekki þessa persónulegu síðu" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Fullt nafn" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Heimasíða" + +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "" -"Þú hefur nýtt bablpóstfang á %1$s.\n" -"\n" -"Sendu tölvupóst á %2$s til að senda inn babl.\n" -"\n" -"Ítarlegri tölvupóstleiðbeiningar eru á %3$s.\n" -"\n" -"Með kærri kveðju,\n" -"%4$s" +"Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru " +"vefsvæði" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Þú getur ekki eytt stöðu annars notanda." +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Lýstu þér og áhugamálum þínum í 140 táknum" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Þú verður að vera innskráð(ur) til að geta boðið öðrum að nota %s" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Lýstu þér og þínum " -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Við sendum þér tilkynningu þegar þeir sem þú býður samþykkja boðskortið og " -"skrá sig á síðuna. Takk fyrir að stækka samfélagið!" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Lýsing" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Auðkenning á þér tókst. Sláðu inn nýtt lykilorð hér fyrir neðan." +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Staðsetning" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "OpenID veffangið þitt" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Staðsetning þín, eins og \"borg, sýsla, land\"" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Stuttnefnið þitt á þessum vefþjóni eða skráða tölvupóstfangið." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Merki" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"[OpenID](%%doc.openid%%) leyfir þér að skrá þig inn á mörg vefsvæði með sama " -"notendaaðgangi. Stjórnaðu OpenID tengingunum þínum hér." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "fyrir nokkrum sekúndum" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "fyrir um %d dögum síðan" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "fyrir um %d klukkutímum síðan" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "fyrir um %d mínútum síðan" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "fyrir um %d mánuðum síðan" +"Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða " +"bili" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "fyrir um einum degi síðan" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Tungumál" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "fyrir um einni mínútu síðan" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Tungumál (ákjósanlegt)" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "fyrir um einum mánuði síðan" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Tímabelti" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "fyrir um einu ári síðan" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "Í hvaða tímabelti eru í rauninni?" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "fyrir um einum klukkutíma síðan" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér " +"(best fyrir ómannlega notendur)" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "eyða" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "svar við..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "svara" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "sama og lykilorðið hér fyrir ofan" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "skráargerð ekki studd" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Fyrri" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Tímabelti ekki valið." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Þetta babl er ekki í uppáhaldi!" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Tungumál er of langt (í mesta lagi 50 stafir)." -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Gat ekki eytt uppáhaldi." +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ógilt merki: \"%s\"" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Uppáhald" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér." +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Gat ekki vistað persónulega síðu." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Gat ekki vistað merki." -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Þetta babl er nú þegar í uppáhaldi!" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Stillingar vistaðar." -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Gat ekki búið til uppáhald." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Ekki uppáhald" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Gat ekki sótt efni úr almenningsveitu." -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/public.php:129 #, php-format -msgid "%s favorite notices" -msgstr "Uppáhaldsbabl %s" +msgid "Public timeline, page %d" +msgstr "Almenningsrás, síða %d" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Bablveita uppáhaldsbabls %s" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Almenningsrás" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Innhólf %s - síða %d" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Innhólf %s" +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/public.php:159 +msgid "Public Stream Feed (Atom)" msgstr "" -"Þetta er innhólfið þitt sem sýnir persónuleg skilaboð sem voru send til þín." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:179 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -"%1$s hefur boðið þér að vera með þeim á %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Skrá mig sjálfkrafa inn í framtíðinni." - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Af öryggisástæðum, vinsamlegast sláðu aftur inn " - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Skráðu þig inn með notendanafni og lykilorði. " -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Þetta er of langt. Hámarkslengd skilaboða er 140 tákn." - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Enginn móttökuaðili tilgreindur." - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Þú getur ekki sent þessum notanda skilaboð." +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/public.php:186 +#, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -"Ekki senda þér skilaboð. Þú getur sagt þetta í hljóði við sjálfa(n) þig í " -"staðinn." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Enginn þannig notandi" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Ný skilaboð" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Babl án persónulegrar síðu sem passar við" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/public.php:233 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) leyfir þér að skrá þig inn á margar síður " - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Ef þú vilt bæta OpenID við aðganginn þinn, " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -"Að fjarlægja eina OpenID aðganginn þinn gerir það ómögulegt fyrir þig að " -"skrá þig inn!" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Þú getur fjarlægt OpenID frá aðganginum þínum " +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Merkjaský almenningsins" -#: actions/outbox.php:28 actions/outbox.php:58 +#: actions/publictagcloud.php:63 #, php-format -msgid "Outbox for %s - page %d" -msgstr "Úthólf %s - síða %d" +msgid "These are most popular recent tags on %s " +msgstr "Þetta eru vinsælustu nýlegu merkin á %s " -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/publictagcloud.php:69 #, php-format -msgid "Outbox for %s" -msgstr "Úthólf %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -"Þetta er úthólfið þitt sem sýnir persónuleg skilaboð sem þú hefur sent." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -"Leita að fólki á %%site.name%% eftir nafninu þeirra, staðsetningu eða " -"áhugamáli. " -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Þú getur uppfært persónulegar upplýsingar hérna " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Merkjaský" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Notandi með enga persónulega síðu sem passar við" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Þú ert nú þegar innskráð(ur)!" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Þessi staðfestingarlykill er of gamall. " - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Ef þú hefur gleymt eða tapað " +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Enginn svoleiðis staðfestingarlykill." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Auðkenning á þér tókst. Sláðu inn " +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Þetta er ekki staðfestingarlykill." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Stuttnefnið þitt á þessum vefþjóni, " +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Lykill fyrir endurheimtingu óþekkts notanda." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Leiðbeiningar um það hvernig á að endurheimta lykilorð " +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Villa kom upp varðandi staðfestingarlykilinn." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Tókst að vista nýtt lykilorð. " +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "" +"Þessi staðfestingarlykill er of gamall. Vinsamlegast byrjaðu aftur upp á " +"nýtt." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Lykilorð verður að vera að minnsta kosti 6 tákn." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"Til hamingju, %s! Frábært að þú skráðir þig á %%%%site.name%%%%. Héðan vilt " -"þú kannski..." - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Þú ættir að fá tölvupóst bráðlega með " -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -"Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%)," - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Bablveita uppáhaldsbabls %s" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Gat ekki sótt uppáhaldsbabl." - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Engin þannig skilaboð." - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Aðeins sendandi og móttakandi geta lesið þessi skilaboð." +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Skilaboð til %1$s á %2$s" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Skilaboð frá %1$s á %2$s" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Stuttnefnið þitt á þessum vefþjóni eða skráða tölvupóstfangið." -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Senda skilaboð" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Endurheimta" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Farsímafélagið þitt. " +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Endurstilla lykilorð" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Bein skilaboð til %s" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Endurheimta lykilorð" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Öll bein skilaboð til %s" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Beiðni um að endurheimta lykilorð hefur verið send inn" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Bein skilaboð sem þú hefur sent" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Óþekkt aðgerð" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Öll bein skilaboð send frá %s" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 eða fleiri tákn og ekki gleyma því!" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Enginn texti í skilaboðum!" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Sama og lykilorðið hér fyrir ofan" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Móttakandi fannst ekki." +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Endurstilla" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -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." +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Sláðu inn stuttnefni eða tölvupóstfang." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Uppáhaldsbabl frá %s" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Enginn notandi með þetta tölvupóstfang eða notendanafn" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Ekkert tölvupóstfang á skrá fyrir þennan notanda." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s heldur upp á babl frá þér" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Villa kom upp í vistun netfangsstaðfestingar." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format +#: actions/recoverpassword.php:325 msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"%1$s gerði bablið þitt á %2$s sem eitt af sínu uppáhaldsbabli.\n" -"\n" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Bættu Twitter aðganginum þínum við til að senda sjálfkrafa babl til Twitter, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Twitter stillingar" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Twitter aðgangur" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Núverandi staðfesti Twitter aðgangurinn." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Twitter notendanafn" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Vinsamlegast engin bil." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Twitter lykilorð" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Sjálfkrafa senda bablið mitt á Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Senda staðbundin \"@\" svör til Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Gerast áskrifandi að Twitter vinum mínum hérna" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Notendanafn má aðeins hafa númer, há- og lágstafi og undirstrik (_). " -"Hámarkslengd er 15 tákn." - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Gat ekki staðfest Twitter skilríkið!" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Gat ekki sótt aðgangsupplýsingar fyrir \"%s\" frá Twitter" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Gat ekki vistað Twitter stillingarnar þínar!" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Twitter stillingar vistaðar." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Þetta er ekki Twitter aðgangurinn þinn." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Gat ekki fjarlægt Twitter notanda." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Twitter aðgangur fjarlægður." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Gat ekki vistað Twitter stillingar." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Twitter stillingar vistaðar." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Vinsamlegast athugaðu eftirfarandi atriði til að vera viss " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Áskriftin hefur verið heimiluð en ófullnægjandi" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Áskriftinni hefur verið hafnað en ófullnægjandi " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Niðurstöður skipunar" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Fullkláruð skipun" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Misheppnuð skipun" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Fyrirgefðu en þessi skipun hefur ekki enn verið útbúin." - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Áskriftir: %1$s\n" +"Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið " +"sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum." -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Notandi hefur ekkert nýtt babl" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Bjóst ekki við endurstillingu lykilorðs." -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Babl gert að uppáhaldi." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Lykilorð verður að vera 6 tákn eða fleiri." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Lykilorð og staðfesting passa ekki saman." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Fullt nafn: %s" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Tókst að vista nýtt lykilorð. Þú ert núna innskráð(ur)" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Staðsetning: %s" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Afsakið en aðeins fólki sem er boðið getur nýskráð sig." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Heimasíða: %s" +#: actions/register.php:92 +msgid "Sorry, invalid invitation code." +msgstr "" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Um: %s" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Nýskráning tókst" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Nýskrá" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Bein skilaboð send til %s" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Nýskráning ekki leyfð." -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Villa kom upp við að senda bein skilaboð" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Ekki tækt tölvupóstfang." -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Nú ert þú áskrifandi að %s" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Tölvupóstfang er nú þegar skráð." -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Ótækt notendanafn eða lykilorð." -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Nú ert þú ekki lengur áskrifandi að %s" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Skipun hefur ekki verið fullbúin" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 lágstafir eða tölustafir, engin greinarmerki eða bil. Nauðsynlegt." -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Tilkynningar af." +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 eða fleiri tákn. Nauðsynlegt" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Get ekki slökkt á tilkynningum." +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Tilkynningar á." +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Tölvupóstur" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Get ekki kveikt á tilkynningum." +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Aðeins notað fyrir uppfærslur, tilkynningar og endurheimtingu lykilorða." -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Skipanir:\n" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Lengra nafn, ákjósalegast að það sé \"rétta\" nafnið þitt" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Gat ekki skeytt skilaboðum inn í." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Textinn og skrárnar mínar eru aðgengilegar undir " -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Gat ekki uppfært skilaboð með nýju veffangi." +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Notandi án samsvarandi persónulegrar síðu í kerfinu." +#: actions/register.php:496 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/register.php:537 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Þú hefur fengið nýtt sendingarfang á %1$s.\n" +"Til hamingju %s! Frábært að þú skulir hafa skráð þig á %%%%site.name%%%%. " +"Héðan vilt þú kannski...\n" "\n" +"* Fara á [persónulegu síðuna þína](%s) senda inn þitt fyrsta babl.\n" +"* Bæta við [Jabber/GTalk snarskilaboðafangi](%%%%action.imsettings%%%%) svo " +"þú getir sent inn babl í snarskilaboðum.\n" +"* [Leita að fólki](%%%%action.peoplesearch%%%%) sem þú þekkir eða hefur sömu " +"áhugamál og þú. \n" +"* Uppfæra [persónulegu síðuna](%%%%action.profilesettings%%%%) þína til þess " +"að leyfa öðrum að kynnast þér betur.\n" +"* Lesa [vefleiðbeiningarnar](%%%%doc.help%%%%) til þess að læra að babla " +"betur.\n" +"\n" +"Takk fyrir að skrá þig og við vonum að þú njótir þjónustunnar." -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "Ný persónuleg skilaboð frá %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Þú ættir að fá tölvupóst eftir smá stund. Í tölvupóstinum eru leiðbeiningar " +"um það hvernig þú staðfestir tölvupóstfangið þitt.)" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/remotesubscribe.php:98 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"%1$s (%2$s) sendi þér persónuleg skilaboð:\n" -"\n" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Aðeins notandinn getur lesið hans eigin pósthólf." - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Þetta eyðublað ætti sjálfkrafa að sendast inn. " +"Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%) eða " +"[nýskráð þig](%%action.register%%). Ef þú hefur nú þegar búið til aðgang á " +"[samvirkandi örbloggsþjónustu](%%doc.openmublog%%), sláðu þá inn veffang " +"persónulegu síðunnar þinnar hér fyrir neðan." -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Uppáhald" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Fara í fjaráskrift" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "Uppáhaldsbabl %s" +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Notandi" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Stuttnefni notanda" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Innhólf" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Stuttnefni notandans sem þú vilt fylgja" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Mótteknu skilaboðin þín" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Veffang persónulegrar síðu" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Úthólf" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Skilaboð sem þú hefur sent" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Gerast áskrifandi" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Ótækt veffang persónulegrar síðu (vitlaust snið)" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Samhæfnisvalmöguleikar Twitter" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Ekki tækt veffang á persónulega síðu (ekkert YADIS skjal)." -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "Til" +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "" +"Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast " +"áskrifandi." -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Gat ekki þáttað skilaboðin." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Gat ekki komist yfir beiðnistóka." -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "%s and friends, page %d" -msgstr "%s og vinirnir, síða %d" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Þú getur hlaðið upp þinni eigin sjálfsmynd." +msgid "Replies to %s" +msgstr "Svör við %s" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Stillingar fyrir mynd" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Svör við %s, síða %d" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Upphafleg mynd" +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Forsýn" +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Skera af" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Bablveita fyrir hópinn %s" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Það kom upp vandamál með setutókann þinn. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Týndum skráargögnunum okkar" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Týndum skránni okkar" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Óþekkt skráargerð" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Skilaboð til %1$s á %2$s" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Engin persónuleg síða tilgreind" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s's favorite notices, page %d" +msgstr "" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Engin persónulega síða með þessu einkenni" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Gat ekki sótt uppáhaldsbabl." -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Loka á notanda" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Bablveita uppáhaldsbabls %s" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Ertu viss um að þú viljir loka á þennan notanda? " +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Bablveita uppáhaldsbabls %s" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Þú hefur nú þegar lokað á þennan notanda." +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Bablveita uppáhaldsbabls %s" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Mistókst að vista upplýsingar um notendalokun" +#: actions/showfavorites.php:205 +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/confirmaddress.php:159 +#: actions/showfavorites.php:207 #, php-format -msgid "The address \"%s\" has been " -msgstr "Veffangið \"%s\" hefur verið " +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Þú ert í þann mund að eyða þessu babli að eilífu. " +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Bæta við sem uppáhaldsbabli" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "Edit %s group" -msgstr "Breyta hópnum %s" +msgid "%s group" +msgstr "%s hópurinn" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Innhólf verða að vera virk svo hópar virki" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "%s hópurinn, síða %d" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Hópssíðan" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Ekkert stuttnefni" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "Vefslóð" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Enginn þannig hópur" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Athugasemd" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Þú verður að vera stjórnandi til að geta breytt hópnum" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Notaðu þetta eyðublað til að breyta hópnum." +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Hópsaðgerðir" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Stuttnefni getur aðeins verið lágstafir" +#: actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." - -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Gat ekki uppfært hóp." - -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Valmöguleikar vistaðir." +#: actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showgroup.php:340 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Býð eftir staðfestingu fyrir þetta veffang. " +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s hópurinn" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Búa til nýtt póstfang til að senda á; " +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Meðlimir" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Senda mér tölvupóst þegar einhver " +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(Ekkert)" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Leyfa vinum að ýta við mér og senda mér tölvupóst." +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Allir meðlimir" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Þetta tölvupóstfang er nú þegar í eigu " +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Tölfræði" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " +#: actions/showgroup.php:432 +msgid "Created" msgstr "" -"Staðfestingarlykill var sendur til tölvupóstfangsins sem þú sendir inn. " -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Kerfisvilla - gat ekki náð í notanda!" - -#: actions/facebookhome.php:196 +#: actions/showgroup.php:448 #, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Ef þú vilt að %s forritið sjálfkrafa uppfæri " +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 "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showgroup.php:454 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Leyfa %s að uppfæra stöðuna mína á Facebook" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Sleppa" +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 "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Innihaldslaust babl!" +#: actions/showgroup.php:482 +msgid "Admins" +msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Uppröðun" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Engin þannig skilaboð." -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Eftir" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Aðeins sendandi og móttakandi geta lesið þessi skilaboð." -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Áður" +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Skilaboð til %1$s á %2$s" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/showmessage.php:113 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Takk fyrir að bjóða vinum þínum að nota %s" +msgid "Message from %1$s on %2$s" +msgstr "Skilaboð frá %1$s á %2$s" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Boðskort hafa verið send til eftirfarandi notenda:" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Babl sent inn" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/showstream.php:73 #, php-format -msgid "You have been invited to %s" -msgstr "Þér hefur verið boðið til %s" +msgid " tagged %s" +msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 +#: actions/showstream.php:79 #, php-format -msgid "Invite your friends to use %s" -msgstr "Bjóddu vinum þínum að nota %s" +msgid "%s, page %d" +msgstr "%s, síða %d" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/showstream.php:122 #, php-format -msgid "Friends already using %s:" -msgstr "Vinir sem nú þegar nota %s:" +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/showstream.php:129 #, php-format -msgid "Send invitations" -msgstr "Senda boðskort" - -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Gat ekki fjarlægt Facebook-notanda." - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "Það kom upp villa við að vista samstillingarnar þínar!" +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Samstillingar vistaðar." +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Sjálfkrafa uppfærir stöðuna mína á Facebook með bablinu mínu." +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Senda \"@\" svör til Facebook." +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "" -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Forskeyti" +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Strengur til að skeyta fram fyrir babl." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: actions/facebooksettings.php:124 +#: actions/showstream.php:198 #, php-format -msgid "If you would like %s to automatically update " -msgstr "Ef þú vilt að %s uppfærist sjálfkrafa " +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Samstillingar" +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Ekki lengur í uppáhaldi" +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Vinsælt babl" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS stillingar" -#: actions/favorited.php:67 +#: actions/smssettings.php:69 #, php-format -msgid "Popular notices, page %d" -msgstr "Vinsælt babl, síða %d" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Þú getur fengið SMS í gegnum tölvupóst frá %%site.name%%." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Vinsælasta bablið á síðunni um þessar mundir." +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Þessi síða er ekki aðgengileg í " -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Notendur í sviðsljósinu" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Núverandi staðfesta SMS símanúmerið." -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Notendur í sviðsljósinu, síða %d" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Býð eftir staðfestingu varðandi þetta símanúmer." -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Úrval nokkurra frábærra notenda á %s" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Staðfestingarlykill" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Sláðu inn lykilinn sem þú fékkst í símann þinn." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Ekkert einkenni" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS símanúmer" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Einkennismynd hópsins" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Símanúmer, með svæðisnúmeri ef við á, án greinarmerkja eða bila" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Þú getur hlaðið upp mynd fyrir hópinn þinn." +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Sendu mér babl í gegnum SMS. Ég veit að það er möguleiki að " +"farsímafyrirtækið rukki fyrir móttöku á SMSunum." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Einkennismynd uppfærð." +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Ekkert símanúmer." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Tókst ekki að uppfæra einkennismynd" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Ekkert farsímafélag valið." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "Hópmeðlimir %s" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Þetta er nú þegar símanúmerið þitt." -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "Hópmeðlimir %s, síða %d" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Þetta símanúmer tilheyri nú þegar öðrum notanda." -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Listi yfir notendur í þessum hóp." +#: actions/smssettings.php:347 +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 "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Hópar" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Þetta er rangur staðfestingarlykill." -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "Hópar, síða %d" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Þetta er ekki símanúmerið þitt." -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "Hópar á %%%%site.name%%%% leyfa þér að finna og tala við " +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Farsímafyrirtæki" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Búa til nýjan hóp" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Veldu farsímafyrirtæki" -#: actions/groupsearch.php:57 +#: actions/smssettings.php:476 #, php-format msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Leita að hópum á %%site.name%% eftir nafni, staðsetningu eða lýsingu. " +"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 "" +"Farsímafélagið þitt. Ef þú veist um farsímafélag sem tekur á móti SMS í " +"gegnum tölvupóst sem er ekki í þessum lista, sendu okkur tölvupóst í %s og " +"láttu okkur vita." -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Hópleit" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Enginn lykill sleginn inn" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "Þú getur sent og tekið á móti babli í gegnum " +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Þú ert ekki áskrifandi." -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber eða GTalk vefföng, " +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Gat ekki vistað áskrift." + +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Ekki staðbundinn notandi." -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Sendu mér svör í gegnum Jabber/GTalk " +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Þú ert nú í áskrift" -#: actions/imsettings.php:321 +#: actions/subscribers.php:50 #, php-format -msgid "A confirmation code was sent " -msgstr "Staðfestingarlykill var sendur " +msgid "%s subscribers" +msgstr "%s áskrifendur" -#: actions/joingroup.php:65 actions/joingroup.php:60 -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:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Þú ert nú þegar meðlimur í þessum hópi" - -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/subscribers.php:52 #, php-format -msgid "Could not join user %s to group %s" -msgstr "Gat ekki bætt notandanum %s í hópinn %s" +msgid "%s subscribers, page %d" +msgstr "%s áskrifendur, síða %d" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Þetta er fólkið sem hlustar á bablið í þér." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/subscribers.php:67 #, php-format -msgid "%s joined group %s" -msgstr "%s bætti sér í hópinn %s" +msgid "These are the people who listen to %s's notices." +msgstr "Þetta er fólkið sem hlustar á bablið í %s." -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Innhólf verða að vera virk svo að hópar virki." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -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." +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Enginn þannig hópur." +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "Þú ert ekki meðlimur í þessum hópi." +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "%s áskriftir" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "Þú getur ekki gengið úr hóp á meðan þú ert stjórnandi hópsins." +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "%s áskriftir, síða %d" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Gat ekki fundið meðlimaskrá." +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Þetta er fólkið sem þú hlustar á bablið í." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 +#: actions/subscriptions.php:69 #, php-format -msgid "Could not remove user %s to group %s" -msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" +msgid "These are the people whose notices %s listens to." +msgstr "Þetta er fólkið sem %s hlustar á bablið í." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/subscriptions.php:121 #, php-format -msgid "%s left group %s" -msgstr "%s gekk úr hópnum %s" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Skrá þig inn á síðuna" +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Engin núverandi staða" +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Nýr hópur" +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber snarskilaboðaþjónusta" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Gat ekki búið til hóp." +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Ekki innskráð(ur)" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Gat ekki skráð hópmeðlimi." +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Ekkert einkenni gefið upp." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Þetta er of langt. " +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "Merki %s" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Ekki senda þér þín eigin skilaboð; " +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Persónuleg síða notanda" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Babl sent inn" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Ljósmynd" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Ajax villa" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Merkja notanda" -#: actions/nudge.php:85 +#: actions/tagother.php:151 msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -"Þessi notandi leyfir ekki að ýta við sér eða hefur ekki staðfest eða skráð " -"tölvupóstinn sinn." - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Ýtt við notanda" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Ýtt við notanda!" - -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "Innskráning með OpenID" - -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Fjarlægi eina OpenID einkennið þitt " - -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Aðrar stillingar" - -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Sjá um ýmsar aðrar stillingar." - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Sjálfvirk stytting vefslóða" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Þjónusta" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Þjónusta sem sér um sjálfkrafa styttingu." +"Merki fyrir þennan notanda (bókstafir, tölustafir, -, ., og _), aðskilin með " +"kommu eða bili" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -"Þjónusta sjálfvirkrar vefslóðastyttingar er of löng (í mesta lagi 50 stafir)." +"Þú getur aðeins merkt fólk sem þú ert áskrifandi að eða þau sem eru " +"áskrifendur að þér." -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Breyta lykilorðinu þínu." +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Gat ekki vistað merki." -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Lykilorðabreyting" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Notaðu þetta eyðublað til að bæta við merkjum við áskrifendur þína eða þau " +"sem þú ert áskrifandi að." -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/tag.php:68 #, php-format -msgid "Not a valid people tag: %s" -msgstr "Ekki gilt persónumerki: %s" +msgid "Notices tagged with %s, page %d" +msgstr "Babl merkt með %s, síða %d" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/tag.php:86 #, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Notendur sjálfmerktir með %s - síða %d" +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Bablveita fyrir %s" -#: actions/peopletag.php:91 +#: actions/tag.php:98 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Þetta eru notendur sem hafa merkt sjálfa sig með \"%s\" " +msgid "Notice feed for tag %s (Atom)" +msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Upplýsingar á persónulegri síðu" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Ekkert þannig merki." -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða " -"bili" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Aðferð í forritsskilum er í þróun." -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Sjálfkrafa gerast áskrifandi að þeim " +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Ekkert einkenni persónulegrar síðu í beiðni." -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Ógilt merki: \"%s\"" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Enginn persónuleg síða með þessu einkenni." -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Gat ekki vistað merki." +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Ekki lengur áskrifandi" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "Public timeline, page %d" -msgstr "Almenningsrás, síða %d" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Gat ekki sótt efni úr almenningsveitu." +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Heimila áskriftir" -#: actions/public.php:220 -#, php-format +#: actions/userauthorization.php:110 +#, fuzzy msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -"Þetta er [örbloggssþjónustan](http://en.wikipedia.org/wiki/Micro-blogging) %%" -"site.name%% " - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Merkjaský almenningsins" +"Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir " +"gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " +"áskrifandi að babli, smelltu þá á \"Hætta við\"." -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "Þetta eru vinsælustu nýlegu merkin á %s " +#: actions/userauthorization.php:188 +msgid "License" +msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Merkjaský" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Samþykkja" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Afsakið en aðeins fólki sem er boðið getur nýskráð sig." +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Gerast áskrifandi að þessum notanda" -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "Þú getur ekki nýskráð þig ef þú hefur ekki " +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Hafna" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Með þessu eyðublaði getur þú búið til " - -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 lágstafir og tölustafir, " +#: actions/userauthorization.php:212 +msgid "Reject this subscription" +msgstr "" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Aðeins notað fyrir uppfærslur og tilkynningar, " +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Engin heimildarbeiðni!" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "Vefslóð vefsíðunnar þinnar, blogg, " +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Áskrift heimiluð" -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Lýstu þér og þínum " +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu " +"leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " +"þinn er;" -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Hvar ertu, t.d. \"Borg, " +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Áskrift hafnað" -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " nema þessi persónulegu gögn: lykilorð, " +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu " +"leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." -#: actions/register.php:471 +#: actions/userauthorization.php:296 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Til hamingju %s! Vertu velkomin(n) á %%%%site.name%%%%. " - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(Þú ættir að fá tölvupóst " - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +msgid "Listener URI ‘%s’ not found here" msgstr "" -"Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast " -"áskrifandi." -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/userauthorization.php:301 #, php-format -msgid "Replies to %s, page %d" -msgstr "Svör við %s, síða %d" +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: actions/showfavorites.php:79 +#: actions/userauthorization.php:307 #, php-format -msgid "%s favorite notices, page %d" -msgstr "Uppáhaldsbabl %s, síða %d" +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: actions/userauthorization.php:322 #, php-format -msgid "%s group" -msgstr "%s hópurinn" +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: actions/userauthorization.php:338 #, php-format -msgid "%s group, page %d" -msgstr "%s hópurinn, síða %d" +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Hópssíðan" +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Get ekki lesið slóðina fyrir myndina '%s'" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "Vefslóð" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Röng gerð myndar fyrir '%s'" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Athugasemd" +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Ekkert kenni." -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Hópsaðgerðir" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "Bablveita fyrir hópinn %s" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Meðlimir" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(Ekkert)" +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "Hópar %s, síða %d" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Allir meðlimir" +#: actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" -#: actions/showgroup.php:378 +#: actions/usergroups.php:153 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "%s is not a member of any group." msgstr "" -"**%s** er notendahópur á [örbloggsþjónustunni](http://en.wikipedia.org/wiki/" -"Micro-blogging) %%%%site.name%%%% " -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Aðeins sendandinn og móttakandi " +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: classes/File.php:137 #, php-format -msgid "%s, page %d" -msgstr "%s, síða %d" +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" -#: actions/showstream.php:143 -msgid "'s profile" -msgstr "- Persónuleg síða" +#: classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Persónuleg síða notanda" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Ljósmynd" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Gat ekki skeytt skilaboðum inn í." -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Notandaaðgerðir" +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Gat ekki uppfært skilaboð með nýju veffangi." -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Senda bein skilaboð til þessa notanda" +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Skilaboð" +#: classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Allir áskrifendur" +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Gat ekki vistað babl. Óþekktur notandi." -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Allir hópar" +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar " +"mínútur." -#: actions/showstream.php:542 -#, php-format +#: classes/Notice.php:194 msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -"**%s** hefur notendaaðgang á [örbloggsþjónustunni](http://en.wikipedia.org/" -"wiki/Micro-blogging) %%%%site.name%%%% " -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Símanúmer, engin sértákn eða bil," +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." + +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Vandamál komu upp við að vista babl." -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Senda mér babl í gegnum SMS; " +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "Gagnagrunnsvilla við innsetningu svars: %s" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" msgstr "" -"Staðfestingarlykill hefur verið sendur í símanúmerið sem þú slóst inn. " -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Farsímafyrirtæki" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Persónuleg síða" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Þú ert ekki áskrifandi." +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Breyta persónulegu stillingunum þínum" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Gat ekki vistað áskrift." +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Hlaða upp einkennismynd" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Ekki staðbundinn notandi." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Breyta lykilorðinu þínu" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Þú ert nú í áskrift" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Breyta tölvupóstumsjón" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "%s áskrifendur" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "%s áskrifendur, síða %d" +#: lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Þetta er fólkið sem hlustar á " +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Annað" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Þetta er fólkið sem " +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Aðrir valkostir" -#: actions/subscriptions.php:52 +#: lib/action.php:144 #, php-format -msgid "%s subscriptions" -msgstr "%s áskriftir" +msgid "%s - %s" +msgstr "%s - %s" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "%s áskriftir, síða %d" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Ónafngreind síða" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Þetta er fólkið þar sem bablið " +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Stikl aðalsíðu" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "Þetta er fólkið þar sem " +#: lib/action.php:430 +msgid "Home" +msgstr "Heim" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber snarskilaboðaþjónusta" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Persónuleg síða og vinarás" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Babl merkt með %s, síða %d" +#: lib/action.php:432 +msgid "Account" +msgstr "Aðgangur" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Skilaboð merkt með \"%s\", nýlegustu skilaboðin fyrst" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" +"Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, " +"persónulegu síðunni þinni" -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Ekki innskráð(ur)" +#: lib/action.php:435 +msgid "Connect" +msgstr "Tengjast" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Ekkert einkenni gefið upp." +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Gat ekki framsent til vefþjóns: %s" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Merki %s" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Bjóða" -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Merkja notanda" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Merki fyrir þennan notanda (bókstafir, tölustafir, -, ., og _), aðskilin með " -"kommu eða bili" +#: lib/action.php:445 +msgid "Logout" +msgstr "Útskráning" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Það komu upp vandamál varðandi setutókann þinn." +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Skrá þig út af síðunni" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Þú getur aðeins merkt fólk sem þú ert áskrifandi að eða þau sem eru " -"áskrifendur að þér." +#: lib/action.php:450 +msgid "Create an account" +msgstr "Búa til aðgang" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Gat ekki vistað merki." +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Skrá þig inn á síðuna" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Notaðu þetta eyðublað til að bæta við merkjum við áskrifendur þína eða þau " -"sem þú ert áskrifandi að." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Hjálp" -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Ekkert þannig merki." +#: lib/action.php:456 +msgid "Help me!" +msgstr "Hjálp!" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Örblogg merkt með %s" +#: lib/action.php:459 +msgid "Search" +msgstr "Leita" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Mistókst að loka á notanda." +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Leita að fólki eða texta" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Mistókst að opna fyrir notanda." +#: lib/action.php:480 +msgid "Site notice" +msgstr "Babl vefsíðunnar" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Fannst ekki." +#: lib/action.php:546 +msgid "Local views" +msgstr "Staðbundin sýn" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Bættu við Twitter aðgangi þínum til að sjálfkrafa senda " +#: lib/action.php:612 +msgid "Page notice" +msgstr "Babl síðunnar" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Notendanafn á Twitter" +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Stikl undirsíðu" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Lykilorð á Twitter" +#: lib/action.php:721 +msgid "About" +msgstr "Um" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Twitter vinir" +#: lib/action.php:723 +msgid "FAQ" +msgstr "Spurt og svarað" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Notendanafn má aðeins innihalda tölustafi, " +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "Gat ekki náð í aðgangsupplýsingar " +#: lib/action.php:730 +msgid "Privacy" +msgstr "Friðhelgi" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Vill kom upp við að aflétta notendalokun." +#: lib/action.php:732 +msgid "Source" +msgstr "Frumþula" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Ekkert einkenni persónulegrar síðu í beiðni." +#: lib/action.php:734 +msgid "Contact" +msgstr "Tengiliður" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Enginn persónuleg síða með þessu einkenni." +#: lib/action.php:736 +msgid "Badge" +msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Ekki lengur áskrifandi" +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Hugbúnaðarleyfi StatusNet" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: lib/action.php:767 #, php-format -msgid "%s groups" -msgstr "Hópar %s" +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." +"broughtbyurl%%). " -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: lib/action.php:769 #, php-format -msgid "%s groups, page %d" -msgstr "Hópar %s, síða %d" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Gat ekki vistað babl. Óþekktur notandi." +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** er örbloggsþjónusta." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: lib/action.php:771 +#, php-format msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar " -"mínútur." - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." +"Það keyrir [StatusNet](http://status.net/) örbloggshugbúnaðinn, útgáfu %s, " +"sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Hlaða upp einkennismynd" +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Annað" +#: lib/action.php:794 +msgid "All " +msgstr "Allt " -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Aðrir valkostir" +#: lib/action.php:799 +msgid "license." +msgstr "leyfi." -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "%s - %s" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Uppröðun" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Ónafngreind síða" +#: lib/action.php:1062 +msgid "After" +msgstr "Eftir" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Stikl aðalsíðu" +#: lib/action.php:1070 +msgid "Before" +msgstr "Áður" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Persónuleg síða og vinarás" +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Það komu upp vandamál varðandi setutókann þinn." -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Leita að fólki eða texta" +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Aðgangur" +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: lib/attachmentlist.php:278 +msgid "Provider" msgstr "" -"Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, " -"persónulegu síðunni þinni" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Tengjast snarskilaboðaþjónustu, SMS, Twitter" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Skrá þig út af síðunni" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Skrá þig inn á síðuna" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Niðurstöður skipunar" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Búa til aðgang" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Fullkláruð skipun" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Skrá þig inn með OpenID" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Misheppnuð skipun" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Hjálp!" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Fyrirgefðu en þessi skipun hefur ekki enn verið útbúin." -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Babl vefsíðunnar" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Staðbundin sýn" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "Babl síðunnar" +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Ýtt við notanda" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Stikl undirsíðu" +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Hugbúnaðarleyfi StatusNet" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Allt " +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Notandi hefur ekkert nýtt babl" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "leyfi." +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Babl gert að uppáhaldi." -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Loka á þennan notanda" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Loka" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "Fullt nafn: %s" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Taka þetta babl út sem uppáhald" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Staðsetning: %s" -#: lib/facebookaction.php:268 +#: lib/command.php:324 #, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Til að nota Facebook forritið %s verður þú að skrá þig inn " +msgid "Homepage: %s" +msgstr "Heimasíða: %s" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " nýr aðgangur." +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "Um: %s" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Útgefið" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Setja þetta babl í uppáhald" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Villa kom upp við að senda bein skilaboð" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Flytja út gögn" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Sía merki" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svara þessu babli" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Allt" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Vandamál komu upp við að vista babl." -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Merki" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Veldu merki til að þrengja lista" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Nú ert þú áskrifandi að %s" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Áfram" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Nú ert þú ekki lengur áskrifandi að %s" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Lýsing" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Skipun hefur ekki verið fullbúin" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Tilkynningar af." -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Staðsetning hópsins, ef einhver, eins og \"Borg, landshluti, land\"" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Get ekki slökkt á tilkynningum." -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Hópur" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Tilkynningar á." -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Stjórnandi" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Get ekki kveikt á tilkynningum." + +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Gat ekki búið til OpenID eyðublað: %s" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/command.php:602 #, php-format -msgid "Edit %s group properties" -msgstr "Breyta hópstillingum %s" +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "Einkennismerki" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "Bæta við eða breyta einkennismerki %s" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Enginn staðfestingarlykill." -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Hóparnir með flestu meðlimina" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "Hóparnir með mesta bablið" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "Merki í babli %s hópsins" +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Skrá þig inn á síðuna" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "Þessi síða er ekki aðgengileg í " +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "Snarskilaboð" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Gerast meðlimur" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Færslur sendar með snarskilaboðaþjónustu (instant messaging)" -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "Hætta sem meðlimur" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Færslur sendar með SMS" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "Skráðu þig inn með notendanafni og lykilorði" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "Búðu til nýjan aðgang" +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Skráðu þig inn eða nýskráðu þig með OpenID" +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "" -#: lib/mail.php:175 -#, php-format +#: lib/designsettings.php:109 msgid "" -"Hey, %s.\n" -"\n" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -"Hey, %s.\n" -"\n" -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "%1$s hlustar núna á " - -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "Staðsetning: %s\n" +#: lib/designsettings.php:139 +msgid "On" +msgstr "" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "Vefsíða: %s\n" +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -"Lýsing: %s\n" -"\n" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "%s ýtti við þér" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) er að spá hvað þú ert að gera " +#: lib/designsettings.php:170 +msgid "Change colours" +msgstr "" -#: lib/mail.php:555 -#, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s bætti við bablinu þínu af %2$s" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Frá" +#: lib/designsettings.php:191 +msgid "Content" +msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Senda bein skilaboð" +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Senda babl" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Texti" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Leyfileg tákn" +#: lib/designsettings.php:230 +msgid "Links" +msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "sem svar við" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "Svara þessu babli" +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Svara" - -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Eyða þessu babli" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Eyða" - -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "Ýta við þessum notanda" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "Pot" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "Ýta við þessum notanda" +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "Merki í babli %s" +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(ekkert)" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Almenn" +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Notendahópar" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Taka þetta babl út sem uppáhald" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Nýleg merki" +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Setja þetta babl í uppáhald" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Í sviðsljósinu" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Uppáhald" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Vinsælt" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Flytja út gögn" -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Babl" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Finna hópa á þessari síðu" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Ónafngreindur hluti" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "Fólk sem %s er áskrifandi að" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "Fólk sem eru áskrifendur að %s" +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Sía merki" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "Hópar sem %s er meðlimur í" +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Allt" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Veldu farsímafyrirtæki" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "Notandinn hefur lokað á þig." +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Merki" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Gerast áskrifandi að þessum notanda" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Veldu merki til að þrengja lista" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Ekkert" +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Áfram" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Aðalbablararnir" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Opna á þennan notanda" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Opna" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Hætta sem áskrifandi að þessum notanda" +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Lýsing" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "" +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Staðsetning hópsins, ef einhver, eins og \"Borg, landshluti, land\"" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#: lib/groupeditform.php:187 #, php-format -msgid "Feed for friends of %s (RSS 2.0)" +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Hópur" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -msgid "You and friends" +#: lib/groupnav.php:100 +msgid "Blocked" msgstr "" -#: actions/avatarsettings.php:78 +#: lib/groupnav.php:101 #, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -msgid "Avatar deleted." -msgstr "" - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +msgid "%s blocked users" msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: lib/groupnav.php:107 #, 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 "" +msgid "Edit %s group properties" +msgstr "Breyta hópstillingum %s" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Einkennismerki" -#: actions/facebooksettings.php:124 +#: lib/groupnav.php:113 #, 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 "" +msgid "Add or edit %s logo" +msgstr "Bæta við eða breyta einkennismerki %s" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: lib/groupnav.php:119 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +msgid "Add or edit %s design" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Hóparnir með flestu meðlimina" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format -msgid "Microblog by %s group" -msgstr "" +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Hóparnir með mesta bablið" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#: lib/grouptagcloudsection.php:56 #, php-format -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 "" +msgid "Tags in %s group's notices" +msgstr "Merki í babli %s hópsins" -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" msgstr "" +"Þessi síða er ekki aðgengileg í margmiðlunargerðinni sem þú tekur á móti" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%s\" on %s" -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Upphal að hluta til." -#: actions/openidlogin.php:66 -#, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Kerfisvilla kom upp við upphal skráar." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Annaðhvort ekki mynd eða þá að skráin er gölluð." -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Skráarsnið myndar ekki stutt." -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -msgid "Public Stream Feed (Atom)" -msgstr "" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -msgid "Created" -msgstr "" - -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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 "" - -#: actions/showstream.php:147 -msgid "Your profile" -msgstr "" - -#: actions/showstream.php:149 -#, php-format -msgid "%s's profile" -msgstr "" +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Týndum skránni okkar" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Óþekkt skráargerð" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "" +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Bablveita fyrir %s" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, php-format -msgid "Notice feed for %s (Atom)" -msgstr "" +#: lib/joinform.php:114 +msgid "Join" +msgstr "Gerast meðlimur" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, php-format -msgid "FOAF for %s" -msgstr "" +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Hætta sem meðlimur" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -msgid "Edit Avatar" -msgstr "" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Skráðu þig inn með notendanafni og lykilorði" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -msgid "Edit profile settings" -msgstr "" +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "Búðu til nýjan aðgang" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Aðeins notandinn getur lesið hans eigin pósthólf." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format +#: lib/mailbox.php:139 msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +"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 "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -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 "" +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "frá" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Staðfesting tölvupóstfangs" + +#: lib/mail.php:174 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"Hey, %s.\n" "\n" -"In case you forgot, you can see the text of your notice here:\n" +"Someone just entered this email address on %s.\n" "\n" -"%3$s\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" "\n" -"You can see the list of %1$s's favorites here:\n" +"\t%s\n" "\n" -"%4$s\n" +"If not, just ignore this message.\n" "\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -msgid "No such user!" -msgstr "" - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +"Thanks for your time, \n" +"%s\n" msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#: lib/mail.php:235 #, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s er að hlusta á bablið þitt á %2$s." -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#: lib/mail.php:240 +#, php-format msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: lib/mail.php:253 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +msgid "Location: %s\n" +msgstr "Staðsetning: %s\n" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "Vefsíða: %s\n" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/mail.php:257 #, 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 "" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" +"Bio: %s\n" +"\n" msgstr "" +"Lýsing: %s\n" +"\n" -#: lib/imagefile.php:75 +#: lib/mail.php:285 #, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" +msgid "New email address for posting to %s" +msgstr "Nýtt tölvupóstfang til að senda á %s" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/mail.php:288 #, php-format msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" +"You have a new posting address on %1$s.\n" "\n" -"\t%s\n" +"Send email to %2$s to post new messages.\n" "\n" -"If not, just ignore this message.\n" +"More email instructions at %3$s.\n" "\n" -"Thanks for your time, \n" -"%s\n" +"Faithfully yours,\n" +"%4$s" msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" +"Þú hefur nýtt bablpóstfang á %1$s.\n" "\n" -"\t%3$s\n" +"Sendu tölvupóst á %2$s til að senda inn babl.\n" "\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" +"Ítarlegri tölvupóstleiðbeiningar eru á %3$s.\n" "\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" +"Með kærri kveðju,\n" +"%4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "Staða %s" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS staðfesting" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s ýtti við þér" #: lib/mail.php:466 #, php-format @@ -6015,12 +4136,17 @@ msgid "" "\n" "%3$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%4$s\n" msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Ný persónuleg skilaboð frá %s" + #: lib/mail.php:513 #, php-format msgid "" @@ -6034,1559 +4160,465 @@ msgid "" "\n" "%4$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%5$s\n" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s heldur upp á babl frá þér" -#: lib/mail.php:600 lib/mail.php:602 +#: lib/mail.php:556 #, php-format msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" -"The notice is here:\n" +"The URL of your notice is:\n" "\n" -"\t%3$s\n" +"%3$s\n" "\n" -"It reads:\n" +"The text of your notice is:\n" "\n" -"\t%4$s\n" +"%4$s\n" "\n" -"You can reply back here:\n" +"You can see the list of %1$s's favorites here:\n" "\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" +"%5$s\n" "\n" "Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +"%6$s\n" msgstr "" -#: actions/all.php:87 actions/all.php:134 +#: lib/mail.php:611 #, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: lib/mail.php:613 #, php-format msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: actions/attachment.php:73 -msgid "No such attachment." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: actions/block.php:149 -msgid "Do not block this user from this group" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/block.php:150 -msgid "Block this user from this group" +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: actions/blockedfromgroup.php:90 -#, php-format -msgid "%s blocked profiles" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: actions/blockedfromgroup.php:93 -#, php-format -msgid "%s blocked profiles, page %d" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: actions/conversation.php:99 -msgid "Conversation" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -msgid "Do not delete this notice" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Gat ekki eytt uppáhaldi." -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 +#: lib/mediafile.php:270 #, php-format -msgid "Invalid alias: \"%s\"" +msgid " Try using another %s format." msgstr "" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 +#: lib/mediafile.php:275 #, php-format -msgid "Alias \"%s\" already in use. Try another one." +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Senda bein skilaboð" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -msgid "Could not create aliases." -msgstr "" +#: lib/messageform.php:146 +msgid "To" +msgstr "Til" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Leyfileg tákn" -#: 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 "" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Senda babl" -#: actions/favorited.php:156 +#: lib/noticeform.php:158 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -msgid "No notice id" -msgstr "" +msgid "What's up, %s?" +msgstr "Hvað er að frétta %s?" -#: actions/file.php:38 -msgid "No notice" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/file.php:42 -msgid "No attachments" +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/noticelist.php:478 +msgid "in context" msgstr "" -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "" +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Svara þessu babli" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Svara" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Ýta við þessum notanda" -#: actions/groupblock.php:95 -msgid "User is already blocked from group." -msgstr "" +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Pot" -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Ýta við þessum notanda" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Villa kom upp við að setja inn nýja persónulega síðu" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Villa kom upp við að setja inn mynd" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Villa kom upp við að setja inn persónulega fjarsíðu" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Eyða babli" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Gat ekki sett inn nýja áskrift." -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Persónulegt" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -msgid "Couldn't update your design." -msgstr "" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Svör" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Uppáhald" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." -msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Notandi" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Innhólf" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Mótteknu skilaboðin þín" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Úthólf" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Skilaboð sem þú hefur sent" -#: actions/groupsearch.php:82 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" +msgid "Tags in %s's notices" +msgstr "Merki í babli %s" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Áskriftir" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Allar áskriftir" -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Áskrifendur" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Allir áskrifendur" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Meðlimur síðan" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Allir hópar" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Almenn" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Notendahópar" + +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Nýleg merki" + +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Í sviðsljósinu" + +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Vinsælt" + +#: lib/searchaction.php:120 +msgid "Search site" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" +#: lib/searchaction.php:162 +msgid "Search help" msgstr "" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Fólk" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Finna persónur á þessu vefsvæði" + +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Babl" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Finna innihald babls" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Finna hópa á þessari síðu" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Ónafngreindur hluti" + +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#: lib/subgroupnav.php:83 #, php-format -msgid " Try using another %s format." -msgstr "" +msgid "People %s subscribes to" +msgstr "Fólk sem %s er áskrifandi að" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#: lib/subgroupnav.php:91 #, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" +msgid "People subscribed to %s" +msgstr "Fólk sem eru áskrifendur að %s" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "Hópar sem %s er meðlimur í" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(ekkert)" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "Notandinn hefur lokað á þig." -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -msgid "Couldn't save file." -msgstr "" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Gat ekki farið í áskrift." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Ekki í áskrift!" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Gat ekki eytt áskrift." -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Ekkert" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Aðalbablararnir" -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Hætta sem áskrifandi að þessum notanda" -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Fara úr áskrift" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/userprofile.php:116 +msgid "Edit Avatar" msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "" +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Notandaaðgerðir" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: lib/userprofile.php:248 +msgid "Edit profile settings" msgstr "" -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Senda bein skilaboð til þessa notanda" -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Skilaboð" -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "fyrir nokkrum sekúndum" -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "fyrir um einni mínútu síðan" -#: actions/publictagcloud.php:69 +#: lib/util.php:848 #, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" +msgid "about %d minutes ago" +msgstr "fyrir um %d mínútum síðan" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "fyrir um einum klukkutíma síðan" -#: actions/publictagcloud.php:75 +#: lib/util.php:852 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" +msgid "about %d hours ago" +msgstr "fyrir um %d klukkutímum síðan" -#: actions/recoverpassword.php:188 -msgid "Password recover" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "fyrir um einum degi síðan" -#: actions/register.php:86 actions/register.php:92 -msgid "Sorry, invalid invitation code." -msgstr "" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "fyrir um %d dögum síðan" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" -msgstr "" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "fyrir um einum mánuði síðan" -#: actions/replies.php:179 actions/replies.php:198 +#: lib/util.php:860 #, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +msgid "about %d months ago" +msgstr "fyrir um %d mánuðum síðan" + +#: lib/util.php:862 +msgid "about a year ago" +msgstr "fyrir um einu ári síðan" -#: actions/replies.php:184 actions/replies.php:203 +#: lib/webcolor.php:82 #, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +msgid "%s is not a valid color!" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 +#: lib/webcolor.php:123 #, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s's favorite notices, page %d" -msgstr "" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -msgid "Not a local notice" -msgstr "" - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "" - -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -msgid "Could not determine source user." -msgstr "" - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -msgid "Could not find target user." -msgstr "" - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -msgid "Reject this subscription" -msgstr "" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." -msgstr "" - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -msgid "Design your profile" -msgstr "" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -msgid "Upload file" -msgstr "" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -msgid "Blocked" -msgstr "" - -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" -msgstr "" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, php-format -msgid "%s is not a valid color!" -msgstr "" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Ekkert þannig merki." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Bein skilaboð til %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Þetta er of langt. Hámarkslengd skilaboða er 140 tákn." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Get ekki fylgst með notanda: Notandinn finnst ekki." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Þú ert nú þegar meðlimur í þessum hópi" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Gat ekki bætt notandanum %s í hópinn %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Þú ert ekki meðlimur í þessum hópi." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Hópar %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Hópar sem %s er meðlimur í" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Hópsaðgerðir" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Skráarsnið myndar ekki stutt." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Ljósmynd" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Færslur frá %1$s á %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Notandi sem verið er að hlusta á er ekki til." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Engin heimild." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Gat ekki breytt beiðnistókum í aðgangstóka." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Óþekkt útgáfa OMB samskiptamátans." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Ekkert svoleiðis babl." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Týndum skránni okkar" - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Færslur frá %1$s á %2$s!" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Þessi síða er ekki aðgengileg í " - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með " -"notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%" -"action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Allar færslur sem passa við \"%s\"" - -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Lýstu þér og áhugamálum þínum í 140 táknum" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Lýstu þér og þínum " - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Ekki tækt veffang á persónulega síðu (ekkert YADIS skjal)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "" -"Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast " -"áskrifandi." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Gat ekki komist yfir beiðnistóka." - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Bablveita fyrir hópinn %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Skilaboð til %1$s á %2$s" - -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Bablveita uppáhaldsbabls %s" - -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Bablveita uppáhaldsbabls %s" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Bablveita uppáhaldsbabls %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "%s hópurinn" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Babl sent inn" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Þessi síða er ekki aðgengileg í " - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Bablveita fyrir %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir " -"gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " -"áskrifandi að babli, smelltu þá á \"Hætta við\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu " -"leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " -"þinn er;" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu " -"leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Get ekki lesið slóðina fyrir myndina '%s'" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Röng gerð myndar fyrir '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Gat ekki framsent til vefþjóns: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Hugbúnaðarleyfi StatusNet" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Ýtt við notanda" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Svara þessu babli" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Vandamál komu upp við að vista babl." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Enginn staðfestingarlykill." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Skrá þig inn á síðuna" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Veldu farsímafyrirtæki" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" - -#: lib/jabber.php:192 -#, fuzzy, php-format -msgid "notice id: %s" -msgstr "Bablveita fyrir %s" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s heldur upp á babl frá þér" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "frá" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Gat ekki eytt uppáhaldi." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Eyða babli" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Ótækt bablinnihald" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Gat ekki búið til OpenID eyðublað: %s" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Gat ekki þáttað skilaboðin." -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Ekki skráður notandi." -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Afsakið en þetta er ekki móttökutölvupóstfangið þitt." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Því miður er móttökutölvupóstur ekki leyfður." diff --git a/locale/it/LC_MESSAGES/statusnet.mo b/locale/it/LC_MESSAGES/statusnet.mo index b35847828..29a83753a 100644 Binary files a/locale/it/LC_MESSAGES/statusnet.mo and b/locale/it/LC_MESSAGES/statusnet.mo differ diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 3e0780579..e1ce3066d 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -5,3120 +5,2013 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:39+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:21+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Ricerca \"%s\" nel flusso" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" a eccezione di questi dati personali: password, indirizzo email, indirizzo " -"messaggistica istantanea, numero di telefono." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Nessuna tale etichetta." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " via " +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Nessun tale utente." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Aggiornamenti in risposta a %2$s" +msgid "%s and friends, page %d" +msgstr "%s e amici, pagina %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "Hai ricevuto un invito per seguire %1$s su %2$s" +msgid "%s and friends" +msgstr "%s e amici" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n" -"\n" -"%2$s è un servizio di micro-blog che ti consente di rimanere sempre al passo " -"con le persone che conosci e che ti interessano.\n" -"\n" -"Puoi condividere notizie che ti riguardano, i tuoi pensieri o la tua vita in " -"rete con le persone che conosci ed è anche un ottimo strumento per " -"conoscerne di nuove che condividono i tuoi stessi interessi.\n" -"\n" -"%1$s ha scritto:\n" -"\n" -"%4$s\n" -"\n" -"Puoi vedere il profilo di %1$s su %2$s al seguente indirizzo:\n" -"\n" -"%5$s\n" -"\n" -"Se vuoi provare il servizio, fai clic sul collegamento qui sotto per " -"accettare l'invito:\n" -"\n" -"%6$s\n" -"\n" -"Se non è ciò che vuoi, ignora semplicemente questo messaggio. Grazie per " -"aver letto questo invito e per il tuo tempo!\n" -"\n" -"Cordiali saluti, %2$s\n" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed per gli amici di %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed per gli amici di %s" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed per gli amici di %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordiali saluti,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s aggiornamenti in risposta agli aggiornamenti da %2$s / %3$s" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "Stato di %1$s su %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "Attività pubblica di %s" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s e amici" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "attività pubblica di %s" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Aggiornamenti da %1$s e amici su %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "stato di %s" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Metodo delle API non trovato!" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Attività di %s" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Questo metodo richiede POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "Aggiornamenti di %s da tutti!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come " -"confermare il tuo indirizzo email.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%]" -"(%%site.broughtbyurl%%). " +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "L'utente non ha un profilo." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** è un servizio di micro-blog. " +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Blocco dell'utente non riuscito." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". I collaboratori devono essere indicati col loro nome completo o soprannome." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Sblocco dell'utente non riuscito." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Nessun testo nel messaggio!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 lettere minuscole o numeri, niente punteggiatura o spazi. Richiesto." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 o più caratteri" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Utente destinatario non trovato." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 o più caratteri, e non dimenticarla!" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "Non puoi inviare messaggi diretti a utenti che non sono amici tuoi." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 o più caratteri. Richiesta." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Messaggi diretti a %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Un codice di conferma è stato inviato all'indirizzo di messaggistica " -"istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." +msgid "All the direct messages sent from %s" +msgstr "Tutti i messaggi diretti inviati da %s" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " -"Controlla la tua casella di posta (e anche la posta indesiderata!) per il " -"codice e le istruzioni su come usarlo." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Messaggi diretti a %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Un codice di conferma è stato inviato al numero di telefono che hai " -"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " -"per il codice e le istruzioni su come usarlo." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Tutti i messaggi diretti inviati a %s" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Metodo delle API non trovato!" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Nessuno stato trovato con quel ID." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Metodo delle API in lavorazione." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Questo messaggio è già un preferito!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Informazioni" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Impossibile creare preferito." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Accetta" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Questo messaggio non è un preferito!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Aggiungi" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Aggiungi OpenID" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Impossibile eliminare un preferito." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Aggiungi o rimuovi OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Indirizzo" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Impossibile seguire l'utente: utente non trovato." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Indirizzi email di amici da invitare (uno per riga)" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Impossibile seguire l'utente: %s è già nel tuo elenco." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Tutti gli abbonamenti" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Impossibile seguire l'utente: utente non trovato." -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Tutti gli aggiornamenti di %s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Devono essere forniti due ID utente o nominativi." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Accesso già effettuato." +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Impossibile recuperare l'attività pubblica." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Già abbonato!" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Impossibile trovare un qualsiasi stato." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Sei sicuro di voler eliminare questo messaggio?" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autorizza abbonamento" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Impossibile creare preferito." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Accedi automaticamente in futuro; non per computer condivisi!" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Impossibile impostare la membership al gruppo." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -"Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-" -"umani)" +"Il soprannome deve essere composto solo da lettere minuscole e numeri, senza " +"spazi." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Immagine" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Soprannome già in uso. Prova con un altro." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Immagine aggiornata." +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Non è un soprannome valido." + +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "L'URL della pagina web non è valido." + +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Nome troppo lungo (max 255 caratteri)" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "La descrizione è troppo lunga (max 140 caratteri)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Ubicazione troppo lunga (max 255 caratteri)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Too many aliases! Maximum %d." msgstr "" -"In attesa di conferma per questo indirizzo. Controlla il tuo account Jabber/" -"GTalk per un messaggio con ulteriori istruzioni (hai aggiunto %s al tuo " -"elenco contatti?)." -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etichetta non valida: \"%s\"" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Soprannome già in uso. Prova con un altro." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Attesa la conferma per questo indirizzo. Controlla la tua casella di posta " -"(e anche la posta indesiderata!) per un messaggio con ulteriori istruzioni." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Attesa la conferma per questo numero di telefono." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Sei già un membro di quel gruppo" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Precedenti »" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Biografia" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Impossibile iscrivere l'utente %s al gruppo %s" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "La biografia è troppo lunga (max 140 caratteri)." +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Non sei un membro di quel gruppo." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Impossibile eliminare questo messaggio." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" +msgid "%s groups" +msgstr "Gruppi di %s" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Impossibile salvare la nuova password." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Azioni dei gruppi" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Annulla" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Gruppi di %s" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Impossibile creare l'oggetto OpenID consumer." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Il gruppo %s è membro di" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Impossibile normalizzare quell'ID Jabber" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Questo metodo richiede POST o DELETE." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Impossibile normalizzare l'indirizzo email" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Non puoi eliminare lo stato di un altro utente." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Modifica" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Immagine aggiornata." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Modifica la gestione dell'email" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Nessuno stato con quel ID trovato." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Modifica password" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Troppo lungo. Lunghezza massima 140 caratteri." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Modifica la tua password" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Non trovato" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Modifica le impostazioni del tuo profilo" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Conferma" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato file immagine non supportato." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Conferma indirizzo" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Preferiti da %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Conferma annullata." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s aggiornamenti preferiti da %s / %s" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Codice di conferma" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "Attività di %s" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Codice di conferma non trovato." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" + +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Aggiornamenti in risposta a %2$s" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Congratulazioni %s! Benvenuto/a in %%%%site.name%%%%. Da qui ora puoi...\n" -"\n" -"* Visitare il [tuo profilo](%s) e inviare il tuo primo messaggio.\n" -"*Aggiungere un [indirizzo Jabber/GTalk](%%%%action.imsettings%%%%) per usare " -"quel servizio per inviare messaggi.\n" -"*[Ricercare persone](%%%%action.peoplesearch%%%%) che potresti conoscere o " -"che condividono i tuoi stessi interessi.\n" -"* Aggiornare le [tue impostazioni](%%%%action.profilesettings%%%%) per " -"fornire agli altri più informazioni su di te.\n" -"* Leggere la [documentazione in rete](%%%%doc.help%%%%) per le " -"caratteristiche che magari non hai ancora visto. \n" -"\n" -"Grazie per esserti iscritto/a e speriamo tu possa divertiti usando questo " -"servizio." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Connetti" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Collega a un account esistente" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Contatti" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s aggiornamenti in risposta agli aggiornamenti da %2$s / %3$s" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Impossibile creare il modulo OpenID: %s" +msgid "%s public timeline" +msgstr "attività pubblica di %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Impossibile seguire l'utente: %s è già nel tuo elenco." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Impossibile seguire l'utente: utente non trovato." +msgid "%s updates from everyone!" +msgstr "Aggiornamenti di %s da tutti!" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Impossibile redirigere al server: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Impossibile salvare le informazioni dell'immagine" +msgid "Notices tagged with %s" +msgstr "Messaggi etichettati con %s" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Impossibile salvare le nuove informazioni del profilo" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Impossibile abbonare altri a te." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non trovato" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Impossibile abbonarsi." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Nessun tale documento." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Nessun soprannome." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "" -"Impossibile convertire le credenziali di richiesta in credenziali di accesso." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Nessuna dimensione." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Impossibile eliminare l'email di conferma." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Dimensione non valida." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Impossibile eliminare l'abbonamento." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Immagine" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Impossibile trovare un qualsiasi stato." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Qui puoi caricare la tua immagine personale." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Impossibile ottenere un token di richiesta." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Utente senza profilo corrispondente" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Impossibile inserire il codice di conferma." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Impostazioni immagine" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Impossibile inserire un nuovo abbonamento." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Originale" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Impossibile salvare il profilo." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Anteprima" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Elimina" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Impossibile aggiornare il record dell'utente." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Carica" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Impossibile aggiornare l'utente." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Ritaglia" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Crea" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "C'è stato un problema con il tuo token di sessione. Prova di nuovo." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Crea un nuovo utente con questo soprannome." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Invio del modulo inaspettato." -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Crea un nuovo account" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Scegli un'area quadrata per la tua immagine personale" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Creazione nuovo account per OpenID che ha già un utente." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Perso il nostro file di dati." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Indirizzo Jabber/GTalk attualmente confermato." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Immagine aggiornata." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Numero di telefono attualmente confermato per gli SMS." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Errore nell'aggiornare l'immagine." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Indirizzo email attualmente confermato." +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Immagine aggiornata." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "In questo momento:" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Nessun soprannome" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Errore del DB nell'inserire un hashtag: %s" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Nessun tale gruppo" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Errore del DB nell'inserire la risposta: %s" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Profilo utente" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Elimina messaggio" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amici, pagina %d" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Un elenco degli utenti in questo gruppo." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Email" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Sblocco dell'utente non riuscito." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Indirizzo email" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Sblocca" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Impostazioni email" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Sblocca questo utente" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Indirizzo email già esistente." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Non connesso." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Conferma indirizzo email" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Nessun profilo specificato." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Indirizzo email, del tipo \"NomeUtente@example.org\"" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Nessun profilo con quel ID." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Indirizzi email" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Blocca utente" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Inserisci un soprannome o un indirizzo email." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Inserisci il codice che hai ricevuto sul tuo telefono." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "No" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Errore nell'autorizzare il token" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Un elenco degli utenti in questo gruppo." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Errore nel collegare l'utente a OpenID." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Sì" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Errore nel connettere l'utente." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Un elenco degli utenti in questo gruppo." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Errore nell'inserire l'immagine" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Hai già bloccato questo utente." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Errore nell'inserire il nuovo profilo" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Salvataggio delle informazioni per il blocco non riuscito." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Errore nell'inserire un profilo remoto" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Errore nel salvare la conferma dell'indirizzo." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Errore nel salvare il profilo remoto" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Errore nel salvare il profilo." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Errore nel salvare l'utente." +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Fotografia" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Errore nel salvare l'utente; non valido." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Nessun codice di conferma." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Errore nell'impostare l'utente." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Codice di conferma non trovato." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Errore nell'aggiornare il profilo" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Quel codice di conferma non è per te!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Errore nell'aggiornare il profilo remoto" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Tipo di indirizzo non riconosciuto %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Errore con il codice di conferma." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Quell'indirizzo è già stato confermato." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Soprannome esistente" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Impossibile aggiornare l'utente." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "FAQ" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Impossibile eliminare l'email di conferma." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Errore nell'aggiornare l'immagine." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Conferma indirizzo" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Feed per gli amici di %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed per le risposte a %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Codice di conferma" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed per l'etichetta %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Messaggi" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Ricerca contenuto dei messaggi" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Nessun tale messaggio." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Ricerca persone in questo sito" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Impossibile eliminare questo messaggio." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " -"propria password prima di modificare le impostazioni." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Nome" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Nome troppo lungo (max 255 caratteri)" - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Aiuto" +"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " +"possibile recuperarlo." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Home" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Elimina messaggio" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Pagina web" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Sei sicuro di voler eliminare questo messaggio?" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "L'URL della pagina web non è valido." +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Impossibile eliminare questo messaggio." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Voglio inviare i messaggi via email" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Elimina questo messaggio" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "MI" +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Indirizzo di messaggistica istantanea" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Questo messaggio non è un preferito!" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Impostazioni messaggistica istantanea" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Aggiungi ai preferiti" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Se hai già un account, esegui l'accesso col tuo nome utente e la tua " -"password per connetterlo al tuo OpenID." +#: actions/doc.php:69 +msgid "No such document." +msgstr "Nessun tale documento." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Se vuoi aggiungere un OpenID al tuo account, inseriscilo nel riquadro " -"sottostante e fai clic su \"Aggiungi\"." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Modifica il gruppo %s" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " -"per email all'indirizzo indicato nel tuo profilo." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Devi eseguire l'accesso per creare un gruppo." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Email di ricezione" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Devi essere amministratore per modificare il gruppo" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Indirizzo email di ricezione rimosso." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Usa questo modulo per modificare il gruppo." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Vecchia password non corretta" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "La descrizione è troppo lunga (max 140 caratteri)." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Nome utente o password non corretto." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Impossibile aggiornare il gruppo." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Le istruzioni per recuperare la tua password sono state inviate " -"all'indirizzo email registrato nel tuo account." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Opzioni salvate." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "URL \"%s\" dell'immagine non valido" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Impostazioni email" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" -msgstr "Indirizzo email non valido: %s" +msgid "Manage how you get email from %%site.name%%." +msgstr "Gestisci la ricezione delle email da %%site.name%%." -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Pagina web \"%s\" non valida" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Indirizzo" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "URL \"%s\" della licenza non valido" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Indirizzo email attualmente confermato." -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Contenuto del messaggio non valido" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Rimuovi" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "URI del messaggio non valido" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Attesa la conferma per questo indirizzo. Controlla la tua casella di posta " +"(e anche la posta indesiderata!) per un messaggio con ulteriori istruzioni." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "URL del messaggio non valido" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Annulla" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "URL \"%s\" del profilo non valido" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "URL del profilo non valido (formato errato)" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Indirizzo email, del tipo \"NomeUtente@example.org\"" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "URL del profilo restituito dal server non valido." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Aggiungi" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Dimensione non valida." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Email di ricezione" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Nome utente o password non valido." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Invia le email a questo indirizzo per scrivere nuovi messaggi." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Inviti inviati" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" +"Crea un nuovo indirizzo email a cui inviare i messaggi, rimuove quello " +"vecchio." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Inviti inviati alle seguenti persone:" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Nuovo" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Invita" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Preferenze" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Invita nuovi utenti" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Inviami avvisi di nuovi abbonamenti via email" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -"Gestito dal software di micro-blog [StatusNet](http://status.net/), versione " -"%s, disponibile sotto licenza [GNU Affero General Public License](http://www." -"fsf.org/licensing/licenses/agpl-3.0.html)." +"Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "ID Jabber già assegnato a un altro utente." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Indirizzo Jabber o GTalk nella forma \"NomeUtente@example.org\". Per prima " -"cosa, assicurati di aggiungere %s all'elenco dei contatti nel tuo programma " -"di messaggistica o su GTalk." +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Lingua" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Consenti ai miei amici di richiamarmi e inviami un'email" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "La lingua è troppo lunga (max 50 caratteri)." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Voglio inviare i messaggi via email" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Ubicazione" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Pubblica un MicroID per il mio indirizzo email" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Ubicazione troppo lunga (max 255 caratteri)." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Salva" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Accedi" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Preferenze salvate." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Accedi con un account [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Nessun indirizzo email." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" -"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" -"%). " +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Impossibile normalizzare l'indirizzo email" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Esci" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Non è un indirizzo email valido" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Quello è già il tuo indirizzo email." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Password persa o dimenticata?" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Quell'indirizzo email appartiene già a un altro utente." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Impossibile inserire il codice di conferma." + +#: actions/emailsettings.php:358 +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 "" -"Crea un nuovo indirizzo email a cui inviare i messaggi, rimuove quello " -"vecchio." +"Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " +"Controlla la tua casella di posta (e anche la posta indesiderata!) per il " +"codice e le istruzioni su come usarlo." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Gestisci la ricezione delle email da %%site.name%%." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Nessuna conferma da annullare." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Membro dal" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Quello è l'indirizzo di messaggistica sbagliato." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Micro-blog di %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Conferma annullata." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Operatore di telefonia mobile. Se conosci un operatore che accetta gli SMS " -"via email, ma non è elencato qui, scrivici a %s." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Quello non è il tuo indirizzo email." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "I miei testi e file sono disponibili sotto " +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "L'indirizzo è stato rimosso." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Nuovo" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Nessun indirizzo email di ricezione." -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Nuovo indirizzo email per inviare messaggi a %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Impossibile aggiornare il record dell'utente." + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Indirizzo email di ricezione rimosso." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nuovo indirizzo email di ricezione aggiunto." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nuovo soprannome" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nuovo messaggio" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nuova password" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Messaggi famosi" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Nuova password salvata con successo. Hai effettuato l'accesso." +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Messaggi famosi, pagina %d" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Soprannome" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Ecco i messaggi più famosi all'interno del sito." -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Soprannome già in uso. Prova con un altro." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: 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 "" -"Il soprannome deve essere composto solo da lettere minuscole e numeri, senza " -"spazi." -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Soprannome non consentito." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Soprannome dell'utente che vuoi seguire" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Messaggi preferiti di %s" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Soprannome o email" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "No" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Questo messaggio è già un preferito!" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Nessun ID di Jabber." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Rimuovi preferito" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Nessuna richiesta di autorizzazione!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Utenti in evidenza" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Nessun operatore selezionato." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Utenti in evidenza, pagina %d" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Nessun codice inserito" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Una selezione dei migliori utenti su %s" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Nessun codice di conferma." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nuovo messaggio" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Nessun contenuto!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nuovo messaggio" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Nessun indirizzo email." +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Nessun ID." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Nessun indirizzo email di ricezione." - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Nessun soprannome fornito dal server remoto." - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Nessun soprannome." - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Nessuna conferma da annullare." - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Nessun numero di telefono." - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Nessun URL di profilo restituito dal server." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Non aspettavo questa risposta!" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Nessun indirizzo email registrato per quell'utente." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'utente che intendi seguire non esiste." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Nessuna richiesta trovata!" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Puoi usare l'abbonamento locale!" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Nessun risultato" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Quell'utente ti ha bloccato dall'abbonarti." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Nessuna dimensione." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non autorizzato." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Nessuno stato trovato con quel ID." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Impossibile convertire le credenziali di richiesta in credenziali di accesso." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Nessuno stato con quel ID trovato." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versione del protocollo OMB sconosciuta." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Nessun tale OpenID." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Errore nell'aggiornare il profilo remoto" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Nessun tale documento." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Nessuna tale gruppo." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." msgstr "Nessun tale messaggio." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Nessun codice di ripristino." - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Nessun tale abbonamento" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Nessun tale utente." - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Nessun utente con quell'email o nome utente." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Perso il nostro file." -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Nessuno da mostrare!" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Nessun profilo specificato." -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Non è un codice di ripristino." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Non è un utente registrato." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "L'utente ti ha bloccato." -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Non è un formato di dati supportato." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Non sei un membro di quel gruppo." -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Non è un ID Jabber valido" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Blocca utente" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Non è un OpenID valido." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Non è un indirizzo email valido" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Non è un indirizzo email valido." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Nessun ID" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Non è un soprannome valido." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Devi eseguire l'accesso per creare un gruppo." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Non è un URL di profilo valido (servizio incorretto)." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Gruppi" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Non è un URL di profilo valido (nessun XRDS definito)." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Non è un URL di profilo valido (nessun documento YADIS)." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Impossibile aggiornare l'utente." -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Non è un'immagine o il file è danneggiato." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Impossibile salvare le tue impostazioni di Twitter!" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Non autorizzato." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferenze di sincronizzazione salvate." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Non aspettavo questa risposta!" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Logo del gruppo" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Non trovato" +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Non connesso." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Scegli un'area quadrata per la tua immagine personale" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Non abbonato!" +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Logo aggiornato." -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Ricerca messaggi" +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Errore nell'aggiornare il logo." -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format -msgid "Notice feed for %s" -msgstr "Feed dei messaggi per %s" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Il messaggio non ha un profilo" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Messaggi" +msgid "%s group members" +msgstr "Membri del gruppo %s" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/groupmembers.php:96 #, php-format -msgid "Notices tagged with %s" -msgstr "Messaggi etichettati con %s" +msgid "%s group members, page %d" +msgstr "Membri del gruppo %s, pagina %d" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Vecchia password" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Un elenco degli utenti in questo gruppo." -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Configurazione account OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Auto-invio OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Accesso OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "URL OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Autenticazione OpenID annullata." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Autenticazione OpenID non riuscita: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Errore OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID rimosso." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Impostazioni OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Puoi aggiungere un messaggio personale agli inviti." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Amministra" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Caricamento parziale." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Blocca" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Password" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Blocca questo utente" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "La password e la conferma non corrispondono." +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Devi essere amministratore per modificare il gruppo" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "La password dev'essere lunga almeno 6 caratteri." +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Amministra" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Richiesta password di ripristino" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Password salvata." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Le password non corrispondono." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " +"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Persone" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Ricerca gruppi" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Ricerca persone" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nessun risultato" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Ricerca persone" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Personale" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Messaggio personale" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Gruppi" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Gruppi, pagina %d" -#: ../actions/userauthorization.php:78 +#: actions/groups.php:90 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " -"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Preferenze" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferenze salvate." +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "L'utente ti ha bloccato." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Lingua preferita" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Errore nel rimuovere il blocco." -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Privacy" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Impostazioni messaggistica istantanea" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Problema nel salvare il messaggio." +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Puoi inviare e ricevere messaggi attraverso i servizi di [messaggistica " +"istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le " +"impostazioni qui di seguito." -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profilo" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Questa pagina non è disponibile in un " -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL del profilo" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Indirizzo Jabber/GTalk attualmente confermato." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Impostazioni del profilo" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"In attesa di conferma per questo indirizzo. Controlla il tuo account Jabber/" +"GTalk per un messaggio con ulteriori istruzioni (hai aggiunto %s al tuo " +"elenco contatti?)." -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Profilo sconosciuto" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Indirizzo di messaggistica istantanea" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Feed del flusso pubblico" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Indirizzo Jabber o GTalk nella forma \"NomeUtente@example.org\". Per prima " +"cosa, assicurati di aggiungere %s all'elenco dei contatti nel tuo programma " +"di messaggistica o su GTalk." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Attività pubblica" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Inviami le notifiche via Jabber/GTalk" + +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "Inviami le risposte delle persone a cui sono abbonato via Jabber/GTalk" + +#: actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Pubblica un MicroID per il mio indirizzo Jabber/GTalk" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Pubblica un MicroID per il mio indirizzo email" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Nessun ID di Jabber." -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Etichette recenti" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Impossibile normalizzare quell'ID Jabber" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Recupera" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Non è un ID Jabber valido" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Recupero password" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Quello è già il tuo ID di Jabber." -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Codice di recupero per utente sconosciuto." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "ID Jabber già assegnato a un altro utente." -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registra" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Un codice di conferma è stato inviato all'indirizzo di messaggistica " +"istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Registrazione non consentita." +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Quello non è il tuo ID di Jabber." -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Registrazione riuscita" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Casella posta in arrivo di %s - pagina %d" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Rifiuta" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Casella posta in arrivo di %s" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Ricordami" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Questa è la casella della tua posta in arrivo, contiene i messaggi privati " +"ricevuti." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Profilo remoto senza profilo corrispondente" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Abbonamento remoto" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Rimuovi" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Indirizzo email non valido: %s" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Rimuovi OpenID" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Inviti inviati" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Rimuovere il tuo unico OpenID renderà impossibile effettuare l'accesso! Se " -"vuoi rimuoverlo, prima aggiungi un altro OpenID." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Invita nuovi utenti" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Risposte" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Sei già abbonato a questi utenti:" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Replies to %s" -msgstr "Risposte a %s" +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Reimposta" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Queste persone sono già utenti e sei stato automaticamente abbonato a loro:" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Reimposta password" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Inviti inviati alle seguenti persone:" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Riceverai una notifica quando i tuoi invitati accetteranno e si " +"registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Numero di telefono per SMS" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Usa questo modulo per invitare i tuoi amici e colleghi a usare questo " +"servizio." -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Impostazioni SMS" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Indirizzi email" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Conferma SMS" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Indirizzi email di amici da invitare (uno per riga)" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Stessa password di sopra" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Messaggio personale" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Stessa password di sopra. Richiesta." - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Salva" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Ricerca" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Puoi aggiungere un messaggio personale agli inviti." -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Ricerca nel flusso dei feed" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Invia" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:226 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Ricerca tra i messaggi su %%site.name%% in base al contenuto. Separa i " -"termini di ricerca con degli spazi; lunghezza minima 3 caratteri." +msgid "%1$s has invited you to join them on %2$s" +msgstr "Hai ricevuto un invito per seguire %1$s su %2$s" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/invite.php:228 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " -"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." +"Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n" +"\n" +"%2$s è un servizio di micro-blog che ti consente di rimanere sempre al passo " +"con le persone che conosci e che ti interessano.\n" +"\n" +"Puoi condividere notizie che ti riguardano, i tuoi pensieri o la tua vita in " +"rete con le persone che conosci ed è anche un ottimo strumento per " +"conoscerne di nuove che condividono i tuoi stessi interessi.\n" +"\n" +"%1$s ha scritto:\n" +"\n" +"%4$s\n" +"\n" +"Puoi vedere il profilo di %1$s su %2$s al seguente indirizzo:\n" +"\n" +"%5$s\n" +"\n" +"Se vuoi provare il servizio, fai clic sul collegamento qui sotto per " +"accettare l'invito:\n" +"\n" +"%6$s\n" +"\n" +"Se non è ciò che vuoi, ignora semplicemente questo messaggio. Grazie per " +"aver letto questo invito e per il tuo tempo!\n" +"\n" +"Cordiali saluti, %2$s\n" -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Seleziona un operatore" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Devi eseguire l'accesso per iscriverti a un gruppo." -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Invia" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Sei già un membro di quel gruppo" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Invia le email a questo indirizzo per scrivere nuovi messaggi." +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "Impossibile iscrivere l'utente %s al gruppo %s" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Inviami avvisi di nuovi abbonamenti via email" +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s si è iscritto al gruppo %s" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Inviami le notifiche via Jabber/GTalk" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Devi eseguire l'accesso per lasciare un gruppo." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Inviami avvisi via SMS: comprendo che potrei incorrere in esorbitanti " -"bollette da parte del mio operatore" +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "Non sei un membro di quel gruppo." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Inviami le risposte delle persone a cui sono abbonato via Jabber/GTalk" +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Impossibile trovare il record della membership." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Impostazioni" +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Impostazioni salvate." +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s ha lasciato il gruppo %s" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Ecco le etichette più famose dell'ultima settimana" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Accesso già effettuato." -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Qualcun altro ha già questo OpenID." +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Contenuto del messaggio non valido" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "È successo qualcosa di strano." +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Nome utente o password non corretto." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Email di ricezione non consentita." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Errore nell'impostare l'utente." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Quella non è la tua email di ricezione." +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Accedi" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Sorgenti" +#: actions/login.php:243 +msgid "Login to site" +msgstr "Accedi al sito" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistiche" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Soprannome" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "OpenID memorizzato non trovato." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Abbonati" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Password" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Abbonati" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Ricordami" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Abbonamento autorizzato" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Accedi automaticamente in futuro; non per computer condivisi!" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Abbonamento rifiutato" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Password persa o dimenticata?" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Abbonamenti" +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " +"propria password prima di modificare le impostazioni." -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Errore di sistema nel caricare il file." +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" +"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" +"%). " -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Etichette" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Testo" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Ricerca testo" +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Quel OpenID non ti appartiene." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Quell'indirizzo è già stato confermato." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Nessuno stato corrente" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Quel codice di conferma non è per te!" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Nuovo gruppo" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Quell'indirizzo email appartiene già a un altro utente." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Usa questo modulo per creare un nuovo gruppo." -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Quel file è troppo grande." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nuovo messaggio" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Quello è già il tuo ID di Jabber." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Non puoi inviare un messaggio a questo utente." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Quello è già il tuo indirizzo email." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Nessun contenuto!" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Quello è già il tuo numero di telefono." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Nessun destinatario specificato." -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Quello non è il tuo ID di Jabber." +#: actions/newmessage.php:164 lib/command.php:370 +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." -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Quello non è il tuo indirizzo email." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Messaggio" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Quello non è il tuo numero di telefono." - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Quello è l'indirizzo di messaggistica sbagliato." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Quello è il numero di conferma errato." +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Messaggio diretto a %s inviato" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Quel numero di telefono appartiene già a un altro utente." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Errore di Ajax" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Troppo lungo. Lunghezza massima 140 caratteri." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nuovo messaggio" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Troppo lungo. Lunghezza massima 255 caratteri." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Messaggio inviato" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/noticesearch.php:68 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "L'indirizzo è stato rimosso." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " -"richiamo. Controlla le istruzioni del sito per i dettagli su come " -"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " -"richiamo. Controlla con le istruzioni del sito per i dettagli su come " -"rifiutare completamente l'abbonamento." +"Ricerca tra i messaggi su %%site.name%% in base al contenuto. Separa i " +"termini di ricerca con degli spazi; lunghezza minima 3 caratteri." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Queste sono le persone che seguono %s." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Ricerca testo" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Queste sono le persone che ti seguono." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Ricerca \"%s\" nel flusso" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Queste sono le persone seguite da %s." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Queste sono le persone che stai seguendo." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Queste persone sono già utenti e sei stato automaticamente abbonato a loro:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Questo codice di conferma è scaduto. Ricomincia da capo." -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:124 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Questo modulo dovrebbe inviarsi automaticamente. In caso contrario, fai clic " -"sul pulsante per inviarlo al tuo servizio OpenID." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Questa è la prima volta che accedi a %s ed è quindi necessario collegare il " -"tuo OpenID a un account locale. Puoi crearne uno nuovo o collegarlo con il " -"tuo account esistente, se ne hai uno." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Questo metodo richiede POST o DELETE." +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Aggiornamenti da %1$s su %2$s!" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Questo metodo richiede POST." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Questa pagina non è disponibile in un tipo di supporto che tu accetti" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Questo utente non consente i richiami oppure non ha confermato o impostato " +"ancora il suo indirizzo email." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Fuso orario" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Richiamo inviato" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Fuso orario non selezionato" +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Richiamo inviato!" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Il messaggio non ha un profilo" + +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Per abbonarti puoi [eseguire l'accesso](%%action.login%%) oppure [registrare]" -"(%%action.register%%) un nuovo account. Se ne possiedi già uno su un [sito " -"di micro-blog compatibile](%%doc.openmublog%%), inserisci l'indirizzo del " -"tuo profilo qui di seguito." +msgid "%1$s's status on %2$s" +msgstr "Stato di %1$s su %2$s" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Devono essere forniti due ID utente o nominativi." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Connetti" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL della tua pagina web, blog o profilo su un altro sito" +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL del tuo profilo su un altro servizio di micro-blog compatibile" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Non è un formato di dati supportato." -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Invio del modulo inaspettato." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Ricerca persone" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Ripristino della password inaspettato." +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Ricerca messaggi" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Azione sconosciuta" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Altre impostazioni" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Versione del protocollo OMB sconosciuta." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Gestisci altre opzioni." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -"Se non indicato diversamente, i diritti d'autore dei contenuti di questo " -"sito sono dei singoli utenti e sono disponibili sotto " - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Tipo di indirizzo non riconosciuto %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Disabbonati" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Versione OMB non supportata" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Servizio di autoriduzione da usare." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Formato file immagine non supportato." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Impostazioni del profilo" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Aggiornamenti via SMS" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Aggiornamenti via messaggistica istantanea (MI)" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Aggiornamenti da %1$s e amici su %2$s!" +msgid "Outbox for %s - page %d" +msgstr "Casella posta inviata di %s - pagina %d" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Aggiornamenti da %1$s su %2$s!" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Carica" +msgid "Outbox for %s" +msgstr "Casella posta inviata di %s" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Carica qui una nuova immagine utente. Non puoi modificarla una volta " -"caricata, quindi sii sicuro che sia più o meno quadrata. Deve anche essere " -"rilasciata sotto la licenza del sito. Usa un'immagine che ti appartiene e " -"che tu voglia condividere." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Carica una nuova immagine per il profilo" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Usa questo modulo per invitare i tuoi amici e colleghi a usare questo " -"servizio." +"Questa è la casella della tua posta inviata, contiene i messaggi privati che " +"hai inviato." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Usata solo per aggiornamenti, annunci e recupero password" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Modifica password" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "L'utente che intendi seguire non esiste." +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Modifica la tua password." -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "L'utente non ha un profilo." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Cambio password" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Soprannome dell'utente" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Vecchia password" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Utente non trovato." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nuova password" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "In che fuso orario risiedi solitamente?" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 o più caratteri" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Cosa succede %s?" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Conferma" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Dove ti trovi, tipo \"città, regione, stato\"" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "stessa password di sopra" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Tipo di immagine errata per \"%s\"" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Modifica" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Dimensione dell'immagine sbagliata a \"%s\"" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "La password deve essere di 6 o più caratteri." -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Sì" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Le password non corrispondono." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Hai già questo OpenID!" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Vecchia password non corretta" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " -"possibile recuperarlo." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Errore nel salvare l'utente; non valido." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Hai già effettuato l'accesso!" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Impossibile salvare la nuova password." -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Sei già abbonato a questi utenti:" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Password salvata." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Non sei amico dell'utente specificato." +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " +"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Qui puoi cambiare la tua password. Scegline una buona!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Ricerca persone" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Puoi creare un nuovo account per iniziare a inviare messaggi." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Non è un'etichetta valida di persona: %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Puoi ricevere messaggi SMS attraverso l'email da %%site.name%%." +msgid "Users self-tagged with %s - page %d" +msgstr "Utenti auto-etichettati con %s - pagina %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "Puoi rimuovere un OpenID dal tuo account facendo clic su \"Rimuovi\"." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Contenuto del messaggio non valido" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Puoi inviare e ricevere messaggi attraverso i servizi di [messaggistica " -"istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le " -"impostazioni qui di seguito." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Impostazioni del profilo" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3126,2939 +2019,2184 @@ msgstr "" "Qui puoi aggiornare le informazioni del tuo profilo personale, così gli " "altri potranno conoscere qualcosa in più di te." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Puoi usare l'abbonamento locale!" +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Informazioni sul profilo" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Non puoi registrarti se non accetti la licenza." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Non hai inviato quel profilo" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Nome" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Hai un nuovo indirizzo di invio su %1$s.\n" -"\n" -"Scrivi le email a %2$s per inviare nuovi messaggi.\n" -"\n" -"Puoi trovare maggiori informazioni presso %3$s.\n" -"\n" -"Cordiali saluti,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Pagina web" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Non puoi eliminare lo stato di un altro utente." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL della tua pagina web, blog o profilo su un altro sito" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Riceverai una notifica quando i tuoi invitati accetteranno e si " -"registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descrivi te e i tuoi " + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Biografia" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Sei ora identificato/a. Inserisci una nuova password qui di seguito. " +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Ubicazione" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Il tuo URL OpenID" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Dove ti trovi, tipo \"città, regione, stato\"" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Il tuo soprannome su questo server o il tuo indirizzo email registrato." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Etichette" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " -"account. Gestisci i tuoi OpenID associati da qui." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "pochi secondi fa" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "circa %d giorni fa" +"Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "circa %d ore fa" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Lingua" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "circa %d minuti fa" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Lingua preferita" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "circa %d mesi fa" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Fuso orario" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "circa un giorno fa" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "In che fuso orario risiedi solitamente?" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "circa un minuto fa" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-" +"umani)" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "circa un mese fa" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La biografia è troppo lunga (max 140 caratteri)." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "circa un anno fa" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Fuso orario non selezionato" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "circa un'ora fa" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "La lingua è troppo lunga (max 50 caratteri)." -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "elimina" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "in risposta a..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "rispondi" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "stessa password di sopra" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etichetta non valida: \"%s\"" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "tipo di file non supportato" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Successivi" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Questo messaggio non è un preferito!" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Impossibile salvare il profilo." -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Impossibile eliminare un preferito." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Impossibile salvare le etichette." -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Preferito" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Impostazioni salvate." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -"Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Questo messaggio è già un preferito!" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Impossibile recuperare l'attività pubblica." -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Impossibile creare preferito." +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Attività pubblica, pagina %d" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Non preferito" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Attività pubblica" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "Messaggi preferiti di %s" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flusso pubblico" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Feed dei messaggi preferiti di %s" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flusso pubblico" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Casella posta in arrivo di %s - pagina %d" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flusso pubblico" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/public.php:179 #, php-format -msgid "Inbox for %s" -msgstr "Casella posta in arrivo di %s" +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -"Questa è la casella della tua posta in arrivo, contiene i messaggi privati " -"ricevuti." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:186 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -"Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n" -"\n" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Accesso automatico in futuro; " +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Per motivi di sicurezza reinserire la propria " +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" +"wiki/Microblogging) " -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Accedi con il tuo nome utente e password. " +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Insieme delle etichette" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." +#: actions/publictagcloud.php:63 +#, fuzzy, php-format +msgid "These are most popular recent tags on %s " +msgstr "Queste sono le etichette più usate e recenti su %s " -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Nessun destinatario specificato." +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Non puoi inviare un messaggio a questo utente." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/publictagcloud.php:75 +#, php-format 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." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Nessun tale utente" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nuovo messaggio" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Messaggio senza un profilo corrispondente" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Insieme etichette" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) ti consente di collegarti a molti siti " +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Hai già effettuato l'accesso!" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Se vuoi aggiungere un OpenID al tuo account, " +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Nessun codice di ripristino." -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Rimuovere il tuo unico OpenID ti impedirà di eseguire l'accesso! " +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Non è un codice di ripristino." -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Puoi rimuovere un OpenID dal tuo account " +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Codice di recupero per utente sconosciuto." -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Casella posta inviata di %s - pagina %d" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Errore con il codice di conferma." -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Casella posta inviata di %s" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Questo codice di conferma è scaduto. Ricomincia da capo." -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Questa è la casella della tua posta inviata, contiene i messaggi privati che " -"hai inviato." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Ricerca persone su %%site.name%% per nome, ubicazione o interessi. " +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Qui puoi aggiornare il tuo profilo personale " +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Utente senza profilo corrispondente" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Questo codice di conferma è troppo vecchio. " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Se hai dimenticato o perso la tua" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" +"Il tuo soprannome su questo server o il tuo indirizzo email registrato." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Sei ora identificato. Inserisci un " +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Recupera" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Il tuo soprannome su questo server, " +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Reimposta password" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Istruzioni per il recupero della password " +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Recupero password" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Nuova password salvata con successo. " +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Richiesta password di ripristino" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "La password deve essere di 6 o più caratteri." +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Azione sconosciuta" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Congratulazioni, %s! Benvenuto/a su %%%%site.name%%%%. Ora potresti voler..." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 o più caratteri, e non dimenticarla!" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Dovresti ricevere, entro breve, un messaggio email con " +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Stessa password di sopra" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Per abbonarti, puoi [eseguire l'accesso](%%action.login%%)," +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Reimposta" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Feed dei preferiti di %s" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Inserisci un soprannome o un indirizzo email." -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Impossibile recuperare i messaggi preferiti." +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Nessun utente con quell'email o nome utente." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Nessun tale messaggio." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Nessun indirizzo email registrato per quell'utente." -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Solo mittente e destinatario possono leggere questo messaggio." +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Errore nel salvare la conferma dell'indirizzo." -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Messaggio a %1$s su %2$s" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Le istruzioni per recuperare la tua password sono state inviate " +"all'indirizzo email registrato nel tuo account." -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Messaggio da %1$s su %2$s" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Ripristino della password inaspettato." -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Invia un messaggio" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "La password dev'essere lunga almeno 6 caratteri." -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Operatore mobile del tuo telefono. " +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "La password e la conferma non corrispondono." -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Messaggi diretti a %s" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Nuova password salvata con successo. Hai effettuato l'accesso." -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Tutti i messaggi diretti inviati a %s" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Spiacenti, solo le persone invitate possono registrarsi." -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Messaggi diretti inviati" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Errore con il codice di conferma." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Tutti i messaggi diretti inviati da %s" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Registrazione riuscita" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Nessun testo nel messaggio!" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registra" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Utente destinatario non trovato." +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Registrazione non consentita." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "Non puoi inviare messaggi diretti a utenti che non sono amici tuoi." +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Non puoi registrarti se non accetti la licenza." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Preferiti da %s" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Non è un indirizzo email valido." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s aggiornamenti preferiti da %s / %s" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Indirizzo email già esistente." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Nome utente o password non valido." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format +#: actions/register.php:342 msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -"%1$s ha appena aggiunto il tuo messaggio da %2$s tra i suoi preferiti.\n" -"\n" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi " -"su Twitter, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Impostazioni Twitter" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Account Twitter" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Account Twitter attualmente verificato." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Nome utente di Twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Niente spazi, grazie." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Password di Twitter" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Invia automaticamente i miei messaggi a Twitter" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Invia le risposte \"@\" locali a Twitter" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Abbonami ai miei amici di Twitter" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -"Il nome utente deve contenere solo numeri, lettere maiuscole e minuscole e " -"trattini bassi (_) (max 15 caratteri)." +"1-64 lettere minuscole o numeri, niente punteggiatura o spazi. Richiesto." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Impossibile verificare le tue credenziali di Twitter!" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 o più caratteri. Richiesta." -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Impossibile ottenere informazioni sull'account \"%s\" da Twitter." +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Stessa password di sopra. Richiesta." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Impossibile salvare le tue impostazioni di Twitter!" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Email" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Impostazioni di Twitter salvate." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Quello non è il tuo account Twitter." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Impossibile rimuovere l'utente Twitter." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Account Twitter rimosso." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Impossibile salvare le preferenze di Twitter." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Preferenze di Twitter salvate." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Controlla questi dettagli per assicurarti " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "L'abbonamento è stato autorizzato, ma non " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "L'abbonamento è stato rifiutato, ma non " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Risultati comando" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Usata solo per aggiornamenti, annunci e recupero password" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Comando completato" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Comando non riuscito" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Questo comando non è ancora implementato" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Abbonamenti: %1$s\n" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "L'utente non ha un ultimo messaggio" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Messaggio indicato come preferito." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "I miei testi e file sono disponibili sotto " -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Nome completo: %s" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" a eccezione di questi dati personali: password, indirizzo email, indirizzo " +"messaggistica istantanea, numero di telefono." -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/register.php:537 #, php-format -msgid "Location: %s" -msgstr "Ubicazione: %s" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Congratulazioni %s! Benvenuto/a in %%%%site.name%%%%. Da qui ora puoi...\n" +"\n" +"* Visitare il [tuo profilo](%s) e inviare il tuo primo messaggio.\n" +"*Aggiungere un [indirizzo Jabber/GTalk](%%%%action.imsettings%%%%) per usare " +"quel servizio per inviare messaggi.\n" +"*[Ricercare persone](%%%%action.peoplesearch%%%%) che potresti conoscere o " +"che condividono i tuoi stessi interessi.\n" +"* Aggiornare le [tue impostazioni](%%%%action.profilesettings%%%%) per " +"fornire agli altri più informazioni su di te.\n" +"* Leggere la [documentazione in rete](%%%%doc.help%%%%) per le " +"caratteristiche che magari non hai ancora visto. \n" +"\n" +"Grazie per esserti iscritto/a e speriamo tu possa divertiti usando questo " +"servizio." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Pagina web: %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come " +"confermare il tuo indirizzo email.)" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 +#: actions/remotesubscribe.php:98 #, php-format -msgid "About: %s" -msgstr "Informazioni: %s" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Per abbonarti puoi [eseguire l'accesso](%%action.login%%) oppure [registrare]" +"(%%action.register%%) un nuovo account. Se ne possiedi già uno su un [sito " +"di micro-blog compatibile](%%doc.openmublog%%), inserisci l'indirizzo del " +"tuo profilo qui di seguito." -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Abbonamento remoto" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Messaggio diretto a %s inviato" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Abbonati a questo utente" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Errore nell'inviare il messaggio diretto." +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Soprannome dell'utente" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Specifica il nome dell'utente a cui abbonarti" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Soprannome dell'utente che vuoi seguire" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Abbonato a %s" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL del profilo" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL del tuo profilo su un altro servizio di micro-blog compatibile" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Abbonamento a %s annullato" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Abbonati" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Comando non ancora implementato." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "URL del profilo non valido (formato errato)" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Notifiche disattivate." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Non è un URL di profilo valido (nessun documento YADIS)." -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Impossibile disattivare le notifiche." +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Quello è un profilo locale! Accedi per abbonarti." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Notifiche attivate." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Impossibile ottenere un token di richiesta." -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Impossibile attivare le notifiche." +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Risposte a %s" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Comandi:\n" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Risposte a %s, pagina %d" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Impossibile inserire messaggio." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed dei messaggi per %s" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Impossibile aggiornare il messaggio con il nuovo URI." +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed dei messaggi per %s" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Utente senza profilo corrispondente nel sistema." +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed dei messaggi per %s" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/replies.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"Hai un nuovo indirizzo di ricezione su %1$s.\n" -"\n" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/replies.php:203 #, php-format -msgid "New private message from %s" -msgstr "Nuovo messaggio privato da %s" +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/replies.php:205 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"%1$s (%2$s) ti ha inviato un messaggio privato:\n" -"\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Solo l'utente può leggere la propria casella di posta." +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Messaggio a %1$s su %2$s" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Questo modulo dovrebbe inviarsi automaticamente. " +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Messaggi preferiti di %s, pagina %d" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Preferiti" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Impossibile recuperare i messaggi preferiti." -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showfavorites.php:170 #, php-format -msgid "%s's favorite notices" -msgstr "Messaggi preferiti di %s" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utente" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "In arrivo" +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed per gli amici di %s" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "I tuoi messaggi in arrivo" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed per gli amici di %s" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Inviati" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed per gli amici di %s" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "I tuoi messaggi inviati" +#: actions/showfavorites.php:205 +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 "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Opzioni di integrazione Twitter" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "A" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Impossibile analizzare il messaggio." +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "Gruppi di %s" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showgroup.php:84 #, php-format -msgid "%s and friends, page %d" -msgstr "%s e amici, pagina %d" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Qui puoi caricare la tua immagine personale." - -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Impostazioni immagine" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Originale" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Anteprima" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Ritaglia" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "C'è stato un problema con il tuo token di sessione. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Scegli un'area quadrata per la tua immagine personale" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Perso il nostro file di dati." - -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Perso il nostro file." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Tipo di file sconosciuto" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Nessun profilo specificato." +msgid "%s group, page %d" +msgstr "Gruppi di %s, pagina %d" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Nessun profilo con quel ID." +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Profilo del gruppo" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Blocca utente" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Vuoi veramente bloccare questo utente? " +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Nota" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Hai già bloccato questo utente." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Salvataggio delle informazioni per il blocco non riuscito." +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Azioni dei gruppi" -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "L'indirizzo \"%s\" è stato " +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed dei messaggi per il gruppo %s" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Stai per eliminare definitivamente un messaggio. " +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed dei messaggi per il gruppo %s" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Aggiungi ai preferiti" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed dei messaggi per il gruppo %s" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:345 #, php-format -msgid "Edit %s group" -msgstr "Modifica il gruppo %s" +msgid "FOAF for %s group" +msgstr "Casella posta inviata di %s" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "La casella della posta in arrivo deve essere abilitata per funzionare" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Membri" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Devi eseguire l'accesso per creare un gruppo." +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(nessuno)" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Nessun soprannome" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Tutti i membri" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Nessun tale gruppo" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistiche" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Devi essere amministratore per modificare il gruppo" +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crea" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Usa questo modulo per modificare il gruppo." +#: actions/showgroup.php:448 +#, 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 "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Il soprannome deve essere composto solo da lettere minuscole " +#: actions/showgroup.php:454 +#, fuzzy, 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** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" +"it.wikipedia.org/wiki/Microblogging) " -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "La descrizione è troppo lunga (max 140 caratteri)." +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Amministra" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Impossibile aggiornare il gruppo." +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Nessun tale messaggio." -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Opzioni salvate." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Solo mittente e destinatario possono leggere questo messaggio." -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showmessage.php:108 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Attesa la conferma per questo indirizzo. " - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Crea un nuovo indirizzo email per inviare messaggi; " - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Inviami un'email quando qualcuno " +msgid "Message to %1$s on %2$s" +msgstr "Messaggio a %1$s su %2$s" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Consenti ai miei amici di richiamarmi e inviami un'email" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Messaggio da %1$s su %2$s" -#: actions/emailsettings.php:321 +#: actions/shownotice.php:90 #, fuzzy -msgid "That email address already belongs " -msgstr "Quell'indirizzo email appartiene già " - -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Errore del server: impossibile recuperare l'utente." +msgid "Notice deleted." +msgstr "Messaggio inviato" -#: actions/facebookhome.php:196 +#: actions/showstream.php:73 #, fuzzy, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Se vuoi che l'applicazione %s aggiorni automaticamente " +msgid " tagged %s" +msgstr "Messaggi etichettati con %s" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showstream.php:79 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Consenti a %s di aggiornare il mio stato su Facebook" +msgid "%s, page %d" +msgstr "%s, pagina %d" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Salta" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed dei messaggi per il gruppo %s" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Nessun contenuto!" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed dei messaggi per %s" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Paginazione" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed dei messaggi per %s" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Successivi" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed dei messaggi per %s" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Precedenti" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Casella posta inviata di %s" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/showstream.php:191 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Grazie per aver invitato i tuoi amici a usare %s" +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Gli inviti sono stati inviati ai seguenti utenti:" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/showstream.php:198 #, php-format -msgid "You have been invited to %s" -msgstr "Hai un invito per %s" +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 +#: actions/showstream.php:234 #, php-format -msgid "Invite your friends to use %s" -msgstr "Invita i tuoi amici a usare %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Amici che già usano %s:" +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" +"(http://it.wikipedia.org/wiki/Microblogging) " + +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Impostazioni SMS" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/smssettings.php:69 #, php-format -msgid "Send invitations" -msgstr "Invia" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Puoi ricevere messaggi SMS attraverso l'email da %%site.name%%." -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Impossibile rimuovere l'utente Facebook." +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Questa pagina non è disponibile in un " -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" -"Si è verificato un problema nel salvare le preferenze di sincronizzazione." +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Numero di telefono attualmente confermato per gli SMS." -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Preferenze di sincronizzazione salvate." +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Attesa la conferma per questo numero di telefono." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Aggiorna automaticamente il mio stato su Facebook con i miei messaggi" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Codice di conferma" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Invia le risposte \"@\" a Facebook" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Inserisci il codice che hai ricevuto sul tuo telefono." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Prefisso" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Numero di telefono per SMS" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Una stringa con cui iniziare i messaggi." +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso" -#: actions/facebooksettings.php:124 -#, fuzzy, php-format -msgid "If you would like %s to automatically update " -msgstr "Se vuoi che %s aggiorni automaticamente " +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Inviami avvisi via SMS: comprendo che potrei incorrere in esorbitanti " +"bollette da parte del mio operatore" -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Preferenze di sincronizzazione" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Nessun numero di telefono." -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Rimuovi preferito" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Nessun operatore selezionato." -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Messaggi famosi" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Quello è già il tuo numero di telefono." -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Messaggi famosi, pagina %d" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Quel numero di telefono appartiene già a un altro utente." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Ecco i messaggi più famosi all'interno del sito." +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"Un codice di conferma è stato inviato al numero di telefono che hai " +"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " +"per il codice e le istruzioni su come usarlo." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Utenti in evidenza" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Quello è il numero di conferma errato." -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Utenti in evidenza, pagina %d" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Quello non è il tuo numero di telefono." -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Una selezione dei migliori utenti su %s" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Operatore telefonico" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Quell'utente ti ha bloccato dall'abbonarti." +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Seleziona un operatore" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Nessun ID" +#: actions/smssettings.php:476 +#, php-format +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 "" +"Operatore di telefonia mobile. Se conosci un operatore che accetta gli SMS " +"via email, ma non è elencato qui, scrivici a %s." -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Logo del gruppo" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Nessun codice inserito" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Non sei abbonato a quel profilo." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Logo aggiornato." +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Impossibile salvare l'abbonamento." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Errore nell'aggiornare il logo." +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Non un utente locale." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "Membri del gruppo %s" +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Abbonato" -#: actions/groupmembers.php:96 +#: actions/subscribers.php:50 #, php-format -msgid "%s group members, page %d" -msgstr "Membri del gruppo %s, pagina %d" +msgid "%s subscribers" +msgstr "Abbonati a %s" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Un elenco degli utenti in questo gruppo." +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "Abbonati a %s, pagina %d" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Gruppi" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Queste sono le persone che ti seguono." -#: actions/groups.php:64 +#: actions/subscribers.php:67 #, php-format -msgid "Groups, page %d" -msgstr "Gruppi, pagina %d" +msgid "These are the people who listen to %s's notices." +msgstr "Queste sono le persone che seguono %s." -#: actions/groups.php:90 -#, fuzzy, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "I gruppi di %%%%site.name%%%% ti consentono di cercare e parlare con " +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" -#: actions/groupsearch.php:57 +#: actions/subscribers.php:114 #, php-format msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Ricerca gruppi su %%site.name%% per nome, ubicazione o descrizione. " - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Ricerca gruppi" - -#: actions/imsettings.php:70 -#, fuzzy -msgid "You can send and receive notices through " -msgstr "Puoi inviare e ricevere messaggi attraverso " - -#: actions/imsettings.php:120 -#, fuzzy, php-format -msgid "Jabber or GTalk address, " -msgstr "Indirizzo Jabber o GTalk, " - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Inviami le risposte via Jabber/GTalk " +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" -#: actions/imsettings.php:321 +#: actions/subscriptions.php:52 #, php-format -msgid "A confirmation code was sent " -msgstr "Un codice di conferma è stato inviato " +msgid "%s subscriptions" +msgstr "Abbonamenti di %s" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "Devi eseguire l'accesso per iscriverti a un gruppo." +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "Abbonamenti di %s, pagina %d" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Sei già un membro di quel gruppo" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Queste sono le persone che stai seguendo." -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/subscriptions.php:69 #, php-format -msgid "Could not join user %s to group %s" -msgstr "Impossibile iscrivere l'utente %s al gruppo %s" +msgid "These are the people whose notices %s listens to." +msgstr "Queste sono le persone seguite da %s." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/subscriptions.php:121 #, php-format -msgid "%s joined group %s" -msgstr "%s si è iscritto al gruppo %s" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -"Le caselle di posta in arrivo devono essere abilitate per i gruppi per poter " -"funzionare." -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "Devi eseguire l'accesso per lasciare un gruppo." +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s sta ora seguendo " -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Nessuna tale gruppo." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "Non sei un membro di quel gruppo." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "Non puoi lasciare un gruppo fintantoché ne sei amministratore." +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Non connesso" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Impossibile trovare il record della membership." +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Nessun argomento ID." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 +#: actions/tagother.php:65 #, php-format -msgid "Could not remove user %s to group %s" -msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" +msgid "Tag %s" +msgstr "Etichetta %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "%s ha lasciato il gruppo %s" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Profilo utente" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Accedi al sito" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Fotografia" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Nessuno stato corrente" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Etichette utente" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Nuovo gruppo" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole " +"o spazi" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Usa questo modulo per creare un nuovo gruppo." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Puoi etichettare sole le persone a cui sei abbonato o che sono abbonate a te." -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Impossibile salvare le etichette." -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Impossibile impostare la membership al gruppo." +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " +"abbonamenti." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "È troppo lungo. " +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Messaggi etichettati con %s, pagina %d" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Non inviare un messaggio a te stesso; " +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed dei messaggi per %s" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Messaggio inviato" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed dei messaggi per %s" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Errore di Ajax" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed dei messaggi per %s" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Questo utente non consente i richiami oppure non ha confermato o impostato " -"ancora il suo indirizzo email." +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Nessuna tale etichetta." -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Richiamo inviato" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Richiamo inviato!" - -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "Accesso OpenID" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Metodo delle API in lavorazione." -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "Rimuovere l'unico OpenID " +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Nessun ID di profilo nella richiesta." -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Altre impostazioni" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Nessun profilo con quel ID." -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Gestisci altre opzioni." +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Annullato abbonamento" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Autoriduzione degli URL" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Servizio" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autorizza abbonamento" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Servizio di autoriduzione da usare." +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " +"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)" +#: actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "licenza." -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Modifica la tua password." +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Accetta" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Cambio password" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Abbonati a questo utente" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "Non è un'etichetta valida di persona: %s" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Rifiuta" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Utenti auto-etichettati con %s - pagina %d" +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Abbonamenti di %s" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Questi sono gli utenti che si sono etichettati con \"%s\" " +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Nessuna richiesta di autorizzazione!" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Informazioni sul profilo" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Abbonamento autorizzato" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -"Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" +"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " +"richiamo. Controlla le istruzioni del sito per i dettagli su come " +"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" -#: actions/profilesettings.php:144 +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Abbonamento rifiutato" + +#: actions/userauthorization.php:261 #, fuzzy -msgid "Automatically subscribe to whoever " -msgstr "Abbonami automaticamente a chi " +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " +"richiamo. Controlla con le istruzioni del sito per i dettagli su come " +"rifiutare completamente l'abbonamento." -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/userauthorization.php:296 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Etichetta non valida: \"%s\"" - -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Impossibile salvare le etichette." +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/userauthorization.php:301 #, php-format -msgid "Public timeline, page %d" -msgstr "Attività pubblica, pagina %d" +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Impossibile recuperare l'attività pubblica." +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/public.php:220 +#: actions/userauthorization.php:322 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" -"wiki/Microblogging) " -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Insieme delle etichette" +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/publictagcloud.php:63 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "These are most popular recent tags on %s " -msgstr "Queste sono le etichette più usate e recenti su %s " - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Insieme etichette" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Spiacenti, solo le persone invitate possono registrarsi." - -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Non puoi registrarti se non " +msgid "Can’t read avatar URL ‘%s’." +msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" -#: actions/register.php:286 -#, fuzzy -msgid "With this form you can create " -msgstr "Tramite questo modulo puoi creare " +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo di immagine errata per \"%s\"" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 lettere minuscole o numeri, " +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Nessun ID." -#: actions/register.php:382 actions/register.php:386 +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #, fuzzy -msgid "Used only for updates, announcements, " -msgstr "Usata solo per aggiornamenti, annunci " +msgid "Profile design" +msgstr "Impostazioni del profilo" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "URL della tua pagina web, blog " +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "Descrivi te e i tuoi " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "Dove ti trovi, tipo \"città, " +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "Gruppi di %s, pagina %d" -#: actions/register.php:432 +#: actions/usergroups.php:130 #, fuzzy -msgid " except this private data: password, " -msgstr " a eccezione di questi dati personali: password, " +msgid "Search for more groups" +msgstr "Ricerca persone o per testo" -#: actions/register.php:471 +#: actions/usergroups.php:153 #, fuzzy, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Congratulazioni %s! Benvenuto/a su %%%%site.name%%%%. " - -#: actions/register.php:495 -#, fuzzy -msgid "(You should receive a message by email " -msgstr "(Dovresti ricevere un messaggio email " - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Quello è un profilo locale! Accedi per abbonarti." +msgid "%s is not a member of any group." +msgstr "Non sei un membro di quel gruppo." -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/usergroups.php:158 #, php-format -msgid "Replies to %s, page %d" -msgstr "Risposte a %s, pagina %d" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/showfavorites.php:79 +#: classes/File.php:137 #, php-format -msgid "%s favorite notices, page %d" -msgstr "Messaggi preferiti di %s, pagina %d" +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: classes/File.php:147 #, php-format -msgid "%s group" -msgstr "Gruppi di %s" +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: classes/File.php:154 #, php-format -msgid "%s group, page %d" -msgstr "Gruppi di %s, pagina %d" - -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Profilo del gruppo" - -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Nota" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Impossibile inserire messaggio." -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Azioni dei gruppi" +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Impossibile aggiornare il messaggio con il nuovo URI." -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: classes/Notice.php:164 #, php-format -msgid "Notice feed for %s group" -msgstr "Feed dei messaggi per il gruppo %s" - -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Membri" +msgid "DB error inserting hashtag: %s" +msgstr "Errore del DB nell'inserire un hashtag: %s" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(nessuno)" +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problema nel salvare il messaggio." -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Tutti i membri" +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Problema nel salvare il messaggio. Utente sconosciuto." -#: actions/showgroup.php:378 -#, php-format +#: classes/Notice.php:188 msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" -"it.wikipedia.org/wiki/Microblogging) " +"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " +"qualche minuto." -#: actions/showmessage.php:98 +#: classes/Notice.php:194 #, fuzzy -msgid "Only the sender and recipient " -msgstr "Solo mittente e destinatario " +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " +"qualche minuto." -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, pagina %d" - -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Profilo" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Profilo utente" - -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Fotografia" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Azioni utente" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Invia un messaggio diretto a questo utente" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Messaggio" - -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Tutti gli abbonati" - -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Tutti i gruppi" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" -"(http://it.wikipedia.org/wiki/Microblogging) " - -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "Numero di telefono, senza punteggiatura o spazi, " - -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Inviami le notifiche via SMS; " - -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Un codice di conferma è stato inviato al numero di telefono aggiunto. " - -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Operatore telefonico" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Non sei abbonato a quel profilo." - -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Impossibile salvare l'abbonamento." - -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Non un utente locale." - -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Abbonato" - -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "Abbonati a %s" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "Abbonati a %s, pagina %d" - -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "Queste sono le persone che seguono " - -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "Queste sono le persone che " +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Ti è proibito inviare messaggi su questo sito." -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "Abbonamenti di %s" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Problema nel salvare il messaggio." -#: actions/subscriptions.php:54 +#: classes/Notice.php:1120 #, php-format -msgid "%s subscriptions, page %d" -msgstr "Abbonamenti di %s, pagina %d" - -#: actions/subscriptions.php:65 -#, fuzzy -msgid "These are the people whose notices " -msgstr "Queste sono le persone i cui messaggi " +msgid "DB error inserting reply: %s" +msgstr "Errore del DB nell'inserire la risposta: %s" -#: actions/subscriptions.php:69 +#: classes/User.php:333 #, fuzzy, php-format -msgid "These are the people whose " -msgstr "Queste sono le persone i cui " - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" - -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Messaggi etichettati con %s, pagina %d" - -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Messaggi etichettati con \"%s\", i più recenti" - -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Non connesso" - -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Nessun argomento ID." - -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Etichetta %s" +msgid "Welcome to %1$s, @%2$s!" +msgstr "Messaggio a %1$s su %2$s" -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Etichette utente" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profilo" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole " -"o spazi" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Modifica le impostazioni del tuo profilo" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "C'è stato un problema con il tuo token di sessione." +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Carica un'immagine" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Puoi etichettare sole le persone a cui sei abbonato o che sono abbonate a te." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Modifica la tua password" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Impossibile salvare le etichette." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Modifica la gestione dell'email" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -"Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " -"abbonamenti." - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Nessuna tale etichetta." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Micro-blog etichettati con %s" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Blocco dell'utente non riuscito." -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Sblocco dell'utente non riuscito." - -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non trovato" - -#: actions/twittersettings.php:71 -#, fuzzy -msgid "Add your Twitter account to automatically send " -msgstr "Aggiungi il tuo account Twitter per inviare automaticamente " - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Nome utente di Twitter" - -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Password di Twitter" - -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Amici su Twitter" - -#: actions/twittersettings.php:327 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Username must have only numbers, " -msgstr "Il nome utente deve avere solo numeri, " - -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "Impossibile recuperare informazioni sull'account " - -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Errore nel rimuovere il blocco." - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Nessun ID di profilo nella richiesta." - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Nessun profilo con quel ID." - -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Annullato abbonamento" - -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "Gruppi di %s" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "Gruppi di %s, pagina %d" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Problema nel salvare il messaggio. Utente sconosciuto." - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " -"qualche minuto." - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Ti è proibito inviare messaggi su questo sito." - -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Carica un'immagine" +msgid "Design your profile" +msgstr "Profilo utente" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 #: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Altro" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 #: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Altre opzioni" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +#: lib/action.php:159 msgid "Untitled page" msgstr "Pagina senza nome" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +#: lib/action.php:430 +msgid "Home" +msgstr "Home" + +#: lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Ricerca persone o per testo" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: lib/action.php:432 msgid "Account" msgstr "Account" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Connettiti con MI, SMS e Twitter" +#: lib/action.php:435 +msgid "Connect" +msgstr "Connetti" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Impossibile redirigere al server: %s" + +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invita" + +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Invita amici e colleghi a seguirti su %s" + +#: lib/action.php:445 +msgid "Logout" +msgstr "Esci" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +#: lib/action.php:445 msgid "Logout from the site" msgstr "Sconnettiti dal sito" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Accedi al sito" - -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +#: lib/action.php:450 msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Accedi con OpenID" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Accedi al sito" + +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Aiuto" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +#: lib/action.php:456 msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +#: lib/action.php:459 +msgid "Search" +msgstr "Ricerca" + +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Ricerca persone o per testo" + +#: lib/action.php:480 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +#: lib/action.php:546 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +#: lib/action.php:612 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#: lib/action.php:714 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Licenza del software statusnet" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Tutto " - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "licenza." - -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Blocca questo utente" - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Blocca" +#: lib/action.php:721 +msgid "About" +msgstr "Informazioni" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Togli questo messaggio dai preferiti" +#: lib/action.php:723 +msgid "FAQ" +msgstr "FAQ" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " +#: lib/action.php:727 +msgid "TOS" msgstr "" -"Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr " un nuovo account." +#: lib/action.php:730 +msgid "Privacy" +msgstr "Privacy" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Pubblicato" +#: lib/action.php:732 +msgid "Source" +msgstr "Sorgenti" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Rendi questo messaggio un favorito" +#: lib/action.php:734 +msgid "Contact" +msgstr "Contatti" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Esporta dati" +#: lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Richiama" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Filtra etichette" +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Licenza del software statusnet" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Tutto" +#: lib/action.php:767 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%]" +"(%%site.broughtbyurl%%). " -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Etichetta" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** è un servizio di micro-blog. " -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Scegli un'etichetta per ridurre l'elenco" +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Gestito dal software di micro-blog [StatusNet](http://status.net/), versione " +"%s, disponibile sotto licenza [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Vai" +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licenza del software statusnet" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "URL della pagina web o del blog per il gruppo o l'argomento" +#: lib/action.php:794 +msgid "All " +msgstr "Tutto " -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Descrizione" +#: lib/action.php:799 +msgid "license." +msgstr "licenza." -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Paginazione" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Dove è situato il gruppo, tipo \"città, regione, stato\"" +#: lib/action.php:1062 +msgid "After" +msgstr "Successivi" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Gruppo" +#: lib/action.php:1070 +msgid "Before" +msgstr "Precedenti" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Amministra" +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "C'è stato un problema con il tuo token di sessione." -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "Modifica le proprietà del gruppo %s" +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "Logo" +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "Aggiungi o modifica il logo di %s" +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profilo" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "I gruppi più numerosi" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "I gruppi con più messaggi" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "Etichette nei messaggi del gruppo %s" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Risultati comando" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "Questa pagina non è disponibile in un " +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Comando completato" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Iscriviti" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Comando non riuscito" -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "Lascia" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Questo comando non è ancora implementato" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "Accedi con nome utente e password" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "Iscriviti per un nuovo account" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Accedi o registrati con OpenID" +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Richiamo inviato" -#: lib/mail.php:175 +#: lib/command.php:126 #, php-format msgid "" -"Hey, %s.\n" -"\n" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -"Ehi, %s\n" -"\n" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s sta ora seguendo " +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "Ubicazione: %s\n" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "L'utente non ha un ultimo messaggio" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "Pagina web: %s\n" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Messaggio indicato come preferito." -#: lib/mail.php:258 lib/mail.php:257 +#: lib/command.php:315 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Biografia: %s\n" -"\n" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/command.php:318 #, php-format -msgid "You've been nudged by %s" -msgstr "%s ti ha richiamato" - -#: lib/mail.php:465 -#, fuzzy, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) si chiede cosa tu " +msgid "Fullname: %s" +msgstr "Nome completo: %s" -#: lib/mail.php:555 +#: lib/command.php:321 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s ha appena aggiunto il tuo messaggio da %2$s" +msgid "Location: %s" +msgstr "Ubicazione: %s" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Da" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Pagina web: %s" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Invia un messaggio diretto" +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "Informazioni: %s" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Invia un messaggio" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Caratteri disponibili" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Errore nell'inviare il messaggio diretto." -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "in risposta a" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Rispondi" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problema nel salvare il messaggio." -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Elimina questo messaggio" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Specifica il nome dell'utente a cui abbonarti" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Elimina" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Abbonato a %s" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "Richiama questo utente" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "Richiama" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "Invia un richiamo a questo utente" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento" -#: lib/personaltagcloudsection.php:56 +#: lib/command.php:530 #, php-format -msgid "Tags in %s's notices" -msgstr "Etichette nei messaggi di %s" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(nessuna)" - -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Pubblico" - -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Gruppi dell'utente" +msgid "Unsubscribed from %s" +msgstr "Abbonamento a %s annullato" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Etichette recenti" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Comando non ancora implementato." -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "In evidenza" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Notifiche disattivate." -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Famosi" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Impossibile disattivare le notifiche." -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Messaggio" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Notifiche attivate." -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Ricerca gruppi in questo sito" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Impossibile attivare le notifiche." -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Sezione senza nome" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Impossibile creare il modulo OpenID: %s" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: lib/command.php:602 #, php-format -msgid "People %s subscribes to" -msgstr "Persone a cui %s è abbonato" +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "Persone abbonate a %s" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "Il gruppo %s è membro di" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Nessun codice di conferma." -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Invita amici e colleghi a seguirti su %s" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "L'utente ti ha bloccato." +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Abbonati a questo utente" +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Accedi al sito" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Nessuno" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "MI" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Chi scrive più messaggi" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Aggiornamenti via messaggistica istantanea (MI)" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Sblocca questo utente" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Aggiornamenti via SMS" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Sblocca" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Annulla l'abbonamento da questo utente" +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed per gli amici di %s" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Carica" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed per gli amici di %s" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed per gli amici di %s" +#: lib/designsettings.php:139 +msgid "On" +msgstr "" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s e amici" +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Qui puoi caricare la tua immagine personale." +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/designsettings.php:170 #, fuzzy -msgid "Avatar deleted." -msgstr "Immagine aggiornata." +msgid "Change colours" +msgstr "Modifica la tua password" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#: lib/designsettings.php:191 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " -"possibile recuperarlo." +msgid "Content" +msgstr "Connetti" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#: lib/designsettings.php:204 #, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." +msgid "Sidebar" +msgstr "Ricerca" + +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Testo" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#: lib/designsettings.php:230 #, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" +msgid "Links" +msgstr "Elenco" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Scegli un'area quadrata per la tua immagine personale" +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Micro-blog di %s" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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." +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " -"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Togli questo messaggio dai preferiti" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Rendi questo messaggio un favorito" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Preferito" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Esporta dati" + +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Errore nell'inviare il messaggio diretto." +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Ricerca \"%s\" nel flusso" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " -"propria password prima di modificare le impostazioni." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Feed del flusso pubblico" +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Filtra etichette" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Tutto" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#: lib/galleryaction.php:139 #, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Feed del flusso pubblico" +msgid "Select tag to filter" +msgstr "Seleziona un operatore" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Etichetta" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Scegli un'etichetta per ridurre l'elenco" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Vai" + +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL della pagina web o del blog per il gruppo o l'argomento" + +#: lib/groupeditform.php:168 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Feed del flusso pubblico" +msgid "Describe the group or topic" +msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" + +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Descrizione" + +#: lib/groupeditform.php:179 msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Dove è situato il gruppo, tipo \"città, regione, stato\"" -#: actions/register.php:286 actions/register.php:329 +#: lib/groupeditform.php:187 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Gruppo" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: lib/groupnav.php:100 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" a eccezione di questi dati personali: password, indirizzo email, indirizzo " -"messaggistica istantanea, numero di telefono." +msgid "Blocked" +msgstr "Blocca" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Crea" +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Blocca utente" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: lib/groupnav.php:107 #, 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 "" +msgid "Edit %s group properties" +msgstr "Modifica le proprietà del gruppo %s" -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Profilo del gruppo" +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Logo" -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Profilo" +#: lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "Aggiungi o modifica il logo di %s" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 +#: lib/groupnav.php:119 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Feed dei messaggi per %s" +msgid "Add or edit %s design" +msgstr "Aggiungi o modifica il logo di %s" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Feed dei messaggi per %s" +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "I gruppi più numerosi" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Feed dei messaggi per %s" +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "I gruppi con più messaggi" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "Etichette nei messaggi del gruppo %s" + +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Questa pagina non è disponibile in un tipo di supporto che tu accetti" + +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Casella posta inviata di %s" +msgid "That file is too big. The maximum file size is %s." +msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Immagine" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Caricamento parziale." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Impostazioni del profilo" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Errore di sistema nel caricare il file." -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Non è un'immagine o il file è danneggiato." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Formato file immagine non supportato." + +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Perso il nostro file." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Tipo di file sconosciuto" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: lib/jabber.php:192 #, php-format +msgid "notice id: %s" +msgstr "Nuovo messaggio" + +#: lib/joinform.php:114 +msgid "Join" +msgstr "Iscriviti" + +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Lascia" + +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Accedi con nome utente e password" + +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "Iscriviti per un nuovo account" + +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Solo l'utente può leggere la propria casella di posta." + +#: lib/mailbox.php:139 msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +"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 "" -#: actions/smssettings.php:335 actions/smssettings.php:347 +#: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy -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 "" -"Un codice di conferma è stato inviato al numero di telefono che hai " -"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " -"per il codice e le istruzioni su come usarlo." +msgid "from" +msgstr " via " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Conferma indirizzo email" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: lib/mail.php:174 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"Hey, %s.\n" "\n" -"In case you forgot, you can see the text of your notice here:\n" +"Someone just entered this email address on %s.\n" "\n" -"%3$s\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" "\n" -"You can see the list of %1$s's favorites here:\n" +"\t%s\n" "\n" -"%4$s\n" +"If not, just ignore this message.\n" "\n" -"Faithfully yours,\n" -"%5$s\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Nessun tale utente" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi " -"su Twitter, " +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." -#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#: lib/mail.php:240 #, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Impossibile ottenere informazioni sull'account \"%s\" da Twitter." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " -"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Ricerca persone o per testo" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" -"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " -"qualche minuto." - -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Connettiti con MI, SMS e Twitter" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Richiama" +"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordiali saluti,\n" +"%4$s.\n" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: lib/mail.php:253 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +msgid "Location: %s\n" +msgstr "Ubicazione: %s\n" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "Pagina web: %s\n" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: lib/mail.php:257 +#, 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 "" -"Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" +"Bio: %s\n" +"\n" msgstr "" +"Biografia: %s\n" +"\n" -#: lib/imagefile.php:75 +#: lib/mail.php:285 #, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" +msgid "New email address for posting to %s" +msgstr "Nuovo indirizzo email per inviare messaggi a %s" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/mail.php:288 #, php-format msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" +"You have a new posting address on %1$s.\n" "\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" +"Send email to %2$s to post new messages.\n" "\n" -"\t%3$s\n" +"More email instructions at %3$s.\n" "\n" -"%4$s%5$s%6$s\n" "Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +"%4$s" msgstr "" -"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" +"Hai un nuovo indirizzo di invio su %1$s.\n" "\n" -"\t%3$s\n" +"Scrivi le email a %2$s per inviare nuovi messaggi.\n" +"\n" +"Puoi trovare maggiori informazioni presso %3$s.\n" "\n" "Cordiali saluti,\n" -"%4$s.\n" +"%4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "stato di %s" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Conferma SMS" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s ti ha richiamato" #: lib/mail.php:466 #, php-format @@ -6070,12 +4208,17 @@ msgid "" "\n" "%3$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%4$s\n" msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Nuovo messaggio privato da %s" + #: lib/mail.php:513 #, php-format msgid "" @@ -6089,1624 +4232,470 @@ msgid "" "\n" "%4$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%5$s\n" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" -#: lib/mail.php:600 lib/mail.php:602 +#: lib/mail.php:556 #, php-format msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" -"It reads:\n" +"The URL of your notice is:\n" "\n" -"\t%4$s\n" +"%3$s\n" "\n" -"You can reply back here:\n" +"The text of your notice is:\n" "\n" -"\t%5$s\n" +"%4$s\n" "\n" -"The list of all @-replies for you here:\n" +"You can see the list of %1$s's favorites here:\n" "\n" -"%6$s\n" +"%5$s\n" "\n" "Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +"%6$s\n" msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Ricerca" - -#: lib/section.php:106 -msgid "More..." +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: actions/all.php:80 actions/all.php:127 +#: lib/mail.php:613 #, php-format msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format +#: lib/mediafile.php:147 msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Nessun tale documento." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Un elenco degli utenti in questo gruppo." - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Un elenco degli utenti in questo gruppo." +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Profilo utente" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s e amici, pagina %d" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Un elenco degli utenti in questo gruppo." +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Sblocco dell'utente non riuscito." +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Codice di conferma" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Impossibile eliminare questo messaggio." +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Impossibile recuperare l'attività pubblica." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/mediafile.php:270 #, php-format -msgid "Too many aliases! Maximum %d." +msgid " Try using another %s format." msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Etichetta non valida: \"%s\"" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Soprannome già in uso. Prova con un altro." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Impossibile creare preferito." - -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Invia un messaggio diretto" -#: 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 "" +#: lib/messageform.php:146 +msgid "To" +msgstr "A" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Caratteri disponibili" -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Nuovo messaggio" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Invia un messaggio" -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Nuovo messaggio" +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Cosa succede %s?" -#: actions/file.php:42 -msgid "No attachments" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/finishopenidlogin.php:211 +#: lib/noticelist.php:478 #, fuzzy -msgid "Not a valid invitation code." -msgstr "Non è un soprannome valido." +msgid "in context" +msgstr "Nessun contenuto!" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Nessun profilo specificato." +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Rispondi a questo messaggio" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Rispondi" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "L'utente ti ha bloccato." +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Richiama questo utente" -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Non sei un membro di quel gruppo." +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Richiama" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Blocca utente" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Invia un richiamo a questo utente" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Errore nell'inserire il nuovo profilo" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Errore nell'inserire l'immagine" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Devi eseguire l'accesso per creare un gruppo." +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Errore nell'inserire un profilo remoto" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#: lib/oauthstore.php:345 #, fuzzy -msgid "Group design" -msgstr "Gruppi" +msgid "Duplicate notice" +msgstr "Elimina messaggio" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Impossibile inserire un nuovo abbonamento." -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Impossibile aggiornare l'utente." +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Personale" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Impossibile salvare le tue impostazioni di Twitter!" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Risposte" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Preferenze di sincronizzazione salvate." +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Preferiti" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "Devi essere amministratore per modificare il gruppo" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Utente" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Amministra" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "In arrivo" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "I tuoi messaggi in arrivo" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Nessun risultato" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Inviati" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "I tuoi messaggi inviati" -#: actions/groupsearch.php:85 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +msgid "Tags in %s's notices" +msgstr "Etichette nei messaggi di %s" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Abbonamenti" -#: actions/groupunblock.php:95 +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Tutti gli abbonamenti" + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Abbonati" + +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Tutti gli abbonati" + +#: lib/profileaction.php:177 #, fuzzy -msgid "User is not blocked from group." -msgstr "L'utente ti ha bloccato." +msgid "User ID" +msgstr "Utente" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Membro dal" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Tutti i gruppi" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Pubblico" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Gruppi dell'utente" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Etichette recenti" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "In evidenza" + +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Famosi" -#: actions/newmessage.php:178 actions/newmessage.php:181 +#: lib/searchaction.php:120 #, fuzzy -msgid "Message sent" -msgstr "Messaggio" +msgid "Search site" +msgstr "Ricerca" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Ricerca" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Persone" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Ricerca persone in questo sito" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Messaggio" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Impossibile salvare il profilo." +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Ricerca contenuto dei messaggi" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Ricerca gruppi in questo sito" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Sezione senza nome" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "Persone a cui %s è abbonato" -#: actions/noticesearch.php:121 +#: lib/subgroupnav.php:91 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +msgid "People subscribed to %s" +msgstr "Persone abbonate a %s" -#: actions/noticesearch.php:124 +#: lib/subgroupnav.php:99 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +msgid "Groups %s is a member of" +msgstr "Il gruppo %s è membro di" -#: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -"[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " -"account. Gestisci i tuoi OpenID associati da qui." -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Impostazioni del profilo" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(nessuna)" -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "L'utente ti ha bloccato." -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Impossibile abbonarsi." -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Impossibile abbonare altri a te." -#: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" -"wiki/Microblogging) " +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Non abbonato!" -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Impossibile eliminare l'abbonamento." -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Nessuno" -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Chi scrive più messaggi" -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " -"per email all'indirizzo indicato nel tuo profilo." +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Annulla l'abbonamento da questo utente" -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Sei ora identificato/a. Inserisci una nuova password qui di seguito. " +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Disabbonati" -#: actions/recoverpassword.php:188 +#: lib/userprofile.php:116 #, fuzzy -msgid "Password recover" -msgstr "Richiesta password di ripristino" +msgid "Edit Avatar" +msgstr "Immagine" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Errore con il codice di conferma." +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Azioni utente" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#: lib/userprofile.php:248 #, fuzzy -msgid "Subscribe to a remote user" -msgstr "Abbonati a questo utente" +msgid "Edit profile settings" +msgstr "Impostazioni del profilo" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Invia un messaggio diretto a questo utente" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Messaggio" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Messaggi preferiti di %s, pagina %d" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "pochi secondi fa" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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 "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "circa un minuto fa" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#: lib/util.php:848 #, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" +msgid "about %d minutes ago" +msgstr "circa %d minuti fa" + +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "circa un'ora fa" -#: actions/showfavorites.php:176 +#: lib/util.php:852 #, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" +msgid "about %d hours ago" +msgstr "circa %d ore fa" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "circa un giorno fa" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "circa %d giorni fa" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Feed dei messaggi per il gruppo %s" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "circa un mese fa" -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Feed dei messaggi per il gruppo %s" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "circa %d mesi fa" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Feed dei messaggi per il gruppo %s" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "circa un anno fa" -#: actions/showgroup.php:446 actions/showgroup.php:454 +#: lib/webcolor.php:82 #, fuzzy, 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** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" -"it.wikipedia.org/wiki/Microblogging) " +msgid "%s is not a valid color!" +msgstr "L'URL della pagina web non è valido." -#: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy -msgid "Admins" -msgstr "Amministra" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Non un utente locale." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Messaggi etichettati con %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Feed dei messaggi per il gruppo %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" -"(http://it.wikipedia.org/wiki/Microblogging) " - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s sta ora seguendo " - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Feed dei messaggi per %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Feed dei messaggi per %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Questo messaggio è già un preferito!" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Questo messaggio non è un preferito!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Impossibile recuperare l'attività pubblica." - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Nessun destinatario specificato." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Impossibile trovare un qualsiasi stato." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Aggiornamenti in risposta a %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Aggiornamenti da %1$s su %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "licenza." - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Abbonamenti di %s" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Impostazioni del profilo" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Non sei un membro di quel gruppo." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Problema nel salvare il messaggio." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Messaggio a %1$s su %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Profilo utente" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Profilo" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Carica" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Modifica la tua password" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Connetti" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Ricerca" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Elenco" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Blocca" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Blocca utente" - -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Aggiungi o modifica il logo di %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Nessun contenuto!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Utente" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Ricerca" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "L'URL della pagina web non è valido." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Nessuna tale etichetta." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Messaggi diretti a %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Impossibile seguire l'utente: utente non trovato." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "La descrizione è troppo lunga (max 140 caratteri)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Sei già un membro di quel gruppo" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Impossibile iscrivere l'utente %s al gruppo %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Non sei un membro di quel gruppo." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Gruppi di %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Il gruppo %s è membro di" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Azioni dei gruppi" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Immagine aggiornata." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Troppo lungo. Lunghezza massima 140 caratteri." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Formato file immagine non supportato." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Fotografia" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "La descrizione è troppo lunga (max 140 caratteri)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Aggiornamenti da %1$s su %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "L'utente che intendi seguire non esiste." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Non autorizzato." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "" -"Impossibile convertire le credenziali di richiesta in credenziali di accesso." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Versione del protocollo OMB sconosciuta." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Nessun tale messaggio." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Perso il nostro file." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Aggiornamenti da %1$s su %2$s!" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Questa pagina non è disponibile in un " - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" -"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" -"%). " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Aggiornamenti da %1$s su %2$s!" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Connetti" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Descrivi te e i tuoi " - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "La biografia è troppo lunga (max 140 caratteri)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Non è un URL di profilo valido (nessun documento YADIS)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Quello è un profilo locale! Accedi per abbonarti." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Impossibile ottenere un token di richiesta." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Feed dei messaggi per %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Feed dei messaggi per %s" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Feed dei messaggi per %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Messaggio a %1$s su %2$s" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed per gli amici di %s" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed per gli amici di %s" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed per gli amici di %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Casella posta inviata di %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Messaggio inviato" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Questa pagina non è disponibile in un " - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Feed dei messaggi per %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " -"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " -"richiamo. Controlla le istruzioni del sito per i dettagli su come " -"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " -"richiamo. Controlla con le istruzioni del sito per i dettagli su come " -"rifiutare completamente l'abbonamento." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Tipo di immagine errata per \"%s\"" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Impossibile redirigere al server: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Licenza del software statusnet" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Richiamo inviato" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Rispondi a questo messaggio" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Problema nel salvare il messaggio." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Nessun codice di conferma." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Accedi al sito" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Seleziona un operatore" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Nuovo messaggio" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 +#: lib/webcolor.php:123 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " via " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Impossibile recuperare l'attività pubblica." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Elimina messaggio" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Contenuto del messaggio non valido" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Impossibile creare il modulo OpenID: %s" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Impossibile analizzare il messaggio." -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Non è un utente registrato." -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Quella non è la tua email di ricezione." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Email di ricezione non consentita." diff --git a/locale/ja/LC_MESSAGES/statusnet.mo b/locale/ja/LC_MESSAGES/statusnet.mo index e92c7452a..c0931726b 100644 Binary files a/locale/ja/LC_MESSAGES/statusnet.mo and b/locale/ja/LC_MESSAGES/statusnet.mo differ diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 39bc7dda2..409d64b0a 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -6,4542 +6,1712 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:42+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:23+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "ストリームから「%s」を検索" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "そのような通知はありません。" -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "次の個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "そのようなユーザはいません。" -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -#, fuzzy -msgid " from " -msgstr "から " +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s & ともだち" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgid "%s and friends" +msgstr "%s と友人" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s があなたを %2$s へ招待しました" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s のともだちのフィード" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s のともだちのフィード" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s のともだちのフィード" + +#: actions/all.php:127 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s があなたを %2$s へ招待しました (%3$s)。\n" -"\n" -"%2$s はあなたの知り合いやあなたが興味をもっている人物の最新の情報を得ることが" -"できる、マイクロブログサービスです。\n" -"\n" -"また、あなたの最新の情報やあなたの考えていること、生活を、あなたのことを知っ" -"ている人と共有することができます。あなたと同じ興味をもつ人々と出会う目的でも" -"優れたサービスです。\n" -"\n" -"%1$s の言葉:\n" -"\n" -"%4$s\n" -"\n" -"%2$s における %1$s のプロフィールページを以下で見ることができます:\n" -"\n" -"%5$s\n" -"\n" -"このサービスを試してみたい場合は以下のリンクをクリックしてこの招待に応じてく" -"ださい。\n" -"\n" -"%6$s\n" -"\n" -"そうでない場合はこのメッセージを無視することができます。お時間をいただきあり" -"がとうございました。\n" -"\n" -"%2$s\n" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 +#: actions/all.php:132 #, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s は %2$s であなたの通知を購読しています。" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../lib/mail.php:126 +#: actions/all.php:134 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"%1$s は %2$s であなたの通知を購読しています。\n" -"\n" -"%3$s\n" -"\n" -"%4$s\n" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%2$s における %1$ の状態" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s & ともだち" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "%s の公開ストリーム" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API メソッドが見つかりません!" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s と友人" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s public timeline" -msgstr "%s の公開タイムライン" +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s の状態" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "プロファイルがありません。" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s のタイムライン" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "ユーザのブロックに失敗しました。" + +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "ユーザのアンブロックに失敗しました。" + +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "長すぎます。通知は最大 140 字までです。" + +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apidirectmessage.php:89 #, php-format -msgid "%s updates from everyone!" +msgid "Direct messages from %s" msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -"(メールアドレスを確認する方法を読んで、すぐにメールによるメッセージを受け取る" -"ようにしてください)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/apidirectmessage.php:101 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +msgid "Direct messages to %s" msgstr "" -"**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" -"イクロブログサービスです。 " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 +#: actions/apidirectmessage.php:105 #, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** はマイクロブログサービスです。 " +msgid "All the direct messages sent to %s" +msgstr "" -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "投稿者はニックネームかフルネームで記載されます。" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." msgstr "" -"1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く。必須です。" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6文字以上" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6文字以上。忘れないでください!" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6文字以上。必須です。" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "利用者をフォローできませんでした: 利用者が見つかりません。" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "Could not follow user: %s is already on your list." msgstr "" -"確認用コードを入力された IM アドレスに送信しました。あなたにメッセージを送れ" -"るようにするには%sを承認してください。" +"利用者をフォローできませんでした: %s は既にあなたのリストに入っています。" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "サーバへリダイレクトできません : %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -"確認用コードを入力された電子メールアドレスに送信しました。受信ボックス(とス" -"パムボックス)にコードとそれをどう使うのかという指示が届いていないか確認して" -"ください。" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"確認用コードを入力された電話番号に送信しました。受信ボックス(とスパムボック" -"ス)にコードとそれをどう使うのかという指示が届いていないか確認してください。" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API メソッドが見つかりません!" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API メソッドが工事中です。" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "ユーザを更新できません" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "解説" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "ユーザを更新できません" -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "承認" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "追加" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "OpenID を追加" - -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "OpenID を追加または削除" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "住所" - -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "招待する友人のアドレス (一行に一つ)" - -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "すべての購読" - -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "%s のすべての更新" - -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "検索語「%s」に一致するすべての更新" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "既にログインしています。" - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "既に購読しています。" - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "本当にこの通知を削除しますか?" - -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "購読を許可" - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "以降は自動的にログインする。共用コンピューターでは避けましょう!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "自分を購読している者を自動的に購読する (非人間に最適)" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "アバター" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "アバターが更新されました。" - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"このアドレスは確認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれ" -"たメッセージを確認してください。(%s を友人リストに追加しましたか?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"このアドレスは確認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" -"かれたメッセージが届いていないか確認してください。" - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "この電話番号は確認待ちです。" - -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "前 »" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "自己紹介" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "自己紹介が長すぎます (最長140文字)。" - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "この通知を削除できません。" - -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "アバターの URL '%s' を読み取れません" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "新しいパスワードを保存できません。" - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "中止" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "OpenID コンシューマーオブジェクトをインスタンス化できません。" - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "その Jabbar ID を正規化できません" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "そのメールアドレスを正規化できません" - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "変更" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "メールの扱いを変更" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "パスワードの変更" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "パスワードの変更" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "プロファイル設定の変更" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "確認" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "アドレスの確認" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "確認作業が中止されました。" - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "確認コード" - -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "確認コードが見つかりません。" - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"%s さん、おめでとうございます!%%%%site.name%%%% へようこそ。以下のようにして" -"始めることができます。\n" -"\n" -"* [あなたのプロフィール](%s) を参照して最初のメッセージを投稿する\n" -"* [Jabber や GTalk のアドレス](%%%%action.imsettings%%%%) を追加して、インス" -"タントメッセージを通して通知を送れるようにする\n" -"* あなたが知っている人やあなたと同じ興味をもっている人を[検索](%%%%action." -"peoplesearch%%%%) する\n" -"* [プロフィール設定](%%%%action.profilesettings%%%%) を更新して他の利用者にあ" -"なたのことをより詳しく知らせる\n" -"* 探している機能について[オンライン文書](%%%%doc.help%%%%) を読む\n" -"\n" -"参加してくださりありがとうございます。私たちはあなたがこのサービスを楽しんで" -"使われることを願っています。" - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "接続" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "既存のアカウントと接続" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "連絡先" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "OpenID フォームを作成できませんでした: %s" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" -"利用者をフォローできませんでした: %s は既にあなたのリストに入っています。" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "利用者をフォローできませんでした: 利用者が見つかりません。" - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "サーバーへリダイレクトできません: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "アバターを保存できませんでした" - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "新しいプロフィール情報を保存できませんでした" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "リクエストトークンをアクセストークンに変換できません" - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "メール承認を削除できません" - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "サブスクリプションを削除できません" - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "リクエストトークンを取得できません" - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "確認コードを追加できません" - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "サブスクリプションを追加できません" - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "プロファイルを保存できません" - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "ユーザを更新できません" - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "作成" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "このニックネームで新しくユーザを作成" - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "アカウントを作成" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "既にユーザの存在するOpenIDでアカウントを作成しています" - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "確認された最新の Jabber/GTakk アドレス" - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "最新" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "返信を追加する際にデータベースエラー : %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "140字以内で自己紹介" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "メール" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "メール設定" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "メールアドレスが既に存在します。" - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "メールアドレス確認" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "メールアドレス" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "ニックネームかメールアドレスを入力してください。" - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "認証トークンエラー" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "ユーザとOpenIDとの接続エラー" - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "ユーザ接続エラー" - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "アバター追加エラー" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "プロファイル追加エラー" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "リモートプロファイル追加エラー" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "アドレス確認保存エラー" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "リモートプロファイル保存エラー" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "プロファイル保存エラー" - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "ユーザ保存エラー" - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "ユーザ保存エラー; 不正なユーザ" - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "ユーザ設定エラー" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "プロファイル更新エラー" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "リモートプロファイル更新エラー" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "確認コードにエラーがあります。" - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "既に存在するニックネーム" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "よくある質問" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "アバターの更新に失敗しました。" - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "%s のともだちのフィード" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "%s の返信のフィード" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" -"て下さい。" - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "フルネーム" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "フルネームが長すぎます。(255字まで)" - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "ヘルプ" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "ホーム" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "ホームページ" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "ホームページのURLが不適切です。" - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IMアドレス" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM設定" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" -"連付けて下さい。" - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "OpenIDを追加する場合、下のボックスにある\"Add\"をつリックして下さい。" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "古いパスワードが間違っています。" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "ユーザ名またはパスワードが間違っています。" - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "登録されたメールアドレスにパスワードの回復方法をおおくりしました。" - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "不正なアバターURL '%s'" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "不正なメールアドレス:%s'" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "不正なホームページ '%s'" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "不正なライセンスURL '%s'" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "不正な通知内容" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "不正な通知uri" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "不正な通知url" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "不正なプロファイルURL '%s'。" - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "不正なプロファイルURL。(形式不備)" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "不正なプロファイルURLがサーバから返されました。" - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "不正なサイズ。" - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "不正なユーザ名またはパスワード。" - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動" -"いています。 ライセンス [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)。" - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID jは既に別のユーザが使用しています。" - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"\"UserName@example.org\" といった Jabber または GTalk のアドレス。まず、%s を" -"IMクライアントやGTalkに追加して下さい。" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "場所" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "場所が長すぎます。(255字まで)" - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "ログイン" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "[OpenID](%%doc.openid%%) でログイン。" - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "ログアウト" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "パスワードを紛失、忘れた?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "からのメンバー" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "マイクロブログ by %s" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "の下でテキスト及びファイルを利用可能" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "新しいニックネーム" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "新しい通知" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "新しいパスワード" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "新しいパスワードの保存に成功しました。ログインしています。" - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "ニックネーム" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" -"できません。" - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "そのニックネームは使用できません。" - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "フォローしたいユーザのニックネーム" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "ニックネームまたはメールアドレス" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Jabbar ID はありません。" - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "認証のリクエストがありません。" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "確認コードがありません。" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "コンテンツがありません!" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "id がありません。" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "リモートユーザのニックネームがありません。" - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "ニックネームがありません。" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "認証待ちのものはありません。" - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "サーバから提供されるプロファイルURLはありません。" - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "そのユーザにはメールアドレスの登録がありません。" - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "リクエストがありません!" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "結果なし" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "サイズがありません。" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "そのようなOpenIDはありません。" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "そのようなドキュメントはありません。" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "そのような通知はありません。" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "そのような回復コードはありません。" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "そのようなサブスクリプションはありません。" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "そのようなユーザはいません。" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "表示できるユーザはいません。" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "回復コードではありません。" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "有効な Jabber ID ではありません。" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "有効な OpenID ではありません。" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "有効なメールアドレスではありません。" - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "有効なニックネームではありません。" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "有効なプロファイルURLではありません。(間違ったサービス)" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "有効なプロファイルURLではありません。(XRDSの定義が無い)" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "画像ではないかファイルが破損しています。" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "認証されていません。" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "想定外のレスポンスです!" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "ログインしていません。" - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "購読していません!" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "%sの通知フィード" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "通知にはプロファイルはありません。" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "通知" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "古いパスワード" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID アカウントセットアップ" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID 自動提示" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID ログイン" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID での認証がキャンセルされました。" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID での認証に失敗しました : %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID 障害 : %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID は消去されました。" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID 設定" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "不完全なアップロード。" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "パスワード" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "パスワードと確認が一致しません。" - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "パスワードは6字以上でなければいけません。" - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "パスワード回復のリクエストされました" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "パスワードが保存されました。" - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "パスワードが一致しません。" - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "ピープルサーチ" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "パーソナル" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " -"キャンセルをクリックして下さい。" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "設定" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "設定が保存されました。" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "プライバシー" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "通知を保存する際に問題が発生しました。" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "プロファイル" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "プロファイルURL" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "プロファイル設定" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "プロファイルが不明" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "パブリックフィード" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "パブリックタイムライン" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "回復" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "パスワードを回復" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "不明なユーザのための回復コード。" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "登録" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "拒否" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "ログイン状態を保持" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "リモートプロファイルと一致するものがありません" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "リモートサブスクライブ" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "削除" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "OpenID を削除" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -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 を追加して下さい。" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "返信" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "%s への返信" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "リセット" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "パスワードをリセット" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "上と同じパスワード" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "" - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "保存" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "検索" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "ストリームフィードを検索" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "%%site.name%% の通知を内容から検索。検索語はスペース区切る。3字以上" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "送る" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Jabber/GTalk で私に通知を送って下さい。" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "設定" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "設定が保存されました。" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "既に他の人がこの OpenID を使用しています。" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "不測の事態が発生しました。" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "ソース" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "統計データ" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "保存された OpenID は見つかりません。" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "購読" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "購読者" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "購読が許可" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "購読が拒否" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "サブスクリプション" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "ファイルのアップロードでシステムエラー" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "文字検索" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "その OpenID はあなたのものではありません。" - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "そのアドレスは既に承認されています。" - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "その確認コードはあなたのものではありません!" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "ファイルサイズが大きすぎます。" - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "その Jabber ID は既にあなたのものです。" - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "その Jabber ID はあなたのものではありません。" - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "その IM アドレスは不正です。" - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "長すぎます。通知は最大 140 字までです。" - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "アドレス \"%s\" はあなたのアカウントとして承認されています。" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "アドレスは削除されました。" - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "%s の通知を聞いている人" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "あなたの通知を聞いている人" - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "%s が通知を聞いている人" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "あなたが通知を聞いている人" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "確認コードが古すぎます。もう一度やり直してください。" - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"このフォームは自動的にサブミットされます。されない場合は、サブミットボタンを" -"クリックして下さい。OpenIDプロバイダへ転送されます。" - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"これが %s への初回のログインです。OpenIDとの関連付けが必要です。アカウントを" -"新規作成するか、既存のアカウントとの関連付けのどちらかを下さい。" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "このページはあなたが承認したメディアタイプでは利用できません。" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"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%%) を行って下さい。既に [compatible microblogging site](%%doc." -"openmublog%%) にアカウントを持っおもちの場合は、下にプロファイルURLを入力して" -"下さい." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "" - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "予期せぬフォーム送信です。" - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "予期せぬパスワードのリセットです。" - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "予期せぬ OMB プロトコルのバージョンです。" - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"特に断りが無い場合は、このサイトのコンテンツの著作権は著作者に帰属し、下記条" -"件の下で使用可能です。" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "不明なアドレスタイプ %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "サブスクライブ中止" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "サポート外の OMB バージョン" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "サポート外の画像形式です。" - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "アップロード" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "アバターを保存できません" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"\"アバター\" (ユーザの画像) をアップロード。 アップロードした後では画像の編集" -"はできません。サイズが大きすぎないか(小さすぎないか)確認して下さい。サイト" -"のライセンスが適用されます。自身で所有していて、共有したい画像を使用して下さ" -"い。" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "アバターを保存できません" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "サブスクリプションを作成できません" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" +"ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" +"できません。" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "更新、アナウンス、パスワードリカバリーでのみ使用されます。" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "リストされているユーザは存在しません。" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "プロファイルがありません。" - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "ユーザのニックネーム" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "有効なニックネームではありません。" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "ホームページのURLが不適切です。" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "最近どう %s?" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "フルネームが長すぎます。(255字まで)" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "いる場所, 例えば \"City, State (or Region), Country\"" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "バイオグラフィが長すぎます。(最長140字)" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "不正な画像形式。'%s'" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "場所が長すぎます。(255字まで)" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Wrong size image at '%s'" -msgstr "不正な画像サイズ。'%s'" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" +msgid "Too many aliases! Maximum %d." msgstr "" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "既にこの OpenID を使用しています。" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "不正なホームページ '%s'" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." msgstr "既にログイン済みです。" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "パスワードはここで変更できます。良いものを選んで下さい!" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "アカウントを作成して通知の投稿が可能です。" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "サーバへリダイレクトできません : %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "そのプロファイルは送信されていません。" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "\"削除\"をクリックして OpenID を削除できます。" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenIDを作成できません : %s" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で" -"す。下のアドレスを設定して下さい。" - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"あなたのことについて知ってもらうために、ここでプロファイル情報を更新できま" -"す。" +msgid "%s groups" +msgstr "%s グループ" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "ローカルサブスクリプションを使用可能です!" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "このサイト上のグループを検索する" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "ライセンスに同意頂けない場合は登録できません。" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s グループ" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." msgstr "そのプロファイルは送信されていません。" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +#: actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "アバターが更新されました。" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "確認されました。新しいパスワードを入力して下さい。" - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "あなたの OpenID URL" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "長すぎます。通知は最大 140 字までです。" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "このサーバでのニックネーム、または登録したメールアドレス。" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -"[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" -"することができます。ここで関連付ける OpenID を管理して下さい。" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "数秒前" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "サポート外の画像形式です。" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "about %d days ago" -msgstr "約 %d 日前" +msgid "%s / Favorites from %s" +msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 +#: actions/apitimelinefavorites.php:119 #, php-format -msgid "about %d hours ago" -msgstr "約 %d 時間前" +msgid "%s updates favorited by %s / %s." +msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format -msgid "about %d minutes ago" -msgstr "約 %d 分前" +msgid "%s timeline" +msgstr "%s のタイムライン" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format -msgid "about %d months ago" -msgstr "約 %d ヵ月前" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "約 1 日前" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "約 1 分前" +msgid "Updates from %1$s on %2$s!" +msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "約 1 ヵ月前" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$ のステータス %2$s" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "約 1 年前" +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "約 1 時間前" +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s の公開タイムライン" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "...に対しての返信" - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "返信" +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "上のパスワードと同じ" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "マイクロブログ by %s" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "見つかりません。" -#: ../lib/util.php:1309 lib/util.php:1443 +#: actions/attachment.php:73 #, fuzzy -msgid "« After" -msgstr "<< 前" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgid "No such attachment." +msgstr "そのようなドキュメントはありません。" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "ニックネームがありません。" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "サイズがありません。" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "不正なサイズ。" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "アバター" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "設定" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "削除" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "アップロード" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "予期せぬフォーム送信です。" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "アバターが更新されました。" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "アバターの更新に失敗しました。" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "アバターが更新されました。" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "ニックネームがありません。" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "そのような通知はありません。" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "プロファイルがありません。" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s & ともだち" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "ユーザのアンブロックに失敗しました。" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "アンブロック" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "このユーザをアンブロックする" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "ログインしていません。" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "そのようなユーザはいません。" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/block.php:136 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "サーバへリダイレクトできません : %s" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" msgstr "" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "このユーザをブロックする" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "既にログイン済みです。" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/block.php:170 +msgid "Failed to save block information." msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " +#: actions/bookmarklet.php:50 +msgid "Post to " msgstr "" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "確認コードがありません。" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "確認コードが見つかりません。" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "その確認コードはあなたのものではありません!" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#: actions/confirmaddress.php:90 #, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" +msgid "Unrecognized address type %s" +msgstr "不明なアドレスタイプ %s" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "そのアドレスは既に承認されています。" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "ユーザを更新できません" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "メール承認を削除できません" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "アドレスの確認" -#: actions/showmessage.php:61 actions/showmessage.php:108 +#: actions/confirmaddress.php:159 #, php-format -msgid "Message to %1$s on %2$s" -msgstr "" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "アドレス \"%s\" はあなたのアカウントとして承認されています。" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "確認コード" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "通知" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "そのような通知はありません。" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "この通知を削除できません。" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "本当にこの通知を削除しますか?" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "この通知を削除できません。" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "この通知を削除" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" +#: actions/doc.php:69 +msgid "No such document." +msgstr "そのようなドキュメントはありません。" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/editgroup.php:56 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +msgid "Edit %s group" msgstr "" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "バイオグラフィが長すぎます。(最長140字)" -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "ユーザを更新できません" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "設定が保存されました。" -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "メール設定" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "住所" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." msgstr "" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "削除" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" +"このアドレスは確認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" +"かれたメッセージが届いていないか確認してください。" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "中止" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" +#: actions/emailsettings.php:121 +msgid "Email Address" msgstr "" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "追加" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "設定" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." msgstr "" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "保存" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "設定が保存されました。" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "そのメールアドレスを正規化できません" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" +#: actions/emailsettings.php:333 +msgid "That is already your email address." msgstr "" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "確認コードを追加できません" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" +#: actions/emailsettings.php:358 +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 "" +"確認用コードを入力された電子メールアドレスに送信しました。受信ボックス(とス" +"パムボックス)にコードとそれをどう使うのかという指示が届いていないか確認して" +"ください。" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "認証待ちのものはありません。" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "その IM アドレスは不正です。" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "確認作業が中止されました。" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "アドレスは削除されました。" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "そのような通知はありません。" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "そのような通知はありません。" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: 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 "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/favorited.php:156 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 #, php-format -msgid "New private message from %s" +msgid "%s's favorite notices" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "マイクロブログ by %s" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/featured.php:71 #, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +msgid "Featured users, page %d" msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新しい通知" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新しい通知" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "想定外のレスポンスです!" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "リストされているユーザは存在しません。" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s & ともだち" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "ローカルサブスクリプションを使用可能です!" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 +#: actions/finishremotesubscribe.php:106 #, fuzzy -msgid "Avatar settings" -msgstr "設定" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" +msgid "You are not authorized." +msgstr "認証されていません。" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "リクエストトークンをアクセストークンに変換できません" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "予期せぬ OMB プロトコルのバージョンです。" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "リモートプロファイル更新エラー" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "そのような通知はありません。" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 +#: actions/getfile.php:75 #, fuzzy -msgid "Lost our file." +msgid "No such file." msgstr "そのような通知はありません。" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "そのような通知はありません。" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: actions/block.php:111 actions/block.php:134 +#: actions/groupblock.php:95 #, fuzzy -msgid "Block user" -msgstr "そのようなユーザはいません。" +msgid "User is already blocked from group." +msgstr "プロファイルがありません。" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "そのプロファイルは送信されていません。" -#: actions/block.php:162 actions/block.php:165 +#: actions/groupblock.php:136 actions/groupmembers.php:314 #, fuzzy -msgid "You have already blocked this user." -msgstr "既にログイン済みです。" +msgid "Block user from group" +msgstr "そのようなユーザはいません。" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: actions/confirmaddress.php:159 -#, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "アドレスは削除されました。" - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 #, fuzzy -msgid "No nickname" -msgstr "ニックネームがありません。" +msgid "Couldn't update your design." +msgstr "ユーザを更新できません" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 #, fuzzy -msgid "No such group" -msgstr "そのような通知はありません。" +msgid "Design preferences saved." +msgstr "設定が保存されました。" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -"ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" -"できません。" - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "バイオグラフィが長すぎます。(最長140字)" -#: actions/editgroup.php:218 actions/editgroup.php:253 +#: actions/grouplogo.php:396 #, fuzzy -msgid "Could not update group." -msgstr "ユーザを更新できません" +msgid "Logo updated." +msgstr "アバターが更新されました。" -#: actions/editgroup.php:226 actions/editgroup.php:269 +#: actions/grouplogo.php:398 #, fuzzy -msgid "Options saved." -msgstr "設定が保存されました。" - -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "確認コードにエラーがあります。" +msgid "Failed updating logo." +msgstr "アバターの更新に失敗しました。" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "メールアドレスが既に存在します。" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "管理者" -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%" -"sを承認して下さい。" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "ブロック" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "このユーザをブロックする" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "管理者" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "コンテンツがありません!" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "マイクロブログ by %s" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 +#: actions/groupsearch.php:58 #, fuzzy -msgid "After" -msgstr "<< 前" +msgid "Group search" +msgstr "ピープルサーチ" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 #, fuzzy -msgid "Before" -msgstr "前 >>" +msgid "No results." +msgstr "結果なし" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/groupsearch.php:82 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/groupsearch.php:85 #, php-format -msgid "You have been invited to %s" +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "%s のともだちのフィード" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/groups.php:64 #, php-format -msgid "Friends already using %s:" +msgid "Groups, page %d" msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/groups.php:90 #, php-format -msgid "Send invitations" +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: actions/facebookremove.php:56 +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 #, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "ユーザを更新できません" +msgid "Create a new group" +msgstr "アカウントを作成" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: actions/facebooksettings.php:67 +#: actions/groupunblock.php:95 #, fuzzy -msgid "Sync preferences saved." -msgstr "設定が保存されました。" +msgid "User is not blocked from group." +msgstr "プロファイルがありません。" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "ブロックの削除エラー" + +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM設定" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." msgstr "" +"Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で" +"す。下のアドレスを設定して下さい。" -#: actions/facebooksettings.php:106 +#: actions/imsettings.php:89 #, fuzzy -msgid "Prefix" -msgstr "プロファイル" +msgid "IM is not available." +msgstr "このページはあなたが承認したメディアタイプでは利用できません。" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "確認された最新の Jabber/GTakk アドレス" -#: actions/facebooksettings.php:124 +#: actions/imsettings.php:114 #, php-format -msgid "If you would like %s to automatically update " +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"このアドレスは確認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれ" +"たメッセージを確認してください。(%s を友人リストに追加しましたか?)" -#: actions/facebooksettings.php:147 -#, fuzzy -msgid "Sync preferences" -msgstr "設定" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IMアドレス" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" +"\"UserName@example.org\" といった Jabber または GTalk のアドレス。まず、%s を" +"IMクライアントやGTalkに追加して下さい。" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -#, fuzzy -msgid "Popular notices" -msgstr "そのような通知はありません。" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Jabber/GTalk で私に通知を送って下さい。" -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "そのような通知はありません。" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/featured.php:71 +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Jabbar ID はありません。" + +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "その Jabbar ID を正規化できません" + +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "有効な Jabber ID ではありません。" + +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "その Jabber ID は既にあなたのものです。" + +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID jは既に別のユーザが使用しています。" + +#: actions/imsettings.php:327 #, php-format -msgid "Featured users, page %d" +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" +"確認用コードを入力された IM アドレスに送信しました。あなたにメッセージを送れ" +"るようにするには%sを承認してください。" + +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "その Jabber ID はあなたのものではありません。" -#: actions/featured.php:99 +#: actions/inbox.php:59 #, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +msgid "Inbox for %s - page %d" msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "アバターが更新されました。" - -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "アバターの更新に失敗しました。" - -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/invite.php:41 #, php-format -msgid "%s group members" +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: actions/groupmembers.php:96 +#: actions/invite.php:72 #, php-format -msgid "%s group members, page %d" +msgid "Invalid email address: %s" +msgstr "不正なメールアドレス:%s'" + +#: actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/invite.php:112 +msgid "Invite new users" msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: actions/groups.php:64 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Groups, page %d" +msgid "%s (%s)" +msgstr "%s (%s)" + +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "アカウントを作成" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" -#: actions/groupsearch.php:57 -#, fuzzy, php-format +#: actions/invite.php:162 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "ピープルサーチ" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "メールアドレス" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "招待する友人のアドレス (一行に一つ)" + +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Jabber/GTalk で私に通知を送って下さい。" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "送る" -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "確認コードがありません。" +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s があなたを %2$s へ招待しました" + +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s があなたを %2$s へ招待しました (%3$s)。\n" +"\n" +"%2$s はあなたの知り合いやあなたが興味をもっている人物の最新の情報を得ることが" +"できる、マイクロブログサービスです。\n" +"\n" +"また、あなたの最新の情報やあなたの考えていること、生活を、あなたのことを知っ" +"ている人と共有することができます。あなたと同じ興味をもつ人々と出会う目的でも" +"優れたサービスです。\n" +"\n" +"%1$s の言葉:\n" +"\n" +"%4$s\n" +"\n" +"%2$s における %1$s のプロフィールページを以下で見ることができます:\n" +"\n" +"%5$s\n" +"\n" +"このサービスを試してみたい場合は以下のリンクをクリックしてこの招待に応じてく" +"ださい。\n" +"\n" +"%6$s\n" +"\n" +"そうでない場合はこのメッセージを無視することができます。お時間をいただきあり" +"がとうございました。\n" +"\n" +"%2$s\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "既にログイン済みです。" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "サーバへリダイレクトできません : %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "そのような通知はありません。" - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "そのプロファイルは送信されていません。" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenIDを作成できません : %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "既にログインしています。" + +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "不正な通知内容" + +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "ユーザ名またはパスワードが間違っています。" + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "ユーザ設定エラー" + +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "ログイン" + +#: actions/login.php:243 msgid "Login to site" msgstr "" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "ニックネーム" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "パスワード" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "ログイン状態を保持" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "以降は自動的にログインする。共用コンピューターでは避けましょう!" + +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "パスワードを紛失、忘れた?" + +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" +"て下さい。" + +#: actions/login.php:286 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/microsummary.php:69 msgid "No current status" msgstr "" @@ -4550,42 +1720,93 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 +#: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "アバターを保存できません" +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" + +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "コンテンツがありません!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "新しい通知" + +#: actions/newnotice.php:199 +#, fuzzy +msgid "Notice posted" +msgstr "通知" + +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "%%site.name%% の通知を内容から検索。検索語はスペース区切る。3字以上" + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "文字検索" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "サブスクリプションを作成できません" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "\"%s\" のストリームを検索" -#: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy -msgid "That's too long. " -msgstr "ファイルサイズが大きすぎます。" +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -#, fuzzy -msgid "Notice posted" -msgstr "通知" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "マイクロブログ by %s" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" +#: actions/noticesearchrss.php:91 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "検索語「%s」に一致するすべての更新" #: actions/nudge.php:85 msgid "" @@ -4600,15 +1821,35 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy -msgid "OpenID login" -msgstr "OpenID ログイン" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "通知にはプロファイルはありません。" -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "OpenID を削除" +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%2$s における %1$ の状態" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "内容種別 " + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "" + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" #: actions/othersettings.php:60 #, fuzzy @@ -4619,2360 +1860,2346 @@ msgstr "設定" msgid "Manage various other options." msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: actions/othersettings.php:112 -#, fuzzy -msgid "Service" -msgstr "検索" - -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 +#: actions/othersettings.php:122 #, fuzzy -msgid "URL shortening service is too long (max 50 chars)." -msgstr "場所が長すぎます。(255字まで)" +msgid "View profile designs" +msgstr "プロファイル設定" -#: actions/passwordsettings.php:69 -#, fuzzy -msgid "Change your password." -msgstr "パスワードの変更" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#: actions/othersettings.php:153 #, fuzzy -msgid "Password change" -msgstr "パスワードが保存されました。" - -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "有効なメールアドレスではありません。" +msgid "URL shortening service is too long (max 50 chars)." +msgstr "場所が長すぎます。(255字まで)" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/outbox.php:58 #, php-format -msgid "Users self-tagged with %s - page %d" +msgid "Outbox for %s - page %d" msgstr "" -#: actions/peopletag.php:91 +#: actions/outbox.php:61 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy -msgid "Profile information" -msgstr "プロファイルが不明" - -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgid "Outbox for %s" msgstr "" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "不正なホームページ '%s'" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "パスワードの変更" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 +#: actions/passwordsettings.php:69 #, fuzzy -msgid "Couldn't save tags." -msgstr "プロファイルを保存できません" - -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "パブリックタイムライン" +msgid "Change your password." +msgstr "パスワードの変更" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "パスワードが保存されました。" -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "古いパスワード" -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "パブリックフィード" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "新しいパスワード" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6文字以上" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "確認" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "上のパスワードと同じ" -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "ライセンスに同意頂けない場合は登録できません。" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "変更" -#: actions/register.php:286 -msgid "With this form you can create " +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." msgstr "" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1~64字以内で、小文字アルファベット、数字、スペース。(句読点を除く)" - -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "更新、アナウンス、パスワードリカバリーでのみ使用されます。" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "パスワードが一致しません。" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "古いパスワードが間違っています。" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "140字以内で自己紹介" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "ユーザ保存エラー; 不正なユーザ" -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "いる場所, 例えば \"City, State (or Region), Country\"" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "新しいパスワードを保存できません。" -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " -msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "パスワードが保存されました。" -#: actions/register.php:471 +#: actions/peoplesearch.php:52 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "ピープルサーチ" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/peopletag.php:70 #, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "%s への返信" +msgid "Not a valid people tag: %s" +msgstr "有効なメールアドレスではありません。" -#: actions/showfavorites.php:79 +#: actions/peopletag.php:144 #, php-format -msgid "%s favorite notices, page %d" +msgid "Users self-tagged with %s - page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "不正な通知内容" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: actions/postnotice.php:90 #, php-format -msgid "%s group, page %d" +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy -msgid "Group profile" -msgstr "そのような通知はありません。" +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "プロファイル設定" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." msgstr "" +"あなたのことについて知ってもらうために、ここでプロファイル情報を更新できま" +"す。" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 +#: actions/profilesettings.php:99 #, fuzzy -msgid "Note" -msgstr "通知" +msgid "Profile information" +msgstr "プロファイルが不明" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く" + +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "フルネーム" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "ホームページ" + +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" + +#: actions/profilesettings.php:122 actions/register.php:460 #, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "%sの通知フィード" +msgid "Describe yourself and your interests in %d chars" +msgstr "140字以内で自己紹介" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 +#: actions/profilesettings.php:125 actions/register.php:463 #, fuzzy -msgid "Members" -msgstr "からのメンバー" +msgid "Describe yourself and your interests" +msgstr "140字以内で自己紹介" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "自己紹介" + +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "場所" + +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "いる場所, 例えば \"City, State (or Region), Country\"" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: actions/showgroup.php:378 -#, php-format +#: actions/profilesettings.php:140 msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: actions/profilesettings.php:144 +msgid "Language" msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "プロファイル" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "プロファイルがありません。" - -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "自分を購読している者を自動的に購読する (非人間に最適)" + +#: actions/profilesettings.php:221 actions/register.php:223 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "自己紹介が長すぎます (最長140文字)。" + +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "購読者" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "不正なホームページ '%s'" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "プロファイルを保存できません" -#: actions/smssettings.php:128 +#: actions/profilesettings.php:336 #, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "1~64字以内で、小文字アルファベット、数字、スペース。(句読点を除く)" +msgid "Couldn't save tags." +msgstr "プロファイルを保存できません" -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Jabber/GTalk で私に通知を送って下さい。" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "設定が保存されました。" -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "その確認コードはあなたのものではありません!" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/subedit.php:70 -#, fuzzy -msgid "You are not subscribed to that profile." -msgstr "そのプロファイルは送信されていません。" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "パブリックタイムライン" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "サブスクリプションを作成できません" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "パブリックタイムライン" -#: actions/subscribe.php:55 +#: actions/public.php:151 #, fuzzy -msgid "Not a local user." -msgstr "そのようなユーザはいません。" +msgid "Public Stream Feed (RSS 1.0)" +msgstr "パブリックフィード" -#: actions/subscribe.php:69 +#: actions/public.php:155 #, fuzzy -msgid "Subscribed" -msgstr "購読" +msgid "Public Stream Feed (RSS 2.0)" +msgstr "パブリックフィード" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "購読者" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "パブリックフィード" -#: actions/subscribers.php:52 +#: actions/public.php:179 #, php-format -msgid "%s subscribers, page %d" +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "%s の通知を聞いている人" - -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "%s の通知を聞いている人" - -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "全てのサブスクリプション" - -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "全てのサブスクリプション" - -#: actions/subscriptions.php:65 -#, fuzzy -msgid "These are the people whose notices " -msgstr "%s が通知を聞いている人" - -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "%s の通知を聞いている人" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "Jabbar ID はありません。" +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "マイクロブログ by %s" +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/tag.php:66 actions/tag.php:73 +#: actions/public.php:238 #, php-format -msgid "Messages tagged \"%s\", most recent first" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/tagother.php:33 +#: actions/publictagcloud.php:57 #, fuzzy -msgid "Not logged in" -msgstr "ログインしていません。" +msgid "Public tag cloud" +msgstr "パブリックフィード" -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "そのようなドキュメントはありません。" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" -#: actions/tagother.php:65 +#: actions/publictagcloud.php:69 #, php-format -msgid "Tag %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 +#: actions/publictagcloud.php:75 +#, php-format msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "既にログイン済みです。" -#: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy -msgid "Could not save tags." -msgstr "アバターを保存できません" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "そのような回復コードはありません。" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "回復コードではありません。" -#: actions/tagrss.php:35 -#, fuzzy -msgid "No such tag." -msgstr "そのような通知はありません。" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "不明なユーザのための回復コード。" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "マイクロブログ by %s" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "確認コードにエラーがあります。" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "ユーザのブロックに失敗しました。" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "確認コードが古すぎます。もう一度やり直してください。" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "ユーザのアンブロックに失敗しました。" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "見つかりません。" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Twitterパスワード" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "このサーバでのニックネーム、または登録したメールアドレス。" + +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "回復" + +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "パスワードをリセット" + +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "パスワードを回復" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Twitterフレンド" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "パスワード回復のリクエストされました" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "アカウント情報を取得できません" - -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "ブロックの削除エラー" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6文字以上。忘れないでください!" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "リクエスト内にプロファイルIDがありません。" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "上と同じパスワード" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "そのIDはプロファイルではありません。" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "リセット" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "サブスクライブ解除済み" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "ニックネームかメールアドレスを入力してください。" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "%s グループ" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "%s グループ, %d ページ" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "そのユーザにはメールアドレスの登録がありません。" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -#, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "通知を保存する際に問題が発生しました。" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "アドレス確認保存エラー" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/recoverpassword.php:325 msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "登録されたメールアドレスにパスワードの回復方法をおおくりしました。" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "予期せぬパスワードのリセットです。" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "アバターのアップロード" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "パスワードは6字以上でなければいけません。" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "その他" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "パスワードと確認が一致しません。" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "その他のオプション" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "新しいパスワードの保存に成功しました。ログインしています。" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "名称未設定ページ" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "確認コードにエラーがあります。" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "人々かテキストを検索" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "アカウント" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "登録" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "メールアドレス、アバター、パスワード、プロパティの変更" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "IM、SMS、Twitterに接続" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "ライセンスに同意頂けない場合は登録できません。" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "サイトからログアウト" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "有効なメールアドレスではありません。" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "サイトへログイン" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "メールアドレスが既に存在します。" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "アカウントを作成" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "不正なユーザ名またはパスワード。" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "OpenIDでログイン" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "助けて!" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く。必須です。" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "新しい通知" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6文字以上。必須です。" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "新しい通知" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "メール" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "サブスクリプション" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "更新、アナウンス、パスワードリカバリーでのみ使用されます。" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "の下でテキスト及びファイルを利用可能" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "ライセンス。" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "このユーザをブロックする" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "ブロック" +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"%s さん、おめでとうございます!%%%%site.name%%%% へようこそ。以下のようにして" +"始めることができます。\n" +"\n" +"* [あなたのプロフィール](%s) を参照して最初のメッセージを投稿する\n" +"* [Jabber や GTalk のアドレス](%%%%action.imsettings%%%%) を追加して、インス" +"タントメッセージを通して通知を送れるようにする\n" +"* あなたが知っている人やあなたと同じ興味をもっている人を[検索](%%%%action." +"peoplesearch%%%%) する\n" +"* [プロフィール設定](%%%%action.profilesettings%%%%) を更新して他の利用者にあ" +"なたのことをより詳しく知らせる\n" +"* 探している機能について[オンライン文書](%%%%doc.help%%%%) を読む\n" +"\n" +"参加してくださりありがとうございます。私たちはあなたがこのサービスを楽しんで" +"使われることを願っています。" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" +"(メールアドレスを確認する方法を読んで、すぐにメールによるメッセージを受け取る" +"ようにしてください)" -#: lib/facebookaction.php:268 +#: actions/remotesubscribe.php:98 #, php-format -msgid "To use the %s Facebook Application you need to login " +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"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%%) を行って下さい。既に [compatible microblogging site](%%doc." +"openmublog%%) にアカウントを持っおもちの場合は、下にプロファイルURLを入力して" +"下さい." -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr "新しいアカウント" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "発行済" - -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "この通知をお気に入りにする" - -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "データのエクスポート" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "タグのフィルター" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "リモートサブスクライブ" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "購読が許可" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "タグ" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "ユーザのニックネーム" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "フォローしたいユーザのニックネーム" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "移動" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "プロファイルURL" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "グループやトピックのホームページやブログの URL" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "概要" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "購読" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "グループやトピックを140字以内記述" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "不正なプロファイルURL。(形式不備)" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: actions/remotesubscribe.php:168 #, fuzzy msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "いる場所, 例えば \"City, State (or Region), Country\"" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "グループ" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "管理者" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "リクエストトークンを取得できません" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "Edit %s group properties" -msgstr "%s グループプロパティを編集" +msgid "Replies to %s" +msgstr "%s への返信" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "ロゴ" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "%s への返信" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "%s ロゴの追加や編集" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%sの通知フィード" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "メンバー数が多いグループ" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%sの通知フィード" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "投稿が多いグループ" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%sの通知フィード" -#: lib/grouptagcloudsection.php:56 +#: actions/replies.php:198 #, php-format -msgid "Tags in %s group's notices" -msgstr "%s グループの通知にあるタグ" +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "このページはあなたが承認したメディアタイプでは利用できません。" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "参加" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "離れる" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%s への返信" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "ユーザ名とパスワードでログイン" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "そのような通知はありません。" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "新しいアカウントでサインアップ" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "OpenIDでログインまたは登録" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s のともだちのフィード" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s のともだちのフィード" -#: lib/mail.php:236 +#: actions/showfavorites.php:184 #, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s は %2$s であなたの通知を聞いています。" +msgid "Feed for favorites of %s (Atom)" +msgstr "%s のともだちのフィード" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "場所: %s\n" +#: actions/showfavorites.php:205 +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 "" -#: lib/mail.php:256 lib/mail.php:255 +#: actions/showfavorites.php:207 #, php-format -msgid "Homepage: %s\n" -msgstr "ホームページ: %s\n" +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showfavorites.php:211 #, php-format msgid "" -"Bio: %s\n" -"\n" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: lib/mail.php:461 lib/mail.php:462 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "You've been nudged by %s" -msgstr "あなたは %s に突かれています" +msgid "%s group" +msgstr "" -#: lib/mail.php:465 +#: actions/showgroup.php:84 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "%s group, page %d" msgstr "" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s は %2$s であなたの通知を聞いています。" +#: actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "そのような通知はありません。" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "直接通知を送る" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +#, fuzzy +msgid "Note" +msgstr "通知" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "通知を送る" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "利用可能な文字" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy -msgid "in reply to" -msgstr "...に対しての返信" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%sの通知フィード" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "この通知へ返信" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%sの通知フィード" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "返信" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%sの通知フィード" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "この通知を削除" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%sの通知フィード" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "削除" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +#, fuzzy +msgid "Members" +msgstr "からのメンバー" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "このユーザを突く" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "突く" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "このユーザへ突きを送る" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "統計データ" -#: lib/personaltagcloudsection.php:56 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "作成" + +#: actions/showgroup.php:448 #, php-format -msgid "Tags in %s's notices" +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 "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(なし)" +#: actions/showgroup.php:454 +#, 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 "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "パブリック" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "管理者" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "ユーザグループ" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "最近のタグ" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "人気" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" -#: lib/searchgroupnav.php:82 -msgid "Notice" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." msgstr "通知" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "このサイト上のグループを検索する" +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "名称未設定のセクション" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%sの通知フィード" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: actions/showstream.php:129 #, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "リモートサブスクライブ" +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%sの通知フィード" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: actions/showstream.php:136 #, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "リモートサブスクライブ" +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%sの通知フィード" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:148 #, php-format -msgid "Groups %s is a member of" +msgid "FOAF for %s" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: actions/showstream.php:191 #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -#, fuzzy -msgid "User has blocked you." -msgstr "プロファイルがありません。" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -#, fuzzy -msgid "Subscribe to this user" -msgstr "購読が許可" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "上位投稿者" +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "このユーザをアンブロックする" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "アンブロック" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "このユーザからのサブスクライブを解除する" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "このページはあなたが承認したメディアタイプでは利用できません。" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "%s のともだちのフィード" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "%s のともだちのフィード" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "この電話番号は確認待ちです。" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "%s のともだちのフィード" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "確認コード" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s & ともだち" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -#, fuzzy -msgid "Avatar deleted." -msgstr "アバターが更新されました。" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" -#: actions/block.php:129 actions/block.php:136 +#: actions/smssettings.php:174 msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + +#: actions/smssettings.php:347 +#, fuzzy msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." +"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 "その確認コードはあなたのものではありません!" + +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: actions/smssettings.php:476 #, php-format msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +"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 "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "マイクロブログ by %s" +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "そのプロファイルは送信されていません。" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#: actions/subedit.php:83 +#, fuzzy +msgid "Could not save subscription." +msgstr "サブスクリプションを作成できません" + +#: actions/subscribe.php:55 +#, fuzzy +msgid "Not a local user." +msgstr "そのようなユーザはいません。" + +#: actions/subscribe.php:69 +#, fuzzy +msgid "Subscribed" +msgstr "購読" + +#: actions/subscribers.php:50 #, fuzzy, php-format -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." +msgid "%s subscribers" +msgstr "購読者" + +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" msgstr "" -"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" -#: actions/groups.php:90 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "あなたの通知を聞いている人" + +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "%s の通知を聞いている人" + +#: actions/subscribers.php:108 msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/noticesearch.php:91 +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:52 #, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "\"%s\" のストリームを検索" +msgid "%s subscriptions" +msgstr "全てのサブスクリプション" -#: actions/openidlogin.php:66 +#: actions/subscriptions.php:54 #, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "全てのサブスクリプション" + +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "あなたが通知を聞いている人" + +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "%s が通知を聞いている人" + +#: actions/subscriptions.php:121 +#, php-format msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" -"て下さい。" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s は %2$s であなたの通知を聞いています。" + +#: actions/subscriptions.php:194 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "パブリックフィード" +msgid "Jabber" +msgstr "Jabbar ID はありません。" + +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#: actions/tagother.php:33 #, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "パブリックフィード" +msgid "Not logged in" +msgstr "ログインしていません。" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: actions/tagother.php:39 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "パブリックフィード" +msgid "No id argument." +msgstr "そのようなドキュメントはありません。" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: actions/tagother.php:65 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgid "Tag %s" msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +#: actions/tagother.php:77 lib/userprofile.php:75 +#, fuzzy +msgid "User profile" +msgstr "プロファイルがありません。" + +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy +#: actions/tagother.php:151 msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "作成" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format +#: actions/tagother.php:193 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%%%%))" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/showstream.php:147 +#: actions/tagother.php:200 #, fuzzy -msgid "Your profile" -msgstr "そのような通知はありません。" +msgid "Could not save tags." +msgstr "アバターを保存できません" + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" -#: actions/showstream.php:149 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "%s's profile" -msgstr "プロファイル" +msgid "Notices tagged with %s, page %d" +msgstr "マイクロブログ by %s" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%sの通知フィード" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%sの通知フィード" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (Atom)" msgstr "%sの通知フィード" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, php-format -msgid "FOAF for %s" -msgstr "" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 +#: actions/tagrss.php:35 #, fuzzy -msgid "Edit Avatar" -msgstr "アバター" +msgid "No such tag." +msgstr "そのような通知はありません。" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "プロファイル設定" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API メソッドが工事中です。" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "リクエスト内にプロファイルIDがありません。" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "そのIDはプロファイルではありません。" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "その確認コードはあなたのものではありません!" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "サブスクライブ解除済み" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "そのようなユーザはいません。" - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "アカウント情報を取得できません" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "購読を許可" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:110 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" "ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " "キャンセルをクリックして下さい。" -#: actions/usergroups.php:131 actions/usergroups.php:130 +#: actions/userauthorization.php:188 #, fuzzy -msgid "Search for more groups" -msgstr "人々かテキストを検索" +msgid "License" +msgstr "ライセンス。" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "承認" -#: lib/action.php:406 lib/action.php:425 +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "IM、SMS、Twitterに接続" +msgid "Subscribe to this user" +msgstr "購読が許可" + +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "拒否" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Badge" -msgstr "突く" +msgid "Reject this subscription" +msgstr "全てのサブスクリプション" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "認証のリクエストがありません。" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "購読が許可" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: actions/userauthorization.php:249 msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -"既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" -"連付けて下さい。" -#: lib/feed.php:85 -msgid "RSS 1.0" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "購読が拒否" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/imagefile.php:75 +#: actions/userauthorization.php:322 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: actions/userauthorization.php:338 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "アバターURL を読み取れません '%s'" + +#: actions/userauthorization.php:348 #, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "不正な画像形式。'%s'" + +#: actions/userbyid.php:70 +msgid "No id." +msgstr "id がありません。" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "プロファイル設定" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -"%1$s は %2$s であなたの通知を聞いています。\n" -"\n" -"\t%3$s\n" -"\n" -"確かにあなたの,\n" -"%4$s.\n" -#: lib/mail.php:466 +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "%s グループ, %d ページ" + +#: actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "人々かテキストを検索" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "そのプロファイルは送信されていません。" + +#: actions/usergroups.php:158 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: lib/mail.php:513 +#: classes/File.php:137 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 +#: classes/File.php:147 #, php-format -msgid "%s sent a notice to your attention" +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: classes/File.php:154 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "検索" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "" -#: lib/section.php:106 -msgid "More..." +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: actions/all.php:80 actions/all.php:127 +#: classes/Notice.php:164 #, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +msgid "DB error inserting hashtag: %s" msgstr "" -#: actions/all.php:85 actions/all.php:132 -#, php-format +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "通知を保存する際に問題が発生しました。" + +#: classes/Notice.php:183 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "通知を保存する際に問題が発生しました。" + +#: classes/Notice.php:188 msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format +#: classes/Notice.php:194 msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "通知を保存する際に問題が発生しました。" + +#: classes/Notice.php:1120 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "DB error inserting reply: %s" +msgstr "返信を追加する際にデータベースエラー : %s" + +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "そのようなドキュメントはありません。" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "プロファイル" -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "サーバへリダイレクトできません : %s" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "プロファイル設定の変更" -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "このユーザをブロックする" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "アバターのアップロード" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "プロファイルがありません。" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "パスワードの変更" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s & ともだち" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "メールの扱いを変更" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/blockedfromgroup.php:281 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Unblock user from group" -msgstr "ユーザのアンブロックに失敗しました。" +msgid "Design your profile" +msgstr "プロファイルがありません。" -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "確認コード" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "その他" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "この通知を削除できません。" +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "その他のオプション" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/action.php:144 #, php-format -msgid "Too many aliases! Maximum %d." +msgid "%s - %s" msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "不正なホームページ '%s'" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "名称未設定ページ" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "アバターを保存できません" +#: lib/action.php:430 +msgid "Home" +msgstr "ホーム" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/action.php:430 +msgid "Personal profile and friends timeline" 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 "" +#: lib/action.php:432 +msgid "Account" +msgstr "アカウント" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "メールアドレス、アバター、パスワード、プロパティの変更" -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "新しい通知" +#: lib/action.php:435 +msgid "Connect" +msgstr "接続" -#: actions/file.php:38 +#: lib/action.php:435 #, fuzzy -msgid "No notice" -msgstr "新しい通知" +msgid "Connect to services" +msgstr "サーバへリダイレクトできません : %s" -#: actions/file.php:42 -msgid "No attachments" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "有効なニックネームではありません。" +#: lib/action.php:445 +msgid "Logout" +msgstr "ログアウト" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "サイトからログアウト" + +#: lib/action.php:450 +msgid "Create an account" +msgstr "アカウントを作成" + +#: lib/action.php:453 +msgid "Login to the site" +msgstr "サイトへログイン" + +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "ヘルプ" + +#: lib/action.php:456 +msgid "Help me!" +msgstr "助けて!" + +#: lib/action.php:459 +msgid "Search" +msgstr "検索" + +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "人々かテキストを検索" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: lib/action.php:480 +#, fuzzy +msgid "Site notice" +msgstr "新しい通知" + +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/groupblock.php:95 +#: lib/action.php:612 #, fuzzy -msgid "User is already blocked from group." -msgstr "プロファイルがありません。" +msgid "Page notice" +msgstr "新しい通知" -#: actions/groupblock.php:100 +#: lib/action.php:714 #, fuzzy -msgid "User is not a member of group." -msgstr "そのプロファイルは送信されていません。" +msgid "Secondary site navigation" +msgstr "サブスクリプション" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "そのようなユーザはいません。" +#: lib/action.php:721 +msgid "About" +msgstr "解説" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +#: lib/action.php:723 +msgid "FAQ" +msgstr "よくある質問" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" +#: lib/action.php:730 +msgid "Privacy" +msgstr "プライバシー" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" +#: lib/action.php:732 +msgid "Source" +msgstr "ソース" + +#: lib/action.php:734 +msgid "Contact" +msgstr "連絡先" + +#: lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "突く" + +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +#: lib/action.php:767 +#, php-format msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" +"イクロブログサービスです。 " -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "ユーザを更新できません" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** はマイクロブログサービスです。 " -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動" +"いています。 ライセンス [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)。" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 +#: lib/action.php:785 #, fuzzy -msgid "Design preferences saved." -msgstr "設定が保存されました。" +msgid "Site content license" +msgstr "新しい通知" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "管理者" +#: lib/action.php:799 +msgid "license." +msgstr "ライセンス。" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/action.php:1062 #, fuzzy -msgid "No results." -msgstr "結果なし" +msgid "After" +msgstr "<< 前" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +#: lib/action.php:1070 +#, fuzzy +msgid "Before" +msgstr "前 >>" + +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/groupunblock.php:95 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "User is not blocked from group." -msgstr "プロファイルがありません。" - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +msgid "Provider" +msgstr "プロファイル" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 +#: lib/command.php:88 #, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" +msgid "Could not find a user with nickname %s" +msgstr "ユーザを更新できません" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#: lib/command.php:99 #, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgid "Nudge sent to %s" msgstr "" -#: actions/newnotice.php:208 lib/mediafile.php:147 +#: lib/command.php:126 +#, php-format msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "プロファイルを保存できません" - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" msgstr "" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/command.php:321 +#, php-format +msgid "Location: %s" msgstr "" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: actions/noticesearch.php:121 +#: lib/command.php:327 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +msgid "About: %s" msgstr "" -#: actions/noticesearch.php:124 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -"[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" -"することができます。ここで関連付ける OpenID を管理して下さい。" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "この通知へ返信" + +#: lib/command.php:441 #, fuzzy -msgid "View profile designs" -msgstr "プロファイル設定" +msgid "Error saving notice." +msgstr "通知を保存する際に問題が発生しました。" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:502 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Subscribed to %s" msgstr "" -#: actions/public.php:179 +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: lib/command.php:530 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." +msgid "Unsubscribed from %s" msgstr "" -#: actions/public.php:182 -msgid "Be the first to post!" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/publictagcloud.php:75 +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "OpenIDを作成できません : %s" + +#: lib/command.php:602 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/recoverpassword.php:152 -#, fuzzy +#: lib/command.php:613 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -"パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができま" -"す。" -#: actions/recoverpassword.php:158 +#: lib/common.php:191 #, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "確認されました。新しいパスワードを入力して下さい。" +msgid "No configuration file found. " +msgstr "確認コードがありません。" -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "パスワード回復のリクエストされました" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "確認コードにエラーがあります。" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#: lib/common.php:194 #, fuzzy -msgid "Subscribe to a remote user" -msgstr "購読が許可" +msgid "Go to the installer." +msgstr "サイトへログイン" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." +#: lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "そのような通知はありません。" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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." +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:176 -#, php-format +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "アップロード" + +#: lib/designsettings.php:109 msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "%sの通知フィード" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "%sの通知フィード" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "%sの通知フィード" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "パスワードの変更" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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. " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy -msgid "Admins" -msgstr "管理者" +#: lib/designsettings.php:191 +msgid "Content" +msgstr "内容" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "そのようなユーザはいません。" +msgid "Sidebar" +msgstr "検索" -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "%sの通知フィード" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "ログイン" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "この通知をお気に入りにする" + +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s は %2$s であなたの通知を聞いています。" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "データのエクスポート" -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "%sの通知フィード" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "%sの通知フィード" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "タグのフィルター" + +#: lib/galleryaction.php:131 +msgid "All" msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "ユーザを更新できません" - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." +#: lib/galleryaction.php:139 +msgid "Select tag to filter" msgstr "" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "ユーザを更新できません" +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "タグ" -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$ のステータス %2$s" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "マイクロブログ by %s" +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "移動" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "グループやトピックのホームページやブログの URL" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#: lib/groupeditform.php:168 #, fuzzy -msgid "License" -msgstr "ライセンス。" +msgid "Describe the group or topic" +msgstr "グループやトピックを140字以内記述" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "全てのサブスクリプション" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "グループやトピックを140字以内記述" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "プロファイル設定" +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "概要" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#: lib/groupeditform.php:179 +#, fuzzy msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "いる場所, 例えば \"City, State (or Region), Country\"" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/usergroups.php:153 +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "グループ" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "ブロック" + +#: lib/groupnav.php:101 #, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "そのプロファイルは送信されていません。" +msgid "%s blocked users" +msgstr "そのようなユーザはいません。" -#: actions/usergroups.php:158 +#: lib/groupnav.php:107 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" +msgid "Edit %s group properties" +msgstr "%s グループプロパティを編集" -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "ロゴ" -#: classes/File.php:137 classes/File.php:147 +#: lib/groupnav.php:113 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +msgid "Add or edit %s logo" +msgstr "%s ロゴの追加や編集" -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s ロゴの追加や編集" -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "通知を保存する際に問題が発生しました。" +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "メンバー数が多いグループ" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "投稿が多いグループ" + +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" +msgid "Tags in %s group's notices" +msgstr "%s グループの通知にあるタグ" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "このページはあなたが承認したメディアタイプでは利用できません。" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "プロファイルがありません。" +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "長すぎます。通知は最大 140 字までです。" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "不完全なアップロード。" -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "ファイルのアップロードでシステムエラー" -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "画像ではないかファイルが破損しています。" -#: lib/attachmentlist.php:278 +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "サポート外の画像形式です。" + +#: lib/imagefile.php:118 #, fuzzy -msgid "Provider" -msgstr "プロファイル" +msgid "Lost our file." +msgstr "そのような通知はありません。" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "新しい通知" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +#: lib/joinform.php:114 +msgid "Join" +msgstr "参加" -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "アップロード" +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "離れる" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "ユーザ名とパスワードでログイン" -#: lib/designsettings.php:139 -msgid "On" -msgstr "" +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "新しいアカウントでサインアップ" -#: lib/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/designsettings.php:156 -msgid "Turn background image on or off." +#: lib/mailbox.php:139 +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/designsettings.php:161 -msgid "Tile background image" -msgstr "" +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "から " -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "パスワードの変更" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "メールアドレス確認" -#: lib/designsettings.php:178 -msgid "Background" +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:191 -msgid "Content" -msgstr "内容" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s は %2$s であなたの通知を購読しています。" -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "検索" +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s は %2$s であなたの通知を聞いています。\n" +"\n" +"\t%3$s\n" +"\n" +"確かにあなたの,\n" +"%4$s.\n" + +#: lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "場所: %s\n" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "ログイン" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "ホームページ: %s\n" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" -#: lib/designsettings.php:248 -msgid "Restore default designs" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" msgstr "" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s の状態" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "あなたは %s に突かれています" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:466 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "ブロック" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "そのようなユーザはいません。" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" -#: lib/groupnav.php:119 +#: lib/mail.php:554 #, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "%s ロゴの追加や編集" +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s は %2$s であなたの通知を聞いています。" #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -6990,639 +4217,440 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"The notice is here:\n" "\n" -"\t%2$s\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mailbox.php:139 +#: lib/mediafile.php:147 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." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "コンテンツがありません!" - -#: lib/profileaction.php:177 -msgid "User ID" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "検索" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "ホームページのURLが不適切です。" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 +#: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy -msgid "No such page" -msgstr "そのような通知はありません。" +msgid "Could not determine file's mime-type!" +msgstr "ユーザを更新できません" -#: actions/apidirectmessage.php:89 +#: lib/mediafile.php:270 #, php-format -msgid "Direct messages from %s" +msgid " Try using another %s format." msgstr "" -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "長すぎます。通知は最大 140 字までです。" - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "サーバへリダイレクトできません : %s" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "バイオグラフィが長すぎます。(最長140字)" - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "既にログイン済みです。" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "サーバへリダイレクトできません : %s" +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "直接通知を送る" -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "そのプロファイルは送信されていません。" +#: lib/messageform.php:146 +msgid "To" +msgstr "" -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "OpenIDを作成できません : %s" +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "利用可能な文字" -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s グループ" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "通知を送る" -#: actions/apigrouplist.php:103 +#: lib/noticeform.php:158 #, php-format -msgid "Groups %s is a member of on %s." -msgstr "そのプロファイルは送信されていません。" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "このサイト上のグループを検索する" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "アバターが更新されました。" +msgid "What's up, %s?" +msgstr "最近どう %s?" -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "長すぎます。通知は最大 140 字までです。" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#: lib/noticelist.php:478 #, fuzzy -msgid "Unsupported format." -msgstr "サポート外の画像形式です。" +msgid "in context" +msgstr "コンテンツがありません!" -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "この通知へ返信" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "バイオグラフィが長すぎます。(最長140字)" +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "返信" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "このユーザを突く" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "突く" -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "マイクロブログ by %s" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "このユーザへ突きを送る" -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "リストされているユーザは存在しません。" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "プロファイル追加エラー" -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "認証されていません。" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "アバター追加エラー" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "リクエストトークンをアクセストークンに変換できません" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "リモートプロファイル追加エラー" -#: actions/finishremotesubscribe.php:114 +#: lib/oauthstore.php:345 #, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "予期せぬ OMB プロトコルのバージョンです。" +msgid "Duplicate notice" +msgstr "新しい通知" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "そのような通知はありません。" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "サブスクリプションを追加できません" -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "そのような通知はありません。" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "パーソナル" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "マイクロブログ by %s" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "返信" -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "このページはあなたが承認したメディアタイプでは利用できません。" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" -#: actions/login.php:259 actions/login.php:286 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "マイクロブログ by %s" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" -#: actions/noticesearchrss.php:91 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "検索語「%s」に一致するすべての更新" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" -#: actions/oembed.php:157 -msgid "content type " -msgstr "内容種別 " +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" -#: actions/oembed.php:160 -msgid "Only " +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" msgstr "" -#: actions/postnotice.php:90 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgid "Tags in %s's notices" msgstr "" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "140字以内で自己紹介" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "140字以内で自己紹介" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "サブスクリプション" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, php-format -msgid "Bio is too long (max %d chars)." -msgstr "自己紹介が長すぎます (最長140文字)。" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "すべての購読" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "購読者" -#: actions/remotesubscribe.php:168 +#: lib/profileaction.php:157 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" +msgid "All subscribers" +msgstr "購読者" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "リクエストトークンを取得できません" - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "%sの通知フィード" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "%sの通知フィード" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "%sの通知フィード" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "からのメンバー" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "%s への返信" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "" -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "%s のともだちのフィード" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "パブリック" -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "%s のともだちのフィード" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "ユーザグループ" -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "%s のともだちのフィード" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "最近のタグ" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "%sの通知フィード" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "人気" -#: actions/shownotice.php:90 +#: lib/searchaction.php:120 #, fuzzy -msgid "Notice deleted." -msgstr "通知" +msgid "Search site" +msgstr "検索" -#: actions/smssettings.php:91 +#: lib/searchaction.php:162 #, fuzzy -msgid "SMS is not available." -msgstr "このページはあなたが承認したメディアタイプでは利用できません。" - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "%sの通知フィード" +msgid "Search help" +msgstr "検索" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " -"キャンセルをクリックして下さい。" -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "通知" -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "このサイト上のグループを検索する" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "名称未設定のセクション" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:322 +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "リモートサブスクライブ" + +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "リモートサブスクライブ" + +#: lib/subgroupnav.php:99 #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Groups %s is a member of" msgstr "" -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "アバターURL を読み取れません '%s'" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "不正な画像形式。'%s'" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(なし)" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "サーバへリダイレクトできません : %s" +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/action.php:785 +#: lib/subs.php:52 #, fuzzy -msgid "Site content license" -msgstr "新しい通知" - -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "ユーザを更新できません" +msgid "User has blocked you." +msgstr "プロファイルがありません。" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "購読していません!" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "サブスクリプションを削除できません" -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" +#: lib/tagcloudsection.php:56 +msgid "None" msgstr "" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "この通知へ返信" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "上位投稿者" -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "通知を保存する際に問題が発生しました。" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "このユーザからのサブスクライブを解除する" -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "確認コードがありません。" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "サブスクライブ中止" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "アバター" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: lib/common.php:194 +#: lib/userprofile.php:248 #, fuzzy -msgid "Go to the installer." -msgstr "サイトへログイン" +msgid "Edit profile settings" +msgstr "プロファイル設定" -#: lib/galleryaction.php:139 -msgid "Select tag to filter" +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "グループやトピックを140字以内記述" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "グループやトピックを140字以内記述" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "新しい通知" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "数秒前" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%1$s は %2$s であなたの通知を聞いています。" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "約 1 分前" -#: lib/mail.php:556 +#: lib/util.php:848 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "about %d minutes ago" +msgstr "約 %d 分前" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "約 1 時間前" -#: lib/mail.php:613 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgid "about %d hours ago" +msgstr "約 %d 時間前" -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "から " +#: lib/util.php:854 +msgid "about a day ago" +msgstr "約 1 日前" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "約 %d 日前" -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "ユーザを更新できません" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "約 1 ヵ月前" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "新しい通知" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "約 %d ヵ月前" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "不正な通知内容" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "約 1 年前" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "OpenIDを作成できません : %s" +msgid "%s is not a valid color!" +msgstr "ホームページのURLが不適切です。" -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "長すぎます。通知は最大 140 字までです。" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "" -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "" + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/ko/LC_MESSAGES/statusnet.mo b/locale/ko/LC_MESSAGES/statusnet.mo index 5b6fe18bf..bb916d356 100644 Binary files a/locale/ko/LC_MESSAGES/statusnet.mo and b/locale/ko/LC_MESSAGES/statusnet.mo differ diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 9982d66ae..1c8b2350b 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -5,4537 +5,1708 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:45+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:26+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "스트림에서 \"%s\" 검색" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "그러한 태그가 없습니다." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "다음에서:" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "그러한 사용자는 없습니다." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / %2$s에게 답신 업데이트" +msgid "%s and friends, page %d" +msgstr "%s 와 친구들, %d 페이지" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다." +msgid "%s and friends" +msgstr "%s 및 친구들" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s님이 귀하를 %2$s(%3$s)에 초대하였습니다.\n" -"\n" -"%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽" -"을 수 있는 마이크로블로깅 서비스 입니다.\n" -"\n" -"자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같" -"은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 장소입니다.\n" -"%1$s님이 말하기를:\n" -"%4$s\n" -"\n" -"%1$s님의 %2$s 프로파일을 보실 수 있습니다:\n" -"\n" -"%5$s\n" -"\n" -"이 서비스를 이용하시려면 밑의 링크를 눌러 초대에 응하십시오.\n" -"\n" -"%6$s\n" -"\n" -"아니면 이 메시지를 무시하시면 됩니다. 여기까지 읽어 주셔서 감사합니다.\n" -"\n" -"%2$s 보냄\n" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s의 친구들을 위한 피드" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s의 친구들을 위한 피드" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s의 친구들을 위한 피드" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" -"\t%3$s\n" -"\n" -"그럼 이만,%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s의 상태 (%2$s에서)" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s 퍼블릭 스트림" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s 및 친구들" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "%s 공개 타임라인" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s 상태" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API 메서드를 찾을 수 없습니다." -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s 타임라인" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "이 메서드는 등록을 요구합니다." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "모두로부터의 업데이트 %s개!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습" -"니다.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " -"마이크로블로깅서비스입니다." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "이용자가 프로필을 가지고 있지 않습니다." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "사용자 차단에 실패했습니다." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". 가입자는 이름이나 별명으로 기재되어야 합니다." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "사용자 차단 해제에 실패했습니다." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "메시지 내용이 없습니다!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 " -"입력." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6글자 이상" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "받는 사용자가 없습니다." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6글자 이상, 잊어 버리지 마십시오!" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6글자 이상이 필요합니다." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "%s에게 직접 메시지" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전" -"달할 수 있습니다." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드" -"와 사용법을 확인하여 주시기 바랍니다." +msgid "All the direct messages sent from %s" +msgstr "%s에서 보낸 모든 직접 메시지" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" -"드와 사용법을 확인하여 주시기 바랍니다." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "%s에게 직접 메시지" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API 메서드를 찾을 수 없습니다." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "%s에게 모든 직접 메시지" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API 메서드를 구성중 입니다." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "그 ID로 발견된 상태가 없습니다." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "정보" +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "이 게시글은 이미 좋아하는 게시글입니다." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "수락" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "좋아하는 게시글을 생성할 수 없습니다." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "추가" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "이 메시지는 favorite이 아닙니다." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "OpenID 추가" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "favorite을 삭제할 수 없습니다." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "OpenID 추가 또는 삭제" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "주소" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "따라가실 수 없습니다 : 사용자가 없습니다." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "초청할 친구들의 주소 (한 줄에 한 명씩)" - -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "모든 예약 구독" - -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "%s의 모든 업데이트" - -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "\"%s\" 에 일치하는 모든 업데이트" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "이미 로그인 하셨습니다." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "이미 구독하고 있습니다." - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "정말로 통지를 삭제하시겠습니까?" - -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "구독을 허가" - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 이용하지 마십시오!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "나에게 구독하는 사람에게 자동 구독 신청" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "아바타" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "아바타가 업데이트 되었습니다." - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항" -"목을 추가하셨습니까?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 " -"주시기 바랍니다." - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "이 전화 번호는 인증 대기중입니다." - -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "뒤로 >>" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "자기소개" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "자기소개가 너무 깁니다. (최대 140글자)" - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "이 통지를 지울 수 없습니다." - -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "새 비밀번호를 저장 할 수 없습니다." - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "취소" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "OpenID consumer object를 생성할 수 없습니다." - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "그 Jabbar ID를 정규화 할 수 없습니다." - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "그 이메일 주소를 정규화 할 수 없습니다." - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "변환" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "이메일 처리 변경" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "비밀번호 바꾸기" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "비밀번호 바꾸기" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "프로필 세팅 바꾸기" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "인증" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "주소 인증" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "인증 취소" - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "인증 코드" - -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "인증 코드가 없습니다." - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아" -"래의 일을 할 수 있습니다...\n" -"\n" -"* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n" -"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통" -"보를 받아 보십시오.\n" -"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 " -"분들을 찾아 보십시오. \n" -"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에" -"게 자신을 알려보십시오. \n" -"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시" -"오. \n" -"\n" -"다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "연결" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "기존의 계정으로 접속" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "연락하기" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "OpenID를 작성 할 수 없습니다 : %s" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 #: actions/apifriendshipscreate.php:118 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "따라가실 수 없습니다 : %s 님은 이미 리스트에 있습니다." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "따라가실 수 없습니다 : 사용자가 없습니다." - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "서버에 재접속 할 수 없습니다 : %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "아바타(Avatar)를 저장 할 수 없습니다." - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "새 프로필 정보를 저장 할 수 없습니다." - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "다른 사람을 구독 하실 수 없습니다." - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "구독 하실 수 없습니다." - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니다." - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "이메일 승인을 삭제 할 수 없습니다." - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "예약 구독을 삭제 할 수 없습니다." - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "어떠한 상태도 찾을 수 없습니다." - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "리퀘스트 토큰을 취득 할 수 없습니다." - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "확인 코드를 추가 할 수 없습니다." - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "예약 구독을 추가 할 수 없습니다." - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "프로필을 저장 할 수 없습니다." - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "사용자 기록을 업데이트 할 수 없습니다." - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "사용자를 업데이트 할 수 없습니다." - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "생성" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "이 닉네임으로 새 사용자를 생성" - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "새 계정을 생성" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "이미 사용자가 있는 OpenID로 새 계정을 생성" - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "확인된 최신의 Jabber/GTalk 계정" - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "확인된 최신의 SMS가 가능한 휴대폰 번호" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "확인된 최신의 이메일 계정" - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "최신" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "통지 삭제" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "140자 이내에서 자기 소개" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "이메일" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "이메일 주소" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "이메일 세팅" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "이메일 주소가 이미 존재 합니다." - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "이메일 주소 확인서" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "\"UserName@example.org\" 와 같은 이메일 계정" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "이메일 주소" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "별명이나 이메일 계정을 입력하십시오." - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "휴대폰으로 받으신 인증번호를 입력하십시오." - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "인증 토큰 에러" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "OpenID로 접속 오류" - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "사용자의 접속 오류" - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "아바타 추가 오류" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "새 프로필 추가 오류" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "리모트 프로필 추가 오류" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "주소 확인 저장 에러" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "리모트 프로필 저장 오류" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "프로필 저장 오류" - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "사용자 저장 오류" - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "사용자 저장 오류; 무효한 사용자" - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "사용자 세팅 오류" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "프로필 업데이트 오류" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "리모트 프로필 업데이트 오류" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "확인 코드 오류" - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "존재하는 별명" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "자주 묻는 질문" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "아바타 업데이트 실패" - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "%s의 친구들을 위한 피드" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "%s의 답신 피드" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "%s 태그의 피드" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "통지들의 내용 찾기" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "이 사이트에 있는 사람 찾기" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "실명" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "실명이 너무 깁니다. (최대 255글자)" - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "도움말" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "홈" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "홈페이지" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "홈페이지 주소형식이 올바르지 않습니다." - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "이메일로 통보를 포스트 하길 원합니다." - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "메신저" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "메신저 주소" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "메신저 설정" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하" -"여 입력해 주세요." - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "받은 이메일" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "받은 이메일 계정 삭제" - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "기존 비밀 번호가 틀렸습니다" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "틀린 계정 또는 비밀 번호" - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "가입하신 이메일로 비밀 번호 재발급에 관한 안내를 보냈습니다." - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "옳지 않은 아바타 URL '%s'" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "옳지 않은 이메일 주소 : %s" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "옳지 않은 홈페이지 '%s'" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "옳지 않은 라이선스 URL '%s'" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "옳지 않은 통지 내용" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "옳지 않은 통지 uri" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "옳지 않은 통지 url" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "옳지 않은 프로필 URL '%s'." - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "옳지 않은 프로필 URL (나쁜 포멧)" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "서버에 의하여 돌아온 옳지 않은 프로필 URL " - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "옳지 않은 크기" - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "초대권을 보냈습니다" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "다음 사람들에게 초대권을 보냈습니다:" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "초대" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "새 사용자를 초대" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전" -"을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." -"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니다." - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 " -"GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "언어" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "언어가 너무 깁니다. (최대 50글자)" - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "위치" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "위치가 너무 깁니다. (최대 255글자)" - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "로그인" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "[OpenID](%%doc.openid%%)로 로그인하세요." - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" -"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" -"용해 보세요." - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "로그아웃" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "더욱 긴 이름을 요구합니다." - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "비밀 번호를 잊으셨나요?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "포스팅을 위한 새 이메일 계정의 생성; 전 이메일 계정은 취소." - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "%%site.name%%에서 어떻게 이메일을 받을지 정하십시오." - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "가입한 때" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "%s의 마이크로블로그" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "귀하의 휴대폰의 통신회사는 무엇입니까?" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "나의 글과 파일의 라이선스는 다음과 같습니다 " - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "새로운" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "%s에 포스팅 할 새로운 이메일 주소" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "새로운 이메일 주소가 추가 되었습니다." - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "새로운 별명" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "새로운 통지" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "새로운 비밀 번호" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "" -"새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "별명" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니" -"다." - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "별명 사용이 불가 합니다." - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "따라가고 싶은 사용자의 별명" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "별명 또는 이메일" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "아니오" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Jabber ID가 아닙니다." - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "허용되지 않는 요청입니다." - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "통신회사가 선택 되지 않았습니다." - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "코드가 입력 되지 않았습니다." - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "확인 코드가 없습니다." - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "내용이 없습니다!" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "이메일이 추가 되지 않았습니다." - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "id가 없습니다." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "이메일 주소가 없습니다." - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "리모트 사용자의 별명이 없습니다." - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "별명이 없습니다." - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "취소 할 대기중인 인증이 없습니다." - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "휴대폰 번호가 없습니다." - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "서버로부터 제공되는 프로필 URL가 없습니다." - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "그 사용자는 등록된 메일주소가 없습니다." - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "리퀘스트가 없습니다!" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "결과 없음" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "사이즈가 없습니다." - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "그 ID로 발견된 상태가 없습니다." - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "발견된 ID의 상태가 없습니다." - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "그러한 OpenID는 없습니다." - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "그러한 문서는 없습니다." - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "그러한 통지는 없습니다." - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "그러한 복구 코드는 없습니다." - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "그러한 예약 구독은 없습니다." - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "그러한 사용자는 없습니다." - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "그러한 이메일 주소나 계정을 가진 사용자는 없습니다." - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "표시 할 사용자가 없습니다." - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "복구 코드가 아닙니다." - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "가입된 사용자가 아닙니다." - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "지원하는 형식의 데이터가 아닙니다." - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "유효한 Jabber ID가 아닙니다." - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "유효한 OpenID가 아닙니다." - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "유효한 이메일 주소가 아닙니다." - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "유효한 이메일 주소가 아닙니다." - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "유효한 별명이 아닙니다" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "유효한 프로필 URL이 아닙니다. (잘못된 서비스)" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "유효한 프로필 URL이 아닙니다. (XRDS의 정의가 없습니다)" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "그림 파일이 아니거나 손상된 파일 입니다." - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "인증이 되지 않았습니다." - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "예상치 못한 반응 입니다." - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "찾지 못함" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "로그인하고 있지 않습니다." - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "구독하고 있지 않습니다!" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "통지 검색" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "%s의 통지 피드" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "통지에 프로필이 없습니다." - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "통지" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "%s 태그된 통지" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "기존 비밀 번호" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID 계정 셋업" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID 자동 로그인" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID 로그인" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID 로의 인증이 취소되었습니다." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID 로의 인증에 실패 : %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID 장해 : %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID 는 제거되었습니다." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID 설정" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "초대장에 메시지 첨부하기." - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "불완전한 업로드." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "비밀 번호" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "비밀 번호가 일치하지 않습니다." - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "비밀 번호는 6자 이상이어야 합니다." - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "비밀 번호 복구가 요청되었습니다." - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "비밀 번호 저장" - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "비밀 번호가 일치하지 않습니다." - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "사람들" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "사람 찾기" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "사람 찾기" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "개인적인" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "개인적인 메시지" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요." - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" -"\"를 클릭해 주세요." - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "설정" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "설정이 저장되었습니다." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "언어 설정" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "개인정보 취급방침" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "통지를 저장하는데 문제가 발생했습니다." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "프로필" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "프로필 URL" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "프로필 세팅" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "알 수 없는 프로필" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "퍼블릭 스트림 피드" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "퍼블릭 타임라인" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "이메일 주소를 위한 MicroID의 생성" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "최근 태그" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "복구" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "비밀 번호 복구" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "알 수 없는 취소를 위한 리커버리 코드" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "회원가입" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "가입이 허용되지 않습니다." - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "회원 가입이 성공적입니다." - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "거부" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "자동 로그인" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "리모트 프로필과 일치하는 것이 없습니다." - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "리모트 구독 예약" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "삭제" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "OpenID 삭제" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -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를 추가해 주십시오." - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "답신" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "%s에 답신" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "초기화" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "비밀 번호 초기화" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS 휴대폰 번호" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS 세팅" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS 인증" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "위와 같은 비밀 번호" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "위와 같은 비밀 번호. 필수 사항." - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "저장" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "검색" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "스트림 피드를 검색" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어" -"도 3글자 이상 필요." - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " -"적어도 3글자 이상 필요." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "통신 회사를 선택 하세요." - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "보내기" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "새로운 통지를 올리려면 이 주소로 메일을 보내십시오/" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "새로운 예약 구독의 통지를 이메일로 보내주세요." - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Jabber/GTalk 로 통지를 보내주세요." - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있" -"습니다." - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "설정" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "설정 저장" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "지난 주에 가장 인기 있었던 태그를 표시합니다" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "이미 다른 사람이 이 OpenID를 사용하고 있습니다." - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "예측 하지 못한 사태가 발생했습니다." - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "죄송합니다. 이메일이 허용되지 않습니다." - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "죄송합니다. 귀하의 이메일이 아닙니다." - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "소스 코드" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "통계" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "저장된 OpenID를 찾을 수 없습니다." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "구독" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "구독자" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "구독 허가" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "구독 거부" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "구독" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "파일을 올리는데 시스템 오류 발생" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "태그" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "문자" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "문자 검색" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "그 OpenID 는 귀하의 것이 아닙니다." - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "그 주소는 이미 승인되었습니다." - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "그 인증 코드는 귀하의 것이 아닙니다!" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "그 이메일 주소는 이미 다른 사용자의 소유입니다." - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "파일 사이즈가 너무 큽니다." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "그 Jabber ID는 이미 귀하의 것입니다." - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "그 이메일 주소는 이미 귀하의 것입니다." - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "그 휴대폰 번호는 이미 귀하의 것입니다." - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "그 Jabber ID는 귀하의 것이 아닙니다." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "그 이메일 주소는 귀하의 것이 아닙니다." - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "그 휴대폰 번호는 귀하의 것이 아닙니다." - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "옳지 않은 메신저 계정 입니다." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "옳지 않은 인증 번호 입니다." - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "그 휴대폰 번호는 이미 다른 사용자의 것입니다." - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "너무 깁니다. 통지의 최대 길이는 255글자 입니다." - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "\"%s\" 는 귀하의 계정으로 승인되었습니다." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "주소가 삭제되었습니다." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" -"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" -"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "%s의 통지를 받고 있는 사람" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "귀하의 통지를 받고 있는 사람" - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "%s님이 받고 있는 통지의 사람" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "귀하의 통지를 받고 있는 사람" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "자동 구독 신청이 된 사용자:" +msgid "Could not follow user: %s is already on your list." +msgstr "따라가실 수 없습니다 : %s 님은 이미 리스트에 있습니다." -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "이 인증 코드는 오래됐습니다. 다시 발급 받아 주십시오." +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "따라가실 수 없습니다 : 사용자가 없습니다." -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -"이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세" -"요. OpenID 프로바이더에 전송 됩니다." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성" -"하거나 기존의 계정으로 연결 하실 수 있습니다." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "이 메서드는 등록 또는 삭제를 요구합니다." +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "두 개의 사용자 ID나 대화명을 입력해야 합니다." -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "이 메서드는 등록을 요구합니다." +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "공개 stream을 불러올 수 없습니다." -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "어떠한 상태도 찾을 수 없습니다." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "타임존" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "새 그룹을 만들 수 없습니다." -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "타임존이 설정 되지 않았습니다." +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "좋아하는 게시글을 생성할 수 없습니다." -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"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을 입력하십시오." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "그룹 맴버십을 세팅할 수 없습니다." -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "두 개의 사용자 ID나 대화명을 입력해야 합니다." +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니" +"다." -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "유효한 별명이 아닙니다" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "잘못된 폼 제출" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "홈페이지 주소형식이 올바르지 않습니다." -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "잘못된 비밀 번호 지정" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "실명이 너무 깁니다. (최대 255글자)" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "알려지지 않은 행동" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "설명이 너무 길어요. (최대 140글자)" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "OMB 프로토콜의 알려지지 않은 버전" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "위치가 너무 깁니다. (최대 255글자)" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." msgstr "" -"따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다" -"음 라이선스로 이용할 수 있습니다: " -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "인식되지않은 주소유형 %s" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "유효하지 않은태그: \"%s\"" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "구독 해제" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "지원되지 않는 OMB 버전" +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "지원하지 않는 그림 파일 형식입니다." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "당신은 이미 이 그룹의 멤버입니다." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "SMS에 의한 업데이트" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "인스턴트 메신저에 의한 업데이트" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "그룹 %s에 %s는 가입할 수 없습니다." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." + +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "%2$s에 있는 %1$s의 업데이트!" +msgid "%s groups" +msgstr "%s 그룹" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "올리기" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "그룹 행동" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. " -"사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 라이선스하에 있게됩" -"니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s 그룹" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "새 프로필 사진 올리기" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s 그룹들은 의 멤버입니다." -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "다음 양식을 이용해 친구와 동료를 이 서비스에 초대하십시오." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "이 메서드는 등록 또는 삭제를 요구합니다." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요." +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "살펴 보고 있는 사용자가 없습니다." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "아바타가 업데이트 되었습니다." -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "이용자가 프로필을 가지고 있지 않습니다." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "발견된 ID의 상태가 없습니다." -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "이용자 닉네임" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "이용자가 없습니다." +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "찾지 못함" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "당신이 주로 생활하는 곳이 어떤 타임존입니까?" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "지원하지 않는 그림 파일 형식입니다." + +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "What's up, %s?" -msgstr "뭐하세요? %?" +msgid "%s / Favorites from %s" +msgstr "%s / %s의 좋아하는 글들" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라" +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format -msgid "Wrong image type for '%s'" -msgstr "%S 잘못된 그림 파일 타입입니다. " +msgid "%s timeline" +msgstr "%s 타임라인" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format -msgid "Wrong size image at '%s'" -msgstr "%S 잘못된 그림 파일 사이즈입니다." +msgid "Updates from %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "네, 맞습니다." +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / %2$s에게 답신 업데이트" + +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "당신은 이미 오픈ID를 가지고 있습니다." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s 공개 타임라인" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "모두로부터의 업데이트 %s개!" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "당신은 이미 로그인되어 있습니다." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "%s 태그된 통지" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "당신은 다음 사용자를 이미 구독하고 있습니다." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "당신은 지정한 회원과 친구가 아닙니다." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "찾을 수가 없습니다." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "여기서 비밀번호를 변경할 수 있습니다. 좋은 번호를 선택하세요." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "그러한 문서는 없습니다." -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "계정을 새로 만들면 새로운 게시글을 작성할 수 있습니다." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "별명이 없습니다." -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "사이즈가 없습니다." -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니" -"다." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "옳지 않은 크기" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아" -"래 당신의 주소와 환경설정을 조정하세요." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "아바타" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이" -"트 할 수 있습니다. " +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "당신은 로컬 구독을 사용할 수 있습니다." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "프로필 매칭이 없는 사용자" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "아바타 설정" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "당신은 프로필을 우리에게 전송하지 않았다." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "원래 설정" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" -"오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "미리보기" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "삭제" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "로그인을 해야 다른 사용자를 %s에 초대할 수 있습니다." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "올리기" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니" -"다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "자르기" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "당신은 인증되었습니다. 아래 새 비밀번호를 입력하세요." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "세션토큰에 문제가 있습니다. 다시 시도해주세요." -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "당신의 오픈ID URL" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "잘못된 폼 제출" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "이 서버에서 당신의 닉네임 혹은 당신의 등록된 이메일주소" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "당신의 아바타가 될 이미지영역을 지정하세요." -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " -"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "파일 데이터를 잃어버렸습니다." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "몇 초 전" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "아바타가 업데이트 되었습니다." -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "%d일 전" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "아바타 업데이트 실패" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "%d시간 전" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "아바타가 업데이트 되었습니다." -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "%d분 전" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "닉네임이 없습니다" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "%d달 전" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "그러한 그룹이 없습니다." -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "하루 전" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "이용자 프로필" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "1분 전" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s 와 친구들, %d 페이지" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "1달 전" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "이 그룹의 회원리스트" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "1년 전" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "사용자 차단 해제에 실패했습니다." -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "1시간 전" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "차단해제" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "삭제" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "이 사용자를 차단해제합니다." -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "답장" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "로그인하고 있지 않습니다." -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "답장" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "프로필을 지정하지 않았습니다." -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "위 비밀번호와 동일하게" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "해당 ID의 프로필이 없습니다." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "지원하지 않는 종류의 파일입니다" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "<< 뒤에" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "사용자를 차단합니다." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "이 메시지는 favorite이 아닙니다." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "favorite을 삭제할 수 없습니다." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "아니오" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "좋아합니다" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "이 그룹의 회원리스트" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "누군가 내 글을 좋아하는 게시글로 추가했을때, 이메일을 보냅니다." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "네, 맞습니다." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "이 그룹의 회원리스트" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "이 게시글은 이미 좋아하는 게시글입니다." +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "당신은 이미 이 사용자를 차단하고 있습니다." -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "좋아하는 게시글을 생성할 수 없습니다." +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "정보차단을 저장하는데 실패했습니다." -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "좋아하는 게시글 취소" +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "사진" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "%s 좋아하는 게시글" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "확인 코드가 없습니다." -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "%s의 좋아하는 게시글의 피드" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "인증 코드가 없습니다." -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "%s의 받은쪽지함 - %d 페이지" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "그 인증 코드는 귀하의 것이 아닙니다!" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/confirmaddress.php:90 #, php-format -msgid "Inbox for %s" -msgstr "%s의 받은쪽지함" +msgid "Unrecognized address type %s" +msgstr "인식되지않은 주소유형 %s" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "당신의 받은 쪽지함입니다. 당신이 받은 비밀 메시지가 있습니다." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "그 주소는 이미 승인되었습니다." -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s 사용자가 %2$s에 (%3$s) 초대했습니다.\n" -"\n" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "사용자를 업데이트 할 수 없습니다." + +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "이메일 승인을 삭제 할 수 없습니다." -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "앞으로 자동 로그인을 하겠습니다." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "주소 인증" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "보안의 이유로, 재 입력을 해주세요." +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "\"%s\" 는 귀하의 계정으로 승인되었습니다." -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "당신의 계정과 비밀번호로 로그인하세요." +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "인증 코드" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "통지" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "수신자를 지정하지 않았습니다." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "그러한 통지는 없습니다." -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "이 통지를 지울 수 없습니다." -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" +"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "그러한 사용자가 없습니다." +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "통지 삭제" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "새로운 메시지입니다." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "정말로 통지를 삭제하시겠습니까?" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "프로필매칭 없이 바로 글을 씁니다." +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "이 통지를 지울 수 없습니다." -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "이 게시글 삭제하기" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "만약 당신계정에 오픈ID를 추가하길 원한다면," +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "당신의 유일한 오픈ID를 제거하면 로그인이 불가능합니다." +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "이 메시지는 favorite이 아닙니다." -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "당신의 계정에서 오픈ID를 삭제할 수 있습니다." +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "좋아하는 게시글로 추가하기" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "%s의 보낸쪽지함 - page %d" +#: actions/doc.php:69 +msgid "No such document." +msgstr "그러한 문서는 없습니다." -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/editgroup.php:56 #, php-format -msgid "Outbox for %s" -msgstr "%s의 보낸쪽지함" +msgid "Edit %s group" +msgstr "%s 그룹 편집" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "당신의 보낸 쪽지함입니다. 이곳엔 당신이 보냈던 비밀 쪽지가 있습니다." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "이름, 장소, 흥미로 %%site.name%%에서 사람들을 찾아보세요." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "당신은 여기에 당신의 개인적인 프로필을 업데이트 할 수 있습니다." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "다음 양식을 이용해 그룹을 편집하십시오." -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "프로필 매칭이 없는 사용자" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "설명이 너무 길어요. (최대 140글자)" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "이 확인 코드는 너무 오래되었습니다." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "그룹을 업데이트 할 수 없습니다." -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "만약 당신이 잊어버리거나 잃어버린다면" +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "옵션들이 저장되었습니다." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "당신은 인증되었습니다. 입력하세요." +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "이메일 세팅" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "이 서버에서 당신의 닉네임" +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "%%site.name%%에서 어떻게 이메일을 받을지 정하십시오." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "비빌번호 복구 방법 안내" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "주소" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "새 비밀번호를 성공적으로 저장했습니다." +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "확인된 최신의 이메일 계정" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "비밀번호는 6자리 이상이어야 합니다." +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "삭제" -#: actions/register.php:216 -#, php-format +#: actions/emailsettings.php:113 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하" -"실 수 있습니다..." - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(당신은 일시적으로 이메일로 메시지를 받아야 한다." - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "구독하기 위해 당신은 로그인할 수 있습니다. (%%action,login%%)," - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "%s의 좋아하는 게시글을 위한 피드" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "좋아하는 게시글을 복구할 수 없습니다." - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "그러한 메시지가 없습니다." - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "오직 발송자가 수신자가 이 메시지를 읽는것이 좋습니다." - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "%2$s에서 %1$s까지 메시지" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "%1$s에서 %2$s까지 메시지" +"이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 " +"주시기 바랍니다." -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "메시지 전송하기" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "취소" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "당신의 폰을 위한 모바일 전송" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "이메일 주소" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "%s에게 직접 메시지" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "\"UserName@example.org\" 와 같은 이메일 계정" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "%s에게 모든 직접 메시지" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "추가" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "당신이 보낸 직접 메시지" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "받은 이메일" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "%s에서 보낸 모든 직접 메시지" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "새로운 통지를 올리려면 이 주소로 메일을 보내십시오/" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "메시지 내용이 없습니다!" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "포스팅을 위한 새 이메일 계정의 생성; 전 이메일 계정은 취소." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "받는 사용자가 없습니다." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "새로운" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다." +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "설정" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / %s의 좋아하는 글들" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "새로운 예약 구독의 통지를 이메일로 보내주세요." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "누군가 내 글을 좋아하는 게시글로 추가했을때, 이메일을 보냅니다." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s 사용자가 %2$s의 귀하의 글을 좋아하는 글로 추가했습니다.\n" -"\n" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" -"다." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "친구들이 내게 이메일이나 쪽지를 보낼 수 있도록 허용합니다." -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "트위터 환경설정" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "트위터 계정" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "현재 유효한 트위터 계정" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "트위터 사용자이름" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "공백을 없애주세요." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "트위터 비밀번호" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "자동으로 트위터에 게시글을 보냅니다." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "트위터에 로컬 \"@\"답장으로 보냅니다." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "여기에서 내 트위터 친구들을 구독합니다." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, " -"최대 15자 이내이어야 합니다." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "이메일로 통보를 포스트 하길 원합니다." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "트위터 자격을 증명할 수 없습니다." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "이메일 주소를 위한 MicroID의 생성" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "트위터로부터 \"%s\"를 위한 계정정보를 불러올 수 없습니다." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "저장" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "트위터 환경설정을 저장할 수 없습니다." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "설정이 저장되었습니다." -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "트위터 환결설정이 저장되었습니다." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "이것은 당신의 트위터 계정이 아닙니다." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "트위터 사용자를 제거할 수 없습니다." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "트위터 계정이 제거되었습니다." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "트위터 환경설정을 저장할 수 없습니다." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "이메일이 추가 되지 않았습니다." -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "트위터 환경설정이 저장되었습니다." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "그 이메일 주소를 정규화 할 수 없습니다." -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "이 상세설정들을 체크해주세요." +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "유효한 이메일 주소가 아닙니다." -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "가입이 승인되었습니다." +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "그 이메일 주소는 이미 귀하의 것입니다." -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "이 구독이 거절되었습니다." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "그 이메일 주소는 이미 다른 사용자의 소유입니다." -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "실행결과" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "확인 코드를 추가 할 수 없습니다." -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "실행 완료" +#: actions/emailsettings.php:358 +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 "" +"추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드" +"와 사용법을 확인하여 주시기 바랍니다." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "실행 실패" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "취소 할 대기중인 인증이 없습니다." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "죄송합니다. 이 명령은 아직 실행되지 않았습니다." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "옳지 않은 메신저 계정 입니다." -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "구독: %1$s\n" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "인증 취소" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "이용자의 지속적인 게시글이 없습니다." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "그 이메일 주소는 귀하의 것이 아닙니다." -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "게시글이 좋아하는 글로 지정되었습니다." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "주소가 삭제되었습니다." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "이메일 주소가 없습니다." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "전체이름: %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "사용자 기록을 업데이트 할 수 없습니다." -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "위치: %s" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "받은 이메일 계정 삭제" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "홈페이지: %s" +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "새로운 이메일 주소가 추가 되었습니다." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "자기소개: %s" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "인기있는 게시글" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 +#: actions/favorited.php:67 #, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." +msgid "Popular notices, page %d" +msgstr "인기있는 게시글, %d 페이지" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "%s에게 보낸 직접 메시지" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "사이트에서 지금 가장 인기있는 게시글" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "직접 메시지 보내기 오류." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -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 "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/favorited.php:156 #, php-format -msgid "Subscribed to %s" -msgstr "%s에게 구독되었습니다." - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오." +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 #, php-format -msgid "Unsubscribed from %s" -msgstr "%s에서 구독을 해제했습니다." - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "명령이 아직 실행되지 않았습니다." +msgid "%s's favorite notices" +msgstr "%s 님의 좋아하는 글들" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "알림끄기." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "알림을 끌 수 없습니다." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "이 게시글은 이미 좋아하는 게시글입니다." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "알림이 켜졌습니다." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "좋아하는글 취소" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "알림을 켤 수 없습니다." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "인기있는 회원" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "명령: \n" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "인기있는 회원, %d페이지" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "메시지를 삽입할 수 없습니다." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "%s의 훌륭한 회원의 일부 선택" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "새로운 통지" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "시스템에 프로필 매칭이 없는 사용자" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "새로운 통지" -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" +#: actions/file.php:42 +msgid "No attachments" msgstr "" -"당신은 %1$s에 새 포스팅 주소를 가진다. \n" -"\n" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -"%1$s(%2$s)님이 당신에게 비밀 메시지를 보냈습니다 : \n" -" \n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "예상치 못한 반응 입니다." -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "이 양식은 자동적으로 스스로 제출됩니다." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "살펴 보고 있는 사용자가 없습니다." -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "좋아하는 글들" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "당신은 로컬 구독을 사용할 수 있습니다." -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "%s 님의 좋아하는 글들" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "이 회원은 구독으로부터 당신을 차단해왔다." -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "이용자" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "인증이 되지 않았습니다." -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "받은 쪽지함" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니다." -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "당신의 받은 메시지들" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "OMB 프로토콜의 알려지지 않은 버전" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "보낸 쪽지함" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "리모트 프로필 업데이트 오류" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "당신의 보낸 메시지들" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "그러한 그룹이 없습니다." -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "트위터" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "그러한 통지는 없습니다." -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "트위터 통합옵션" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "파일을 잃어버렸습니다." -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "에게" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "프로필을 지정하지 않았습니다." -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "메시지를 분리할 수 없습니다." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "회원이 당신을 차단해왔습니다." -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, php-format -msgid "%s and friends, page %d" -msgstr "%s 와 친구들, %d 페이지" +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "사용자를 차단합니다." -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "아바타 설정" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "원래 설정" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "미리보기" +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "ID가 없습니다." -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "자르기" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "당신의 세션토큰에 문제가 있습니다." - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "당신의 아바타가 될 이미지영역을 지정하세요." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "그룹" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "파일 데이터를 잃어버렸습니다." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "파일을 잃어버렸습니다." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "사용자를 업데이트 할 수 없습니다." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "알 수 없는 종류의 파일입니다" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "트위터 환경설정을 저장할 수 없습니다." -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "프로필을 지정하지 않았습니다." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "싱크설정이 저장되었습니다." -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "해당 ID의 프로필이 없습니다." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "그룹 로고" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "사용자를 차단합니다." +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "이 사용자를 차단하고 싶은 게 맞습니까?" +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "당신의 아바타가 될 이미지영역을 지정하세요." -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "당신은 이미 이 사용자를 차단하고 있습니다." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "로고를 업데이트했습니다." -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "정보차단을 저장하는데 실패했습니다." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "로고 업데이트에 실패했습니다." -#: actions/confirmaddress.php:159 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format -msgid "The address \"%s\" has been " -msgstr "\\\"%s\\\" 는 귀하의 계정으로 승인되었습니다." - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "당신은 영구적으로 이 게시글을 삭제하려고 합니다." - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "좋아하는 게시글로 추가하기" +msgid "%s group members" +msgstr "%s 그룹 회원" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/groupmembers.php:96 #, php-format -msgid "Edit %s group" -msgstr "%s 그룹 편집" +msgid "%s group members, page %d" +msgstr "%s 그룹 회원, %d페이지" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "받은쪽지함은 그룹이 일할 수 있도록 활성화되어야 한다." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "이 그룹의 회원리스트" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "그룹을 만들기 위해서는 로그인해야 합니다." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "관리자" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "닉네임이 없습니다" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "차단하기" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "그러한 그룹이 없습니다." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "이 사용자 차단하기" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "다음 양식을 이용해 그룹을 편집하십시오." - -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "닉네임은 오직 영문소문자이어야 합니다." - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "설명이 너무 길어요. (최대 140글자)" - -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "그룹을 업데이트 할 수 없습니다." +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "관리자" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "옵션들이 저장되었습니다." +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format -msgid "Awaiting confirmation on this address. " -msgstr "이 주소의 확인을 기다리고 있습니다." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "포스팅을 위해 새 이메일 주소를 만드세요." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " +"적어도 3글자 이상 필요." -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "내게 이메일을 보내세요." +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "그룹 찾기" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "친구들이 내게 이메일이나 쪽지를 보낼 수 있도록 허용합니다." +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "결과 없음" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "해당 이메일 주소는 이미 등록되어있습니다." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "인증코드가 당신이 추가한 이메일주소로 발송되었습니다" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "서버에러입니다. - 사용자 정보를 불러올 수 없습니다." +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "그룹" -#: actions/facebookhome.php:196 +#: actions/groups.php:64 #, php-format -msgid "If you would like the %s app to automatically update " -msgstr "만약 당신이 자동 업데이트를 위해 %s 애플리케이션을 좋아한다면" +msgid "Groups, page %d" +msgstr "그룹, %d 페이지" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/groups.php:90 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "내 페이스북 상태에 업데이트를 위해 %s를 허용합니다." +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "통과! (넘어갑니다)" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "새 그룹을 만듭니다." -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "게시글이 없습니다." +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "페이지수" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "회원이 당신을 차단해왔습니다." -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "뒷 페이지" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "차단 제거 에러!" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "앞 페이지" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "메신저 설정" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/imsettings.php:70 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "%s 사용을 위해 친구초대를 해주셔서 대단히 감사합니다." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아" +"래 당신의 주소와 환경설정을 조정하세요." + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "초대장이 무사히 발송되었습니다." +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "확인된 최신의 Jabber/GTalk 계정" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/imsettings.php:114 #, php-format -msgid "You have been invited to %s" -msgstr "당신은 %s에 초대되었습니다." +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항" +"목을 추가하셨습니까?)" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "%s 이용을 위해 당신이 친구를 초대하세요." +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "메신저 주소" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/imsettings.php:126 #, php-format -msgid "Friends already using %s:" -msgstr "친구들은 이미 %s를 사용중입니다." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 " +"GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "초대장을 발송합니다." +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Jabber/GTalk 로 통지를 보내주세요." + +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "페이스북 사용자를 제거할 수 없습니다." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "당신의 싱크 설정을 저장하는데 문제가 있습니다." +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "싱크설정이 저장되었습니다." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Jabber ID가 아닙니다." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "내 게시글과 함께 나의 페이스북 상태를 자동으로 업데이트합니다." +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "그 Jabbar ID를 정규화 할 수 없습니다." -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "페이스북에 \"@\"답장을 보냅니다." +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "유효한 Jabber ID가 아닙니다." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "미리 고치기" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "그 Jabber ID는 이미 귀하의 것입니다." -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "공지 사항 앞에 붙일 문자열." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니다." -#: actions/facebooksettings.php:124 +#: actions/imsettings.php:327 #, php-format -msgid "If you would like %s to automatically update " -msgstr "만약 당신이 자동업데이트를 위해 %s를 좋아한다면" - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "싱크 설정" +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전" +"달할 수 있습니다." -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "좋아하는글 취소" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "그 Jabber ID는 귀하의 것이 아닙니다." -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "인기있는 게시글" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "%s의 받은쪽지함 - %d 페이지" -#: actions/favorited.php:67 +#: actions/inbox.php:62 #, php-format -msgid "Popular notices, page %d" -msgstr "인기있는 게시글, %d 페이지" +msgid "Inbox for %s" +msgstr "%s의 받은쪽지함" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "사이트에서 지금 가장 인기있는 게시글" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "당신의 받은 쪽지함입니다. 당신이 받은 비밀 메시지가 있습니다." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "인기있는 회원" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: actions/featured.php:71 +#: actions/invite.php:41 #, php-format -msgid "Featured users, page %d" -msgstr "인기있는 회원, %d페이지" +msgid "You must be logged in to invite other users to use %s" +msgstr "로그인을 해야 다른 사용자를 %s에 초대할 수 있습니다." -#: actions/featured.php:99 +#: actions/invite.php:72 #, php-format -msgid "A selection of some of the great users on %s" -msgstr "%s의 훌륭한 회원의 일부 선택" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "이 회원은 구독으로부터 당신을 차단해왔다." - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "ID가 없습니다." - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "그룹 로고" +msgid "Invalid email address: %s" +msgstr "옳지 않은 이메일 주소 : %s" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "초대권을 보냈습니다" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "로고를 업데이트했습니다." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "새 사용자를 초대" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "로고 업데이트에 실패했습니다." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "당신은 다음 사용자를 이미 구독하고 있습니다." -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "%s group members" -msgstr "%s 그룹 회원" +msgid "%s (%s)" +msgstr "%s (%s)" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "%s 그룹 회원, %d페이지" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "자동 구독 신청이 된 사용자:" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "이 그룹의 회원리스트" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "다음 사람들에게 초대권을 보냈습니다:" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "그룹" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니" +"다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "그룹, %d 페이지" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "다음 양식을 이용해 친구와 동료를 이 서비스에 초대하십시오." -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%% 그룹은 당신에게 얘기할 사람을 찾게해줍니다." +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "이메일 주소" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "새 그룹을 만듭니다." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "초청할 친구들의 주소 (한 줄에 한 명씩)" -#: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "이름과 위치, 상세설명으로 %%site.name%% 에서 그룹을 찾습니다." +#: actions/invite.php:192 +msgid "Personal message" +msgstr "개인적인 메시지" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "그룹 찾기" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "초대장에 메시지 첨부하기." -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "당신은 메시지를 주고 받을 수 있습니다." +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "보내기" -#: actions/imsettings.php:120 +#: actions/invite.php:226 #, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber 혹은 GTalk(구글토크) 주소" - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Jabber/GTalk(구글토크)를 통해 내게 답장을 보냅니다." +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다." -#: actions/imsettings.php:321 +#: actions/invite.php:228 #, php-format -msgid "A confirmation code was sent " -msgstr "인증코드가 보내졌습니다." +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s님이 귀하를 %2$s(%3$s)에 초대하였습니다.\n" +"\n" +"%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽" +"을 수 있는 마이크로블로깅 서비스 입니다.\n" +"\n" +"자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같" +"은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 장소입니다.\n" +"%1$s님이 말하기를:\n" +"%4$s\n" +"\n" +"%1$s님의 %2$s 프로파일을 보실 수 있습니다:\n" +"\n" +"%5$s\n" +"\n" +"이 서비스를 이용하시려면 밑의 링크를 눌러 초대에 응하십시오.\n" +"\n" +"%6$s\n" +"\n" +"아니면 이 메시지를 무시하시면 됩니다. 여기까지 읽어 주셔서 감사합니다.\n" +"\n" +"%2$s 보냄\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "그룹가입을 위해서는 로그인이 필요합니다." -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "당신은 이미 이 그룹의 멤버입니다." -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "그룹 %s에 %s는 가입할 수 없습니다." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s 는 그룹 %s에 가입했습니다." #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "받은쪽지함은 그룹이 일하기 위해 수신가능해야 합니다." - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "그러한 그룹이 없습니다." - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "당신은 관리자일동안 해당 그룹을 떠나지 않는것이 좋습니다." - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "멤버십 기록을 발견할 수 없습니다." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s가 그룹%s를 떠났습니다." -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "이미 로그인 하셨습니다." + +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "옳지 않은 통지 내용" + +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "틀린 계정 또는 비밀 번호" + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "사용자 세팅 오류" + +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "로그인" + +#: actions/login.php:243 msgid "Login to site" msgstr "사이트에 로그인하세요." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "별명" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "비밀 번호" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "자동 로그인" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 이용하지 마십시오!" + +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "비밀 번호를 잊으셨나요?" + +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." + +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" +"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" +"용해 보세요." + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/microsummary.php:69 msgid "No current status" msgstr "현재 상태가 없습니다." @@ -4544,39 +1715,97 @@ msgstr "현재 상태가 없습니다." msgid "New group" msgstr "새로운 그룹" -#: actions/newgroup.php:115 actions/newgroup.php:110 +#: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요." -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "새 그룹을 만들 수 없습니다." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "새로운 메시지입니다." -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "그룹 맴버십을 세팅할 수 없습니다." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "너무 길어요." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "내용이 없습니다!" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "자신에게 메시지를 전송하지 말아주세요." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "수신자를 지정하지 않았습니다." -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "게시글이 등록되었습니다." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" + +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "메시지" + +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "%s에게 보낸 직접 메시지" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 msgid "Ajax Error" msgstr "Ajax 에러입니다." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "새로운 통지" + +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "게시글이 등록되었습니다." + +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어" +"도 3글자 이상 필요." + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "문자 검색" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "스트림에서 \"%s\" 검색" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%2$s에 있는 %1$s의 업데이트!" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" 에 일치하는 모든 업데이트" + #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set his email yet." @@ -4591,13 +1820,36 @@ msgstr "찔러 보기를 보냈습니다." msgid "Nudge sent!" msgstr "찔러 보기를 보냈습니다!" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "OpenID 로그인" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "통지에 프로필이 없습니다." + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s의 상태 (%2$s에서)" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "연결" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "지원하는 형식의 데이터가 아닙니다." + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "사람 찾기" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "유일한 OpenID를 삭제합니다 " +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "통지 검색" #: actions/othersettings.php:60 msgid "Other Settings" @@ -4607,2358 +1859,2351 @@ msgstr "기타 설정" msgid "Manage various other options." msgstr "다양한 다른 옵션관리" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "URL 자동 줄이기" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "서비스" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "사용할 URL 자동 줄이기 서비스" -#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "프로필 세팅" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "%s의 보낸쪽지함 - page %d" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "%s의 보낸쪽지함" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "당신의 보낸 쪽지함입니다. 이곳엔 당신이 보냈던 비밀 쪽지가 있습니다." + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "비밀번호 바꾸기" + #: actions/passwordsettings.php:69 msgid "Change your password." msgstr "비밀번호를 변경하세요." -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "비밀번호 변경" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "유효한 태그가 아닙니다: %s" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "기존 비밀 번호" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "이용자 셀프 테크 %s - %d 페이지" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "새로운 비밀 번호" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "이 사람들은 그들 스스로가 \"%s\" 태그를 추가했습니다." +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6글자 이상" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "프로필 정보" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "인증" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "위 비밀번호와 동일하게" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "누구에게나 자동구독" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "변환" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "유효하지 않은태그: \"%s\"" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "비밀번호는 6자리 이상이어야 합니다." -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "태그를 저장할 수 없습니다." +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "비밀 번호가 일치하지 않습니다." -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "공개 타임라인, %d 페이지" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "기존 비밀 번호가 틀렸습니다" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "공개 stream을 불러올 수 없습니다." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "사용자 저장 오류; 무효한 사용자" -#: actions/public.php:220 +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "새 비밀번호를 저장 할 수 없습니다." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "비밀 번호 저장" + +#: actions/peoplesearch.php:52 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " -"서비스 입니다." +"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " +"적어도 3글자 이상 필요." -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "공개 태그 클라우드" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "사람 찾기" -#: actions/publictagcloud.php:63 +#: actions/peopletag.php:70 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "다음은 %에서 가장 인기 있는 최근 태그입니다." - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "태그 클라우드" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "죄송합니다. 단지 초대된 사람들만 등록할 수 있습니다." - -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "만약 당신이 아니라면, 당신은 등록할 수 없습니다." - -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "당신은 이 양식으로 만들 수 있습니다." - -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 소문자 혹은 숫자," - -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "업데이트, 공지를 위해 오직 사용됩니다." +msgid "Not a valid people tag: %s" +msgstr "유효한 태그가 아닙니다: %s" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "당신의 홈페이지, 블로그의 URL" +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "이용자 셀프 테크 %s - %d 페이지" -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "당신에 대해 소개해주세요." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "옳지 않은 통지 내용" -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "당신이 사는곳, \"도,시,군,구,\"," +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr "이 비밀 데이터를 제외하세요: 비밀번호," +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "프로필 세팅" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "축하합니다, %s! 그리고 %%%site.name%%%%에 오신걸 환영합니다." +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이" +"트 할 수 있습니다. " -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(당신은 이메일로 메시지를 받아야 합니다." +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "프로필 정보" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "%s에 답장, %d 페이지" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "실명" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "%s 좋아하는 게시글, %d 페이지" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "홈페이지" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "%s 그룹" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "%s 그룹, %d 페이지" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "140자 이내에서 자기 소개" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "그룹 프로필" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "당신에 대해 소개해주세요." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "자기소개" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "설명" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "위치" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "그룹 행동" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "%s 그룹을 위한 공지피드" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "태그" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "회원" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(없습니다.)" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "언어" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "모든 회원" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "언어 설정" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" -"Micro-blogging)의 사용자 그룹입니다. " +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "타임존" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "오직 보내는 사람과 받는 사람" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "당신이 주로 생활하는 곳이 어떤 타임존입니까?" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, %d 페이지" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "나에게 구독하는 사람에게 자동 구독 신청" -#: actions/showstream.php:143 -msgid "'s profile" -msgstr "'의 프로필" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "자기소개가 너무 깁니다. (최대 140글자)" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "이용자 프로필" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "타임존이 설정 되지 않았습니다." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "사진" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "언어가 너무 깁니다. (최대 50글자)" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "사용자 동작" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "유효하지 않은태그: \"%s\"" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "이 회원에게 직접 메시지를 보냅니다." +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "메시지" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "프로필을 저장 할 수 없습니다." -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "모든 구독자" +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "태그를 저장할 수 없습니다." -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "모든 그룹" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "설정 저장" -#: actions/showstream.php:542 +#: actions/public.php:83 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "Beyond the page limit (%s)" msgstr "" -"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" -"Micro-blogging) 서비스에 계정을 갖고 있습니다." -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "폰번호, 점이나 공백없이" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "공개 stream을 불러올 수 없습니다." -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "SMS를 통해 게시글을 내게 보냅니다." +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "공개 타임라인, %d 페이지" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "추가한 전화 번호로 인증 코드를 보냈습니다." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "퍼블릭 타임라인" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "휴대전화 사업자" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "퍼블릭 스트림 피드" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "당신은 이 프로필에 구독되지 않고있습니다." +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "퍼블릭 스트림 피드" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "구독을 저장할 수 없습니다." +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "퍼블릭 스트림 피드" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "로컬 사용자 아닙니다." +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "구독하였습니다." +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/subscribers.php:50 +#: actions/public.php:186 #, php-format -msgid "%s subscribers" -msgstr "%s 구독자" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/subscribers.php:52 +#: actions/public.php:233 #, php-format -msgid "%s subscribers, page %d" -msgstr "%s 구독자, %d 페이지" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "듣고 있는 사람들" +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " +"서비스 입니다." -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "사람들" +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "공개 태그 클라우드" -#: actions/subscriptions.php:52 +#: actions/publictagcloud.php:63 #, php-format -msgid "%s subscriptions" -msgstr "%s 구독" +msgid "These are most popular recent tags on %s " +msgstr "다음은 %에서 가장 인기 있는 최근 태그입니다." -#: actions/subscriptions.php:54 +#: actions/publictagcloud.php:69 #, php-format -msgid "%s subscriptions, page %d" -msgstr "%s subscriptions, %d 페이지" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "게시글 쓰는 사람들" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/subscriptions.php:69 +#: actions/publictagcloud.php:75 #, php-format -msgid "These are the people whose " -msgstr "하는 사람들" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "태그 클라우드" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "%s 으로 태그된 게시글, %d 페이지" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "당신은 이미 로그인되어 있습니다." -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "가장 최근에 \"%s\" 으로 태그된 메시지들" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "그러한 복구 코드는 없습니다." -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "로그인되지 않았습니다." +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "복구 코드가 아닙니다." -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "id 인자가 없습니다." +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "알 수 없는 취소를 위한 리커버리 코드" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "태그 %s" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "확인 코드 오류" -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "태그 사용자" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "이 인증 코드는 오래됐습니다. 다시 발급 받아 주십시오." + +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." -#: actions/tagother.php:149 actions/tagother.php:151 +#: actions/recoverpassword.php:152 msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" -"요." -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "당신의 세션토큰관련 문제가 있습니다." +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" + +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" + +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "이 서버에서 당신의 닉네임 혹은 당신의 등록된 이메일주소" + +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "복구" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "비밀 번호 초기화" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "태그를 저장할 수 없습니다." +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "비밀 번호 복구" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양식을 사용하세요." +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "비밀 번호 복구가 요청되었습니다." -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "그러한 태그가 없습니다." +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "알려지지 않은 행동" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "마이크로블로그는 %s 으로 태그되었습니다." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6글자 이상, 잊어 버리지 마십시오!" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "사용자 차단에 실패했습니다." +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "위와 같은 비밀 번호" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "사용자 차단 해제에 실패했습니다." +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "초기화" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "찾을 수가 없습니다." +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "별명이나 이메일 계정을 입력하십시오." -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "자동으로 보내려면 트위터 계정을 추가하십시오." +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "그러한 이메일 주소나 계정을 가진 사용자는 없습니다." -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "트위터 사용자 이름" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "그 사용자는 등록된 메일주소가 없습니다." -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "트위터 비밀번호" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "주소 확인 저장 에러" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "트위터 친구들" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "가입하신 이메일로 비밀 번호 재발급에 관한 안내를 보냈습니다." -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Username은 단지 숫자를 가져야 합니다," +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "잘못된 비밀 번호 지정" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "계정정보를 불러올 수 없습니다." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "비밀 번호는 6자 이상이어야 합니다." -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "차단 제거 에러!" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "비밀 번호가 일치하지 않습니다." -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "요청한 프로필id가 없습니다." +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "" +"새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "해당 id의 프로필이 없습니다." +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "죄송합니다. 단지 초대된 사람들만 등록할 수 있습니다." -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "구독취소 되었습니다." +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "확인 코드 오류" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "%s 그룹" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "회원 가입이 성공적입니다." -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "%s 그룹, %d 페이지" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "회원가입" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "게시글 저장문제. 알려지지않은 회원" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "가입이 허용되지 않습니다." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " -"해보세요." +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "유효한 이메일 주소가 아닙니다." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "아바타를 업로드하세요." +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "이메일 주소가 이미 존재 합니다." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "기타" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "다른 옵션들" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "%s - %s" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 " +"입력." -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "제목없는 페이지" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6글자 이상이 필요합니다." -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "주 사이트 네비게이션" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "위와 같은 비밀 번호. 필수 사항." -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "개인 프로필과 친구 타임라인" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "이메일" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "프로필이나 텍스트 검색" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "계정" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "더욱 긴 이름을 요구합니다." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "나의 글과 파일의 라이선스는 다음과 같습니다 " -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "IM, SMS, 트위터에 연결하기" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "이 사이트로부터 로그아웃" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "이 사이트 로그인" +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아" +"래의 일을 할 수 있습니다...\n" +"\n" +"* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n" +"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통" +"보를 받아 보십시오.\n" +"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 " +"분들을 찾아 보십시오. \n" +"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에" +"게 자신을 알려보십시오. \n" +"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시" +"오. \n" +"\n" +"다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "계정 만들기" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습" +"니다.)" + +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"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을 입력하십시오." -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "오픈ID로 로그인하기" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "리모트 구독 예약" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "도움이 필요해!" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "이 회원을 구독합니다." -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "사이트 공지" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "이용자 닉네임" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "로컬 뷰" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "따라가고 싶은 사용자의 별명" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "페이지 공지" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "프로필 URL" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "보조 사이트 네비게이션" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "라코니카 소프트웨어 라이선스" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "구독" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "모든 것" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "옳지 않은 프로필 URL (나쁜 포멧)" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "라이선스" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "이 사용자 차단하기" +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오." -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "차단하기" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "리퀘스트 토큰을 취득 할 수 없습니다." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "이 게시글 좋아하기 취소" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "%s에 답신" -#: lib/facebookaction.php:268 +#: actions/replies.php:127 #, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "당신이 필요한 페이스북 어플리케이션 %s의 사용을 위해서 로그인하세요." +msgid "Replies to %s, page %d" +msgstr "%s에 답장, %d 페이지" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr "새로운 계정" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s의 통지 피드" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "발행되었습니다." +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s의 통지 피드" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "이 게시글을 좋아합니다." +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s의 통지 피드" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "데이터 내보내기" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "태그 필터링하기" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "모든 것" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "태그" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%2$s에서 %1$s까지 메시지" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "좁은 리스트에서 태그 선택하기" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s 좋아하는 게시글, %d 페이지" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Go " +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "좋아하는 게시글을 복구할 수 없습니다." -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s의 친구들을 위한 피드" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "설명" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s의 친구들을 위한 피드" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "140글자로 그룹이나 토픽 설명하기" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s의 친구들을 위한 피드" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: actions/showfavorites.php:205 msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "그룹의 위치, \"시/군/구, 도, 나라\"" - -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "그룹" +"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 "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "관리자" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: actions/showfavorites.php:211 #, php-format -msgid "Edit %s group properties" -msgstr "%s 그룹 속성 편집" +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "로고" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "Add or edit %s logo" -msgstr "%s logo 추가 혹은 수정" +msgid "%s group" +msgstr "%s 그룹" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "가장 많은 회원수를 가진 그룹들" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "%s 그룹, %d 페이지" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "가장 많은 게시글이 있는 그룹들" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "그룹 프로필" -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "%s 그룹 게시글의 태그" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "설명" -#: lib/joinform.php:114 -msgid "Join" -msgstr "가입" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "떠나기" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "그룹 행동" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "사용자 이름과 비밀번호로 로그인" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s 그룹을 위한 공지피드" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "새 계정을 위한 회원가입" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s 그룹을 위한 공지피드" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "오픈ID로 로그인 혹은 회원가입" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s 그룹을 위한 공지피드" -#: lib/mail.php:175 +#: actions/showgroup.php:345 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"안녕, %s. \n" -"\n" +msgid "FOAF for %s group" +msgstr "%s의 보낸쪽지함" -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "%1$s 는 지금 듣고 있습니다." +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "회원" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "위치: %s\n" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(없습니다.)" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "홈페이지: %s\n" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "모든 회원" + +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "통계" + +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "생성" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showgroup.php:448 #, php-format msgid "" -"Bio: %s\n" -"\n" +"**%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\n" -"\n" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "%s 사용자가 찔러 봤습니다." +#: actions/showgroup.php:454 +#, fuzzy, 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** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" +"Micro-blogging)의 사용자 그룹입니다. " + +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "관리자" -#: lib/mail.php:465 +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "그러한 메시지가 없습니다." + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "오직 발송자가 수신자가 이 메시지를 읽는것이 좋습니다." + +#: actions/showmessage.php:108 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) 사용자가 요즘에 무엇을 하는지 궁금해 하고, " +msgid "Message to %1$s on %2$s" +msgstr "%2$s에서 %1$s까지 메시지" -#: lib/mail.php:555 +#: actions/showmessage.php:113 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s 사용자가 %2$s의 귀하의 글을 추가했습니다." - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "로 부터" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "직접 메시지 보내기" +msgid "Message from %1$s on %2$s" +msgstr "%1$s에서 %2$s까지 메시지" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "게시글 보내기" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "게시글이 등록되었습니다." -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "사용 가능한 글자" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "%s 태그된 통지" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "이 게시글에 대한 답장" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "%s, %d 페이지" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "이 게시글에 대해 답장하기" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s 그룹을 위한 공지피드" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "답장하기" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s의 통지 피드" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "이 게시글 삭제하기" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s의 통지 피드" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "삭제" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s의 통지 피드" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "이 사용자 찔러 보기" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "%s의 보낸쪽지함" -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "찔러 보기" +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "이 사용자에게 찔러 보기 메시지 보내기" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: lib/personaltagcloudsection.php:56 +#: actions/showstream.php:198 #, php-format -msgid "Tags in %s's notices" -msgstr "%s의 게시글의 태그" +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(없습니다)" +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "공개" +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" +"Micro-blogging) 서비스에 계정을 갖고 있습니다." -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "사용자 그룹" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS 세팅" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "최근 태그" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" +"당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "피쳐링됨" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "인기있는" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "확인된 최신의 SMS가 가능한 휴대폰 번호" -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "게시글" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "이 전화 번호는 인증 대기중입니다." -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "이 사이트에서 그룹 찾기" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "인증 코드" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "제목없는 섹션" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "휴대폰으로 받으신 인증번호를 입력하십시오." -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "%s 사람들은 구독합니다." +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS 휴대폰 번호" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "%s에 의해 구독되는 사람들" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요." -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "%s 그룹들은 의 멤버입니다." +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있" +"습니다." -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "휴대폰 번호가 없습니다." -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "회원이 당신을 차단해왔습니다." +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "통신회사가 선택 되지 않았습니다." -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "이 회원을 구독합니다." +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "그 휴대폰 번호는 이미 귀하의 것입니다." -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "없음" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "그 휴대폰 번호는 이미 다른 사용자의 것입니다." -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "상위 게시글 등록자" +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" +"드와 사용법을 확인하여 주시기 바랍니다." -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "이 사용자를 차단해제합니다." +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "옳지 않은 인증 번호 입니다." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "차단해제" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "그 휴대폰 번호는 귀하의 것이 아닙니다." -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "이 사용자로부터 구독취소합니다." +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "휴대전화 사업자" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "%s의 친구들을 위한 피드" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "통신 회사를 선택 하세요." -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "%s의 친구들을 위한 피드" +#: actions/smssettings.php:476 +#, php-format +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 "귀하의 휴대폰의 통신회사는 무엇입니까?" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "%s의 친구들을 위한 피드" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "코드가 입력 되지 않았습니다." -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s 및 친구들" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "당신은 이 프로필에 구독되지 않고있습니다." -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "구독을 저장할 수 없습니다." -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -#, fuzzy -msgid "Avatar deleted." -msgstr "아바타가 업데이트 되었습니다." +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "로컬 사용자 아닙니다." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "구독하였습니다." -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "%s 구독자" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "%s 구독자, %d 페이지" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "귀하의 통지를 받고 있는 사람" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "%s의 통지를 받고 있는 사람" + +#: actions/subscribers.php:108 msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: actions/subscribers.php:110 #, php-format -msgid "Okay, do it!" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscribers.php:114 #, php-format msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "%s 구독" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "당신의 아바타가 될 이미지영역을 지정하세요." +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "%s subscriptions, %d 페이지" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "%s의 마이크로블로그" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "귀하의 통지를 받고 있는 사람" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " -"적어도 3글자 이상 필요." +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "%s님이 받고 있는 통지의 사람" -#: actions/groups.php:90 +#: actions/subscriptions.php:121 #, php-format msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "직접 메시지 보내기 오류." - -#: actions/noticesearch.php:91 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "스트림에서 \"%s\" 검색" +msgid "%s is not listening to anyone." +msgstr "%1$s 는 지금 듣고 있습니다." -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "퍼블릭 스트림 피드" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "퍼블릭 스트림 피드" +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "로그인되지 않았습니다." -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "퍼블릭 스트림 피드" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "id 인자가 없습니다." -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: actions/tagother.php:65 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +msgid "Tag %s" +msgstr "태그 %s" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "이용자 프로필" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "사진" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "태그 사용자" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "생성" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" +"요." -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format +#: actions/tagother.php:193 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%%%%))" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +"당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "그룹 프로필" +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "태그를 저장할 수 없습니다." -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "'의 프로필" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양식을 사용하세요." -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "%s의 통지 피드" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "%s 으로 태그된 게시글, %d 페이지" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s의 통지 피드" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s의 통지 피드" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "FOAF for %s" -msgstr "%s의 보낸쪽지함" +msgid "Notice feed for tag %s (Atom)" +msgstr "%s의 통지 피드" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "아바타" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "그러한 태그가 없습니다." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "프로필 세팅" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API 메서드를 구성중 입니다." -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "요청한 프로필id가 없습니다." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "해당 id의 프로필이 없습니다." -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" -"드와 사용법을 확인하여 주시기 바랍니다." +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "구독취소 되었습니다." -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "그러한 사용자가 없습니다." - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" -"다." -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "트위터로부터 \"%s\"를 위한 계정정보를 불러올 수 없습니다." +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "구독을 허가" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:110 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" "\"를 클릭해 주세요." -#: actions/usergroups.php:131 actions/usergroups.php:130 +#: actions/userauthorization.php:188 #, fuzzy -msgid "Search for more groups" -msgstr "프로필이나 텍스트 검색" +msgid "License" +msgstr "라이선스" + +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "수락" + +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "이 회원을 구독합니다." + +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "거부" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#: actions/userauthorization.php:212 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " -"해보세요." +msgid "Reject this subscription" +msgstr "%s 구독" -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "IM, SMS, 트위터에 연결하기" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "허용되지 않는 요청입니다." -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "찔러 보기" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "구독 허가" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" +"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "구독 거부" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: actions/userauthorization.php:261 +#, fuzzy msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "당신이 필요한 페이스북 어플리케이션 %s의 사용을 위해서 로그인하세요." - -#: lib/feed.php:85 -msgid "RSS 1.0" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" +"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/imagefile.php:75 +#: actions/userauthorization.php:322 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: actions/userauthorization.php:338 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" -"\t%3$s\n" -"\n" -"그럼 이만,%4$s.\n" +msgid "Can’t read avatar URL ‘%s’." +msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "%S 잘못된 그림 파일 타입입니다. " -#: lib/mail.php:513 -#, php-format +#: actions/userbyid.php:70 +msgid "No id." +msgstr "id가 없습니다." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "프로필 세팅" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: actions/usergroups.php:64 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +msgid "%s groups, page %d" +msgstr "%s 그룹, %d 페이지" -#: lib/searchaction.php:122 lib/searchaction.php:120 +#: actions/usergroups.php:130 #, fuzzy -msgid "Search site" -msgstr "검색" +msgid "Search for more groups" +msgstr "프로필이나 텍스트 검색" -#: lib/section.php:106 -msgid "More..." +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/all.php:80 actions/all.php:127 +#: classes/File.php:137 #, php-format msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/all.php:85 actions/all.php:132 +#: classes/File.php:147 #, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/all.php:87 actions/all.php:134 +#: classes/File.php:154 #, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "메시지를 삽입할 수 없습니다." + +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." + +#: classes/Notice.php:164 #, php-format +msgid "DB error inserting hashtag: %s" +msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" + +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "통지를 저장하는데 문제가 발생했습니다." + +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "게시글 저장문제. 알려지지않은 회원" + +#: classes/Notice.php:188 msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" +"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " +"해보세요." -#: actions/attachment.php:73 +#: classes/Notice.php:194 #, fuzzy -msgid "No such attachment." -msgstr "그러한 문서는 없습니다." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " +"해보세요." -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "이 그룹의 회원리스트" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "이 그룹의 회원리스트" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "통지를 저장하는데 문제가 발생했습니다." -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "이용자 프로필" +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s" -#: actions/blockedfromgroup.php:93 +#: classes/User.php:333 #, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s 와 친구들, %d 페이지" +msgid "Welcome to %1$s, @%2$s!" +msgstr "%2$s에서 %1$s까지 메시지" + +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "프로필" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "프로필 세팅 바꾸기" + +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "아바타를 업로드하세요." + +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "비밀번호 바꾸기" + +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "이메일 처리 변경" -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "이 그룹의 회원리스트" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/blockedfromgroup.php:281 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Unblock user from group" -msgstr "사용자 차단 해제에 실패했습니다." +msgid "Design your profile" +msgstr "이용자 프로필" -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "인증 코드" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "기타" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "이 통지를 지울 수 없습니다." +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "다른 옵션들" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/action.php:144 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "%s - %s" +msgstr "%s - %s" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "유효하지 않은태그: \"%s\"" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "제목없는 페이지" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "주 사이트 네비게이션" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +#: lib/action.php:430 +msgid "Home" +msgstr "홈" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "좋아하는 게시글을 생성할 수 없습니다." +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "개인 프로필과 친구 타임라인" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: lib/action.php:432 +msgid "Account" +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 "" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +#: lib/action.php:435 +msgid "Connect" +msgstr "연결" -#: actions/file.php:34 +#: lib/action.php:435 #, fuzzy -msgid "No notice id" -msgstr "새로운 통지" +msgid "Connect to services" +msgstr "서버에 재접속 할 수 없습니다 : %s" -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "새로운 통지" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "초대" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: lib/action.php:445 +msgid "Logout" +msgstr "로그아웃" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "유효한 별명이 아닙니다" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "이 사이트로부터 로그아웃" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "프로필을 지정하지 않았습니다." +#: lib/action.php:450 +msgid "Create an account" +msgstr "계정 만들기" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "이 사이트 로그인" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "회원이 당신을 차단해왔습니다." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "도움말" -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "당신은 해당 그룹의 멤버가 아닙니다." +#: lib/action.php:456 +msgid "Help me!" +msgstr "도움이 필요해!" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "사용자를 차단합니다." +#: lib/action.php:459 +msgid "Search" +msgstr "검색" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "프로필이나 텍스트 검색" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/action.php:480 +msgid "Site notice" +msgstr "사이트 공지" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "그룹을 만들기 위해서는 로그인해야 합니다." +#: lib/action.php:546 +msgid "Local views" +msgstr "로컬 뷰" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "그룹" +#: lib/action.php:612 +msgid "Page notice" +msgstr "페이지 공지" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "보조 사이트 네비게이션" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "사용자를 업데이트 할 수 없습니다." +#: lib/action.php:721 +msgid "About" +msgstr "정보" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "트위터 환경설정을 저장할 수 없습니다." +#: lib/action.php:723 +msgid "FAQ" +msgstr "자주 묻는 질문" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "싱크설정이 저장되었습니다." +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "관리자만 그룹을 편집할 수 있습니다." +#: lib/action.php:730 +msgid "Privacy" +msgstr "개인정보 취급방침" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "관리자" +#: lib/action.php:732 +msgid "Source" +msgstr "소스 코드" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +#: lib/action.php:734 +msgid "Contact" +msgstr "연락하기" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/action.php:736 #, fuzzy -msgid "No results." -msgstr "결과 없음" +msgid "Badge" +msgstr "찔러 보기" -#: actions/groupsearch.php:82 +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "라코니카 소프트웨어 라이선스" + +#: lib/action.php:767 #, php-format msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " +"마이크로블로깅서비스입니다." -#: actions/groupsearch.php:85 +#: lib/action.php:769 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전" +"을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." -#: actions/groupunblock.php:95 +#: lib/action.php:785 #, fuzzy -msgid "User is not blocked from group." -msgstr "회원이 당신을 차단해왔습니다." +msgid "Site content license" +msgstr "라코니카 소프트웨어 라이선스" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/action.php:794 +msgid "All " +msgstr "모든 것" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/action.php:799 +msgid "license." +msgstr "라이선스" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "페이지수" + +#: lib/action.php:1062 +msgid "After" +msgstr "뒷 페이지" + +#: lib/action.php:1070 +msgid "Before" +msgstr "앞 페이지" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "당신의 세션토큰관련 문제가 있습니다." -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "Message sent" -msgstr "메시지" +msgid "Provider" +msgstr "프로필" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "실행결과" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "실행 완료" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "실행 실패" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "죄송합니다. 이 명령은 아직 실행되지 않았습니다." -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "찔러 보기를 보냈습니다." + +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "프로필을 저장 할 수 없습니다." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "이용자의 지속적인 게시글이 없습니다." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "게시글이 좋아하는 글로 지정되었습니다." -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "전체이름: %s" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "위치: %s" -#: actions/noticesearch.php:121 +#: lib/command.php:324 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +msgid "Homepage: %s" +msgstr "홈페이지: %s" -#: actions/noticesearch.php:124 +#: lib/command.php:327 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +msgid "About: %s" +msgstr "자기소개: %s" -#: actions/openidsettings.php:70 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " -"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "직접 메시지 보내기 오류." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "이 게시글에 대해 답장하기" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/command.php:441 #, fuzzy -msgid "View profile designs" -msgstr "프로필 세팅" +msgid "Error saving notice." +msgstr "통지를 저장하는데 문제가 발생했습니다." -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "구독하려는 사용자의 이름을 지정하십시오." -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:502 #, php-format -msgid "Beyond the page limit (%s)" -msgstr "" +msgid "Subscribed to %s" +msgstr "%s에게 구독되었습니다." -#: actions/public.php:179 +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오." + +#: lib/command.php:530 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" +msgid "Unsubscribed from %s" +msgstr "%s에서 구독을 해제했습니다." -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "명령이 아직 실행되지 않았습니다." -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +#: lib/command.php:551 +msgid "Notification off." +msgstr "알림끄기." -#: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " -"서비스 입니다." +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "알림을 끌 수 없습니다." -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" +#: lib/command.php:574 +msgid "Notification on." +msgstr "알림이 켜졌습니다." -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "알림을 켤 수 없습니다." -#: actions/publictagcloud.php:75 +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "OpenID를 작성 할 수 없습니다 : %s" + +#: lib/command.php:602 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/recoverpassword.php:152 -#, fuzzy +#: lib/command.php:613 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." -#: actions/recoverpassword.php:158 +#: lib/common.php:191 #, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "당신은 인증되었습니다. 아래 새 비밀번호를 입력하세요." +msgid "No configuration file found. " +msgstr "확인 코드가 없습니다." -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "비밀 번호 복구가 요청되었습니다." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "확인 코드 오류" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#: lib/common.php:194 #, fuzzy -msgid "Subscribe to a remote user" -msgstr "이 회원을 구독합니다." +msgid "Go to the installer." +msgstr "이 사이트 로그인" + +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "메신저" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "인스턴트 메신저에 의한 업데이트" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "SMS에 의한 업데이트" + +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s 좋아하는 게시글, %d 페이지" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "올리기" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 +#: lib/designsettings.php:109 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." +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "%s 그룹을 위한 공지피드" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "%s 그룹을 위한 공지피드" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "%s 그룹을 위한 공지피드" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "비밀번호 바꾸기" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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. " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" -"Micro-blogging)의 사용자 그룹입니다. " -#: actions/showgroup.php:474 actions/showgroup.php:482 +#: lib/designsettings.php:191 #, fuzzy -msgid "Admins" -msgstr "관리자" +msgid "Content" +msgstr "연결" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "로컬 사용자 아닙니다." +msgid "Sidebar" +msgstr "검색" -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "%s 태그된 통지" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "문자" -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "%s 그룹을 위한 공지피드" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "로그인" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" -"Micro-blogging) 서비스에 계정을 갖고 있습니다." -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "이 게시글 좋아하기 취소" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "이 게시글을 좋아합니다." -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s 는 지금 듣고 있습니다." +#: lib/favorform.php:140 +msgid "Favor" +msgstr "좋아합니다" -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "%s의 통지 피드" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "데이터 내보내기" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "%s의 통지 피드" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "이 게시글은 이미 좋아하는 게시글입니다." +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "이 메시지는 favorite이 아닙니다." +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "공개 stream을 불러올 수 없습니다." +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "수신자를 지정하지 않았습니다." +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "태그 필터링하기" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "모든 것" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#: lib/galleryaction.php:139 #, fuzzy -msgid "Could not find target user." -msgstr "어떠한 상태도 찾을 수 없습니다." +msgid "Select tag to filter" +msgstr "통신 회사를 선택 하세요." -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / %2$s에게 답신 업데이트" +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "태그" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "%2$s에 있는 %1$s의 업데이트!" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "좁은 리스트에서 태그 선택하기" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Go " -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "라이선스" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/groupeditform.php:168 #, fuzzy -msgid "Reject this subscription" -msgstr "%s 구독" +msgid "Describe the group or topic" +msgstr "140글자로 그룹이나 토픽 설명하기" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "프로필 세팅" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "140글자로 그룹이나 토픽 설명하기" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "설명" + +#: lib/groupeditform.php:179 msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "그룹의 위치, \"시/군/구, 도, 나라\"" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/usergroups.php:153 +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "그룹" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "차단하기" + +#: lib/groupnav.php:101 #, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "당신은 해당 그룹의 멤버가 아닙니다." +msgid "%s blocked users" +msgstr "사용자를 차단합니다." -#: actions/usergroups.php:158 +#: lib/groupnav.php:107 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" +msgid "Edit %s group properties" +msgstr "%s 그룹 속성 편집" -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "로고" -#: classes/File.php:137 classes/File.php:147 +#: lib/groupnav.php:113 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +msgid "Add or edit %s logo" +msgstr "%s logo 추가 혹은 수정" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s logo 추가 혹은 수정" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "가장 많은 회원수를 가진 그룹들" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "가장 많은 게시글이 있는 그룹들" -#: classes/File.php:145 classes/File.php:154 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +msgid "Tags in %s group's notices" +msgstr "%s 그룹 게시글의 태그" -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "통지를 저장하는데 문제가 발생했습니다." +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "%2$s에서 %1$s까지 메시지" +msgid "That file is too big. The maximum file size is %s." +msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "불완전한 업로드." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "이용자 프로필" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "파일을 올리는데 시스템 오류 발생" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "그림 파일이 아니거나 손상된 파일 입니다." -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "지원하지 않는 그림 파일 형식입니다." -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "파일을 잃어버렸습니다." -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "프로필" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "알 수 없는 종류의 파일입니다" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "새로운 통지" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/joinform.php:114 +msgid "Join" +msgstr "가입" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "떠나기" -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "올리기" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "사용자 이름과 비밀번호로 로그인" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "새 계정을 위한 회원가입" -#: lib/designsettings.php:139 -msgid "On" -msgstr "" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다." -#: lib/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:139 +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/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "다음에서:" -#: lib/designsettings.php:161 -msgid "Tile background image" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "이메일 주소 확인서" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "비밀번호 바꾸기" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." -#: lib/designsettings.php:178 -msgid "Background" +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" +"\t%3$s\n" +"\n" +"그럼 이만,%4$s.\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "연결" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "검색" +#: lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "위치: %s\n" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "로그인" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "홈페이지: %s\n" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" +"소개: %s\n" +"\n" -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "%s에 포스팅 할 새로운 이메일 주소" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" +"오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s 상태" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS 인증" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s 사용자가 찔러 봤습니다." -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:466 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "차단하기" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "사용자를 차단합니다." +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" -#: lib/groupnav.php:119 +#: lib/mail.php:554 #, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "%s logo 추가 혹은 수정" +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -6976,653 +4221,438 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"The notice is here:\n" "\n" -"\t%2$s\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mailbox.php:139 +#: lib/mediafile.php:147 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." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "내용이 없습니다!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "이용자" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "검색" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "홈페이지 주소형식이 올바르지 않습니다." +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "공개 stream을 불러올 수 없습니다." -#: lib/webcolor.php:123 +#: lib/mediafile.php:270 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid " Try using another %s format." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "그러한 태그가 없습니다." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "%s에게 직접 메시지" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "따라가실 수 없습니다 : 사용자가 없습니다." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "설명이 너무 길어요. (최대 140글자)" - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "당신은 이미 이 그룹의 멤버입니다." - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "그룹 %s에 %s는 가입할 수 없습니다." - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "당신은 해당 그룹의 멤버가 아닙니다." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "직접 메시지 보내기" -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s 그룹" +#: lib/messageform.php:146 +msgid "To" +msgstr "에게" -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "%s 그룹들은 의 멤버입니다." +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "사용 가능한 글자" -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "그룹 행동" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "게시글 보내기" -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "아바타가 업데이트 되었습니다." +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "뭐하세요? %?" -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "지원하지 않는 그림 파일 형식입니다." - -#: actions/bookmarklet.php:50 +#: lib/noticelist.php:478 #, fuzzy -msgid "Post to " -msgstr "사진" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "설명이 너무 길어요. (최대 140글자)" +msgid "in context" +msgstr "내용이 없습니다!" -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "%2$s에 있는 %1$s의 업데이트!" +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "이 게시글에 대해 답장하기" -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "살펴 보고 있는 사용자가 없습니다." +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "답장하기" -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "인증이 되지 않았습니다." +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "이 사용자 찔러 보기" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니다." +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "찔러 보기" -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "OMB 프로토콜의 알려지지 않은 버전" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "이 사용자에게 찔러 보기 메시지 보내기" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "그러한 통지는 없습니다." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "새 프로필 추가 오류" -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "파일을 잃어버렸습니다." +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "아바타 추가 오류" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "%2$s에 있는 %1$s의 업데이트!" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "리모트 프로필 추가 오류" -#: actions/imsettings.php:89 +#: lib/oauthstore.php:345 #, fuzzy -msgid "IM is not available." -msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." +msgid "Duplicate notice" +msgstr "통지 삭제" -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" -"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" -"용해 보세요." +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "예약 구독을 추가 할 수 없습니다." -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "%2$s에 있는 %1$s의 업데이트!" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "개인적인" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "\"%s\" 에 일치하는 모든 업데이트" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "답신" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "연결" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "좋아하는 글들" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "이용자" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "받은 쪽지함" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "140자 이내에서 자기 소개" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "당신의 받은 메시지들" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "당신에 대해 소개해주세요." +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "보낸 쪽지함" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "자기소개가 너무 깁니다. (최대 140글자)" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "당신의 보낸 메시지들" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "%s의 게시글의 태그" -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "구독" -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오." +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "모든 예약 구독" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "리퀘스트 토큰을 취득 할 수 없습니다." +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "구독자" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "%s의 통지 피드" +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "모든 구독자" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "%s의 통지 피드" +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "이용자" -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "%s의 통지 피드" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "가입한 때" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "%2$s에서 %1$s까지 메시지" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "모든 그룹" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "%s의 친구들을 위한 피드" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "공개" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "%s의 친구들을 위한 피드" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "사용자 그룹" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "%s의 친구들을 위한 피드" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "최근 태그" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "피쳐링됨" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "%s의 보낸쪽지함" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "인기있는" -#: actions/shownotice.php:90 +#: lib/searchaction.php:120 #, fuzzy -msgid "Notice deleted." -msgstr "게시글이 등록되었습니다." +msgid "Search site" +msgstr "검색" -#: actions/smssettings.php:91 +#: lib/searchaction.php:162 #, fuzzy -msgid "SMS is not available." -msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." +msgid "Search help" +msgstr "검색" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "%s의 통지 피드" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "사람들" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "이 사이트에 있는 사람 찾기" -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" -"\"를 클릭해 주세요." +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "게시글" -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" -"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "통지들의 내용 찾기" -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" -"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "이 사이트에서 그룹 찾기" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "제목없는 섹션" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:307 +#: lib/subgroupnav.php:83 #, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +msgid "People %s subscribes to" +msgstr "%s 사람들은 구독합니다." -#: actions/userauthorization.php:322 +#: lib/subgroupnav.php:91 #, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +msgid "People subscribed to %s" +msgstr "%s에 의해 구독되는 사람들" -#: actions/userauthorization.php:338 +#: lib/subgroupnav.php:99 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Groups %s is a member of" +msgstr "%s 그룹들은 의 멤버입니다." + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(없습니다)" -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "%S 잘못된 그림 파일 타입입니다. " +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "서버에 재접속 할 수 없습니다 : %s" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "회원이 당신을 차단해왔습니다." -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "라코니카 소프트웨어 라이선스" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "구독 하실 수 없습니다." -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "다른 사람을 구독 하실 수 없습니다." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "구독하고 있지 않습니다!" -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "찔러 보기를 보냈습니다." +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "예약 구독을 삭제 할 수 없습니다." -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "없음" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "상위 게시글 등록자" -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "이 사용자로부터 구독취소합니다." -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "이 게시글에 대해 답장하기" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "구독 해제" -#: lib/command.php:441 +#: lib/userprofile.php:116 #, fuzzy -msgid "Error saving notice." -msgstr "통지를 저장하는데 문제가 발생했습니다." +msgid "Edit Avatar" +msgstr "아바타" -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "확인 코드가 없습니다." +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "사용자 동작" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "프로필 세팅" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "이 사이트 로그인" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "이 회원에게 직접 메시지를 보냅니다." -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "통신 회사를 선택 하세요." +#: lib/userprofile.php:273 +msgid "Message" +msgstr "메시지" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "140글자로 그룹이나 토픽 설명하기" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "몇 초 전" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "140글자로 그룹이나 토픽 설명하기" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "1분 전" -#: lib/jabber.php:192 +#: lib/util.php:848 #, php-format -msgid "notice id: %s" -msgstr "새로운 통지" +msgid "about %d minutes ago" +msgstr "%d분 전" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "1시간 전" -#: lib/mail.php:556 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "about %d hours ago" +msgstr "%d시간 전" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "하루 전" -#: lib/mail.php:613 +#: lib/util.php:856 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "다음에서:" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +msgid "about %d days ago" +msgstr "%d일 전" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "공개 stream을 불러올 수 없습니다." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "1달 전" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "통지 삭제" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "%d달 전" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "옳지 않은 통지 내용" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "1년 전" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "OpenID를 작성 할 수 없습니다 : %s" +msgid "%s is not a valid color!" +msgstr "홈페이지 주소형식이 올바르지 않습니다." -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "메시지를 분리할 수 없습니다." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "가입된 사용자가 아닙니다." + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "죄송합니다. 귀하의 이메일이 아닙니다." + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "죄송합니다. 이메일이 허용되지 않습니다." diff --git a/locale/mk/LC_MESSAGES/statusnet.mo b/locale/mk/LC_MESSAGES/statusnet.mo index f844f445d..37f92cabd 100644 Binary files a/locale/mk/LC_MESSAGES/statusnet.mo and b/locale/mk/LC_MESSAGES/statusnet.mo differ diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 66c175a0c..558b936d8 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -6,5285 +6,3862 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:48+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:29+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Пребарувај го потокот за „%s“" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Нема такво известување." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " -"телефонски број." +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Нема таков корисник." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s и пријателите" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgid "%s and friends" +msgstr "%s и пријателите" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Канал со пријатели на %S" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Канал со пријатели на %S" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s сега ги следи вашите забелешки за %2$s." +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Канал со пријатели на %S" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s сега ги следи вашите забелешки на %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Искрено ваш,\n" -"%4$s.\n" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s статус на %2$s" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "Јавниот поток на %s" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s и пријателите" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s public timeline" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s и пријателите" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s timeline" +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** е сервис за микроблогирање." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Корисникот нема профил." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Придонесувачите треба да бидат наведени со цело име или прекар." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 или повеќе знаци" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Ова е предолго. Максималната должина е 140 знаци." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 или повеќе знаци и не ја заборавајте!" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:89 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "Direct messages from %s" msgstr "" -"Испративме код за потврда на IM адресата што ја додадовте. Мора да го " -"одобрите %S за да ви испраќа пораки." -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "За" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Прифати" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Додај" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Додај OpenID" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" msgstr "" -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Адреса" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Сите претплати" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Сите новини од %s" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Сите новини кои се еднакви со бараниот термин „%s“" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Веќе сте најавени." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Веќе сте претплатени!" - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" +msgid "Could not follow user: %s is already on your list." msgstr "" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Одобрете ја претплатата" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Не може да се пренасочи кон серверот: %s" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -"Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Аватар" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Корисникот не може да се освежи/" -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Аватарот е ажуриран." +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Корисникот не може да се освежи/" -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Чекам потвдар за оваа адреса. Проверете ја вашата Jabber/GTalk сметка за " -"порака со понатамошни инструкции. (Дали го додадовте %s на вашата листа со " -"пријатели?)" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Информациите за аватарот не може да се снимат" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Информациите за аватарот не може да се снимат" -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Не може да се креира претплатата" + +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Претходно »" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Тој прекар е во употреба. Одберете друг." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Био" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Неправилен прекар." + +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Домашната страница не е правилно URL." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Целото име е предолго (максимум 255 знаци)" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Локацијата е предолга (максимумот е 255 знаци)." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Не може да се прочита URL-то на аватарот: '%s'" +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Новата лозинка не може да се сними" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Невалидна домашна страница: '%s'" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Откажи" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Тој прекар е во употреба. Одберете друг." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Не е возможно да се инстанцира OpenID објект за потрошувачка." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Ова JabberID не може да се нормализира." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Веќе сте пријавени!" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Промени" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Не може да се пренасочи кон серверот: %s" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Не ни го испративте тој профил." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Промени ја лозинката" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenID формуларот не може да се креира:%s" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" msgstr "" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Потврди" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Профил" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Потврди ја адресата" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Не ни го испративте тој профил." -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Потврдата е откажана" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Кодот за потврда не е пронајден." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Аватарот е ажуриран." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Поврзи се" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Поврзи се со постоечка сметка" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Ова е предолго. Максималната должина е 140 знаци." -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Контакт" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "OpenID формуларот не може да се креира:%s" +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Неподдржан фомрат на слики." + +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "Could not follow user: %s is already on your list." +msgid "%s / Favorites from %s" msgstr "" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Не може да се пренасочи кон серверот: %s" +msgid "%s timeline" +msgstr "" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Информациите за аватарот не може да се снимат" +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Информациите за новиот профил не може да се снимат" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s статус на %2$s" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" msgstr "" -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Белезите за барање не може да се конвертираат во белези за пристап." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Не може да се креира потврда за е-пошта." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Микроблог на %s" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Претплата не може да се избрише." +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "Не е пронаједено барање." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Нема таков документ." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Не може да се земе белег за барање." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Нема прекар." -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Кодот за потврда не може да се внесе." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Нема големина." -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Не може да се внесе нова претплата." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Погрешна големина." -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Профилот не може да се сними." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Аватар" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Корисникот не може да се освежи/" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Креирај" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Поставки" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Креирај нов корисник со овој прекар." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Креирај нова сметка" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Креирање на нова сметка за OpenID што веќе има корисник." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Моментално потврдена Jabber/GTalk адреса." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Товари" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Моментално" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Неочекувано испраќање на формулар." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Одговор од внесот во базата: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Опишете се себе си и сопствените интереси во 140 знаци." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Аватарот е ажуриран." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Е-пошта" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Товарањето на аватарот не успеа." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватарот е ажуриран." -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Нема прекар" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Адресата веќе постои." +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Нема такво известување." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Потврдување на адресата" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Корисникот нема профил." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и пријателите" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Нема таков корисник." + +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Внесете прекар или е-пошта" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "Нема таков корисник." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Не сте пријавени." + +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Грешка во проверувањето на белегот" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Грешка во поврзувањето на корисникот со OpenID" +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "Нема таков корисник." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Грешка во поврзувањето на корисникот." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Грешка во внесувањето на аватарот" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Грешка во внесувањето на новиот профил" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Не може да се пренасочи кон серверот: %s" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Грешка во внесувањето на оддалечениот профил" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Грешка во снимањето на потвдата за адресата." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Нема таков корисник." -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Грешка во снимањето на оддалечениот профил" +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "Веќе сте пријавени!" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Грешка во снимањето на профилот." +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Грешка во снимањето на корисникот." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Грешка во снимањето на корисникот; неправилен." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Нема код за потврда." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Грешка во поставувањето на корисникот." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Кодот за потврда не е пронајден." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Грешка во освежувањето на профилот" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Овој код за потврда не е за Вас!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Грешка во освежувањето на оддалечениот профил" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Непознат тип на адреса %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Грешка со кодот за потврдување." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Оваа адреса веќе е потврдена." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Постоечки прекар" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Корисникот не може да се освежи/" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "ЧПП" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Не може да се креира потврда за е-пошта." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Товарањето на аватарот не успеа." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Потврди ја адресата" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Канал со пријатели на %S" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Адресата \"%s\" е потврдена за Вашата сметка." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Канал со одговори на %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Локација" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Известувања" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Нема такво известување." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." msgstr "" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " -"име и лозинка пред да ги смените Вашите поставки." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Цело име" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Целото име е предолго (максимум 255 знаци)" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Помош" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Нема такво известување." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Дома" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Домашна страница" +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Домашната страница не е правилно URL." - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM адреса" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Поставки за IM" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Нема таков документ." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -"Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " -"истата да ја поврзете со Вашиот OpenID." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -"Ако сакате да додадете OpenID на Вашата сметка, внесете го подолу и кликнете " -"„Додај“." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Неточна стара лозинка" +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Корисникот не може да се освежи/" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Неточно корисничко име или лозинка" +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "Поставките се снимени." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/emailsettings.php:60 +msgid "Email Settings" msgstr "" -"Упатството за пронаоѓање на Вашата лозинка е испратено до адресата за е-" -"пошта што е регистрирана со Вашата сметка." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Неправилно URL за аватар: '%s'" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Невалидна домашна страница: '%s'" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Адреса" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Неправилно URL за лиценца: '%s'" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Неправилна содржина за известување" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Отстрани" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Неправилно uri на известување" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Неправилно url на известување" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Откажи" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Неправилно URL на профил: '%s'" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Неправилно URL на профил (лош формат)" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Неправилно URL на профил вратено од серверот" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Додај" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Погрешна големина." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Погрешно име или лозинка." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" msgstr "" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Преференции" + +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -"Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, " -"верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Ова Jabber ID му припаќа на друг корисник." +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -"Jabber или GTalk адреса како „ime@example.org“. Но прво додајте го %s во " -"Вашата контакт листа во Вашиот IM клиент или GTalk." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." msgstr "" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Локација" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Сними" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Локацијата е предолга (максимумот е 255 знаци)." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Преференциите се снимени." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Пријави се" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Пријавете се со [OpenID](%%doc.openid%%) сметка." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." -"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Одјави се" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Загубена или заборавена лозинка?" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Кодот за потврда не може да се внесе." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: actions/emailsettings.php:358 +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 "" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Нема потврди кои може да се откажат." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Член од" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Ова е погрешната IM адреса." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Микроблог на %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Потврдата е откажана" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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." +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Мојот текст и датотеки се достапни под" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Адресата е отстранета." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Нов прекар" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "Нема такво известување." -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Ново известување" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Нема такво известување." -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Нова лозинка" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Новата лозинка успешно е снимена. Сега сте пријавени." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Прекар" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Тој прекар е во употреба. Одберете друг." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -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/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Тој прекар не е дозволен." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Прекар на корисникот што сакате да го следите." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Прекар или е-пошта" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Микроблог на %s" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Нема JabberID." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Нема барање за проверка!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Нема код за потврда." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Ново известување" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Нема содржина!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Ново известување" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Нема id." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Серверот не достави прекар." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Овој одговор не беше очекуван!" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Нема прекар." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Корисникот кој го следите не постои." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Нема потврди кои може да се откажат." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Може да ја користите локалната претплата." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Серверот не достави URL за профилот." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не е одобрено." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Нема регистрирана адреса за е-пошта за тој корисник." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Белезите за барање не може да се конвертираат во белези за пристап." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Не е пронаједено барање." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Непозната верзија на протоколот OMB." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Нема резултати" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Грешка во освежувањето на оддалечениот профил" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Нема големина." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Нема такво известување." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Нема такво известување." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Нема такво известување." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Нема таков OpenID." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Нема таков документ." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Нема такво известување." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Корисникот нема профил." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Нема таков код за спасување." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Не ни го испративте тој профил." -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Нема таква претплата" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" msgstr "Нема таков корисник." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Нема никој!" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Ова не е код за спасување." - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Неправилен JabberID" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Неправилен OpenID." - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Неправилна адреса за е-пошта." - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Неправилен прекар." +#: actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Неправилно URL на профил (неточен сервис)." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Неправилно URL на профил (нема дефиниран XRDS)." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Корисникот не може да се освежи/" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Неправилно URL на профил (нема YADIS документ)." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" +msgstr "" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Не е слика или датотеката е корумпирана." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Преференциите се снимени." -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Не е одобрено." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Овој одговор не беше очекуван!" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Не сте пријавени." +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Аватарот е ажуриран." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Не сте претплатени!" +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Товарањето на аватарот не успеа." -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 +#: actions/groupmembers.php:96 #, php-format -msgid "Notice feed for %s" -msgstr "Канал со известувања на %s" +msgid "%s group members, page %d" +msgstr "" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Известувањето нема профил" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Известувања" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Стара лозинка" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "Нема таков корисник." -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Поставување на сметка за OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Автоматско испраќање на OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Пријавување со OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Проверката на OpenID е откажана." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Проверката на OpenID не успеа: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Неуспех на OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID-то е отстрането" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Поставки за OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Парцијално товарање" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Лозинка" +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Двете лозинки не се совпаѓаат." +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Лозинката мора да биде од најмалку 6 знаци." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Микроблог на %s" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Побарано е пронаоѓање на лозинката" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%% според нивното име, локација или интереси. " +"Термините одделете ги со празни места. Најмала должина е 3 знаци." -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Лозинката е снимена." +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Пребарување на луѓе" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Лозинките не се совпаѓаат." +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Нема резултати" -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Пребарување на луѓе" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Личен" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" msgstr "" -#: ../actions/userauthorization.php:78 +#: actions/groups.php:90 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -"Проверете ги овие детали ако сакате да се претплатите на известувањата на " -"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Испрати известување кога мојот статус на Jabber/GTalk ќе се смени." - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Преференции" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Преференциите се снимени." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Креирај нова сметка" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Приватност" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Проблем во снимањето на известувањето." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Профил" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Корисникот нема профил." -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL на профилот" +#: actions/groupunblock.php:128 actions/unblock.php:108 +#, fuzzy +msgid "Error removing the block." +msgstr "Грешка во снимањето на корисникот." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Поставки на профилот" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Поставки за IM" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Непознат профил" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Можете да примате и праќате известувања преку Jabber/GTalk [брзи пораки](%%" +"doc.im%%). Подолу " -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Јавен канал" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Јавна историја" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Моментално потврдена Jabber/GTalk адреса." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"Чекам потвдар за оваа адреса. Проверете ја вашата Jabber/GTalk сметка за " +"порака со понатамошни инструкции. (Дали го додадовте %s на вашата листа со " +"пријатели?)" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM адреса" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" +"Jabber или GTalk адреса како „ime@example.org“. Но прво додајте го %s во " +"Вашата контакт листа во Вашиот IM клиент или GTalk." -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Пронајди" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Пронаоѓање на лозинка" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Код за пронаоѓање за непознат корисник." +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Испраќај ми известувања преку Jabber/GTalk." -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Регистрирај се" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Испрати известување кога мојот статус на Jabber/GTalk ќе се смени." -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Одбиј" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Запамети ме" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Нема JabberID." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Оддалечениот профил нема одговарачки профил" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Ова JabberID не може да се нормализира." -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Оддалечена претплата" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Неправилен JabberID" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Отстрани" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Ова веќе е Вашиот Jabber ID." -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Отстрани го OpenID-то" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Ова Jabber ID му припаќа на друг корисник." -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/imsettings.php:327 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -"Ако го остраните Вашето единствено OpenID, тогаш нема да можете да се " -"пријавите. Ако треба да го отстраните, прво додајте друг OpenID." +"Испративме код за потврда на IM адресата што ја додадовте. Мора да го " +"одобрите %S за да ви испраќа пораки." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Одговори" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Ова не е Вашиот Jabber ID." -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/inbox.php:59 #, php-format -msgid "Replies to %s" -msgstr "Одговори испратени до %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Ресетирај" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Рестетирај ја лозинката" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" +msgid "Inbox for %s - page %d" msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Исто како лозинката погоре" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" msgstr "" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Сними" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Барај" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Барај во каналот" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +msgid "%s (%s)" msgstr "" -"Барајте известувања на %%site.name%% според нивната содржина. Термините " -"одделете ги со празни места. Најмала должина е 3 знаци." -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/invite.php:136 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"These people are already users and you were automatically subscribed to them:" msgstr "" -"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " -"Термините одделете ги со празни места. Најмала должина е 3 знаци." -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" msgstr "" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Испрати" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Испраќај ми известувања преку Jabber/GTalk." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Поставки" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Испрати" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Поставките се снимени." +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Некој друг веќе го користи ова OpenID." +#: actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "Веќе сте пријавени!" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Нешто чудно се случи." +#: actions/joingroup.php:128 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "Не може да се пренасочи кон серверот: %s" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Изворен код" +#: actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Не ни го испративте тој профил." -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Статистика" +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Зачуваниот OpenID не е пронајден." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Претплати се" +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "OpenID формуларот не може да се креира:%s" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Претплатници" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Претплатата е одобрена" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Веќе сте најавени." -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Претплатата е одбиена" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Неправилна содржина за известување" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Претплати" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Неточно корисничко име или лозинка" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Системска грешка при товарањето на датотеката." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Грешка во поставувањето на корисникот." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Пријави се" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Текстуално пребарување" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Овој OpenID не Ви припаѓа Вам." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Прекар" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Оваа адреса веќе е потврдена." +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Лозинка" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Овој код за потврда не е за Вас!" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Запамети ме" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" msgstr "" +"Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Датотеката е преголема." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Загубена или заборавена лозинка?" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Ова веќе е Вашиот Jabber ID." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " +"име и лозинка пред да ги смените Вашите поставки." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" +"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." +"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." msgstr "" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Ова не е Вашиот Jabber ID." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" msgstr "" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Ова е погрешната IM адреса." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/newgroup.php:53 +msgid "New group" msgstr "" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Ова е предолго. Максималната должина е 140 знаци." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Адресата \"%s\" е потврдена за Вашата сметка." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Нема содржина!" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Адресата е отстранета." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " -"местото за да видите како да ја одобрите претплатата. Вашиот белег за " -"претплата е:" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " -"местото за да видите како целосно да ја одбиете претплатата." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Ова се луѓето што ги следат известувањата на %s." +msgid "Direct message to %s sent" +msgstr "" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Ова се луѓето што ги следат Вашите известувања." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Ова се луѓето чии известувања ги следи %s." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Ново известување" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Ова се луѓето чии известувања ги следите." +#: actions/newnotice.php:199 +#, fuzzy +msgid "Notice posted" +msgstr "Известувања" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 +#: actions/noticesearch.php:68 +#, php-format msgid "" -"These people are already users and you were automatically subscribed to them:" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" +"Барајте известувања на %%site.name%% според нивната содржина. Термините " +"одделете ги со празни места. Најмала должина е 3 знаци." -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Овој код за потврда е премногу стар. Почнете од почеток." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Текстуално пребарување" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Овој формулар треба автоматски да се испрати. Ако тоа не се случи, кликнете " -"на копчето „Испрати“ за да одите до Вашиот OpenID снабдувач." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Пребарувај го потокот за „%s“" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearch.php:121 #, 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 "" -"Ова е прв пат како се пријавивте на %s и затоа морам да го поврземе Вашиот " -"OpenID со локална сметка. Можете да креирате нова сметка или да се поврзете " -"со тековната сметка - ако ја имате." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Микроблог на %s" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Сите новини кои се еднакви со бараниот термин „%s“" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format +#: actions/nudge.php:85 msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"За да се претплатите, може да се [пријавите](%%action.login%%) или да се " -"[регистрирате](%%action.register%%). Ако имате сметка на [компатибилно место " -"за микро блогирање](%%doc.openmublog%%), внесете го URL-то на Вашиот профил " -"подолу." -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL на Вашата домашна страница, блог или профил на друго место." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL на Вашиот профил на друго компатибилно место за микроблогирање." +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Известувањето нема профил" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Неочекувано испраќање на формулар." +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s статус на %2$s" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Неочекувано ресетирање на лозинка." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Поврзи се" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/oembed.php:160 +msgid "Only " msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Непозната верзија на протоколот OMB." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/opensearch.php:64 +msgid "People Search" msgstr "" -"Освен ако не е поинаку назначено, содржината на ова место е авторско право " -"на придонесувачите и е достапна под" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Непознат тип на адреса %s" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Откажи ја претплатата" +#: actions/othersettings.php:60 +#, fuzzy +msgid "Other Settings" +msgstr "Поставки" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Неподдржнана верзија на ОМВ" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Неподдржан фомрат на слики." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Поставки на профилот" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Локацијата е предолга (максимумот е 255 знаци)." + +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" +msgid "Outbox for %s - page %d" msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" +msgid "Outbox for %s" msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Товари" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Тука можете да поставите нов „аватар“ (косиничка слика). Не можете да ја " -"менувате сликата откако ќе ја товарите, па затоа погрижете се да личи на " -"квадрат. Сликата мора да биде под истата лиценца како ова место. Користете " -"слика која е Ваша и која сакате да ја споделите." -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Промени ја лозинката" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Промени ја лозинката" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Се користи само за надградби, објави и пронаоѓање на лозинка." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Лозинката е снимена." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Корисникот кој го следите не постои." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Стара лозинка" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Корисникот нема профил." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Нова лозинка" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Прекар на корисникот" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 или повеќе знаци" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Потврди" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "исто како лозинката погоре" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Што има %s?" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Промени" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Каде се наоѓате, на пр. „Град, Држава“." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Погрешен тип на слика за '%s'" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Лозинките не се совпаѓаат." -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Погрешна големина на слика на '%s'" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Неточна стара лозинка" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Грешка во снимањето на корисникот; неправилен." + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Новата лозинка не може да се сними" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Веќе го имате овој OpenID!" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Лозинката е снимена." -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +#: actions/peoplesearch.php:52 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " +"Термините одделете ги со празни места. Најмала должина е 3 знаци." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Веќе сте пријавени!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Пребарување на луѓе" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" +#: actions/peopletag.php:70 +#, fuzzy, php-format +msgid "Not a valid people tag: %s" +msgstr "Неправилна адреса за е-пошта." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" msgstr "" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Овде можете да ја промените лозинката. Одберете добра лозинка!" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Можете да креирате нова сметка за да испраќате известувања." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Неправилна содржина за известување" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/postnotice.php:90 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Поставки на профилот" + +#: actions/profilesettings.php:71 msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +"You can update your personal profile info here so people know more about you." msgstr "" -"Можте да отстраните OpenID од Вашата сметка со кликање на копчето „Отстрани“." +"Во Вашиот личен профил може да дополните информации за луѓето да знаат " +"повеќе за Вас." -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Можете да примате и праќате известувања преку Jabber/GTalk [брзи пораки](%%" -"doc.im%%). Подолу " - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Во Вашиот личен профил може да дополните информации за луѓето да знаат " -"повеќе за Вас." +#: actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "Непознат профил" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Може да ја користите локалната претплата." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Цело име" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Не ни го испративте тој профил." +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Домашна страница" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL на Вашата домашна страница, блог или профил на друго место." -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Био" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Идентификувани сте. Подолу можете да внесете нова лозинка." +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Локација" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Вашето URL за OpenID" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Каде се наоѓате, на пр. „Град, Држава“." -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -"Вашиот прекар на овој сервер или адресата за е-пошта со која се " -"регистриравте." -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со " -"истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" -"ја." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "пред неколку секунди" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "пред %d денови" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "пред %d часа" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "пред %d минути" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "пред %d месеци" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "пред еден ден" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "пред една минута" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "пред еден месец" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "пред една година" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "пред еден час" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Невалидна домашна страница: '%s'" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "во одговор на..." +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Профилот не може да се сними." -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "одговор" +#: actions/profilesettings.php:336 +#, fuzzy +msgid "Couldn't save tags." +msgstr "Профилот не може да се сними." -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "исто како лозинката погоре" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Поставките се снимени." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Следно" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Јавна историја" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Јавна историја" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Јавен канал" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Јавен канал" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Јавен канал" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/public.php:233 #, php-format -msgid "%s favorite notices" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 +#: actions/public.php:238 #, php-format -msgid "Feed of favorite notices of %s" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Јавен канал" + +#: actions/publictagcloud.php:63 #, php-format -msgid "Inbox for %s - page %d" +msgid "These are most popular recent tags on %s " msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/publictagcloud.php:69 #, php-format -msgid "Inbox for %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/invite.php:178 actions/invite.php:213 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Веќе сте пријавени!" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Нема таков код за спасување." -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Ова не е код за спасување." -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Код за пронаоѓање за непознат корисник." -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Грешка со кодот за потврдување." -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Овој код за потврда е премногу стар. Почнете од почеток." -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." msgstr "" +"Вашиот прекар на овој сервер или адресата за е-пошта со која се " +"регистриравте." -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Пронајди" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Рестетирај ја лозинката" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Пронаоѓање на лозинка" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Побарано е пронаоѓање на лозинката" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 или повеќе знаци и не ја заборавајте!" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Исто како лозинката погоре" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Ресетирај" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Внесете прекар или е-пошта" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Нема регистрирана адреса за е-пошта за тој корисник." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Грешка во снимањето на потвдата за адресата." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:325 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" +"Упатството за пронаоѓање на Вашата лозинка е испратено до адресата за е-" +"пошта што е регистрирана со Вашата сметка." -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Неочекувано ресетирање на лозинка." -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Лозинката мора да биде од најмалку 6 знаци." -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Двете лозинки не се совпаѓаат." -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Новата лозинка успешно е снимена. Сега сте пријавени." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Грешка со кодот за потврдување." -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Регистрирај се" -#: actions/showstream.php:154 -msgid "Send a message" +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Неправилна адреса за е-пошта." -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Адресата веќе постои." -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Погрешно име или лозинка." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/register.php:429 +msgid "6 or more characters. Required." msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Е-пошта" + +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Се користи само за надградби, објави и пронаоѓање на лозинка." + +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Мојот текст и датотеки се достапни под" + +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" +"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " +"телефонски број." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/register.php:537 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/twittersettings.php:27 +#: actions/register.php:561 msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"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-то на Вашиот профил " +"подолу." -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Оддалечена претплата" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Претплатата е одобрена" -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Прекар на корисникот" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Прекар на корисникот што сакате да го следите." -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL на профилот" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL на Вашиот профил на друго компатибилно место за микроблогирање." -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Претплати се" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Неправилно URL на профил (лош формат)" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 +#: actions/remotesubscribe.php:168 +#, fuzzy msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неправилно URL на профил (нема YADIS документ)." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/twittersettings.php:137 +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не може да се земе белег за барање." + +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" +msgid "Replies to %s" +msgstr "Одговори испратени до %s" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "Одговори испратени до %s" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Канал со известувања на %s" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Канал со известувања на %s" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Канал со известувања на %s" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Одговори испратени до %s" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Нема такво известување." -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Канал со пријатели на %S" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Канал со пријатели на %S" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Канал со пријатели на %S" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/showfavorites.php:205 +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 "" -#: classes/Command.php:96 classes/Command.php:113 +#: actions/showfavorites.php:207 #, php-format -msgid "Subscriptions: %1$s\n" +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "%1$s (%2$s)" +msgid "%s group" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 +#: actions/showgroup.php:84 #, php-format -msgid "Fullname: %s" +msgid "%s group, page %d" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" +#: actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "Нема такво известување." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +#, fuzzy +msgid "Note" +msgstr "Известувања" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +#, fuzzy +msgid "Members" +msgstr "Член од" + +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Статистика" + +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Креирај" + +#: actions/showgroup.php:448 #, php-format -msgid "Subscribed to %s" +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 "" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +#: actions/showgroup.php:454 +#, 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 "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." +#: actions/showmessage.php:81 +msgid "No such message." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Известувања" + +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" msgstr "" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/showstream.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/showstream.php:234 #, php-format -msgid "New private message from %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/showstream.php:239 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/smssettings.php:130 +msgid "Confirmation code" msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s и пријателите" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 +#: actions/smssettings.php:347 #, fuzzy -msgid "Avatar settings" -msgstr "Поставки" +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 "Овој код за потврда не е за Вас!" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/smssettings.php:476 +#, php-format +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 "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 +#: actions/subedit.php:70 #, fuzzy -msgid "Lost our file." -msgstr "Нема такво известување." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" +msgid "You are not subscribed to that profile." +msgstr "Не ни го испративте тој профил." -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" +#: actions/subedit.php:83 +#, fuzzy +msgid "Could not save subscription." +msgstr "Не може да се креира претплатата" -#: actions/block.php:111 actions/block.php:134 +#: actions/subscribe.php:55 #, fuzzy -msgid "Block user" +msgid "Not a local user." msgstr "Нема таков корисник." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - -#: actions/block.php:162 actions/block.php:165 +#: actions/subscribe.php:69 #, fuzzy -msgid "You have already blocked this user." -msgstr "Веќе сте пријавени!" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" +msgid "Subscribed" +msgstr "Претплати се" -#: actions/confirmaddress.php:159 +#: actions/subscribers.php:50 #, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "Адресата е отстранета." +msgid "%s subscribers" +msgstr "Претплатници" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Ова се луѓето што ги следат Вашите известувања." -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/subscribers.php:67 #, php-format -msgid "Edit %s group" +msgid "These are the people who listen to %s's notices." +msgstr "Ова се луѓето што ги следат известувањата на %s." + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Нема прекар" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Сите претплати" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "Нема такво известување." +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "Сите претплати" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Ова се луѓето чии известувања ги следите." -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "Ова се луѓето чии известувања ги следи %s." + +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s сега ги следи вашите забелешки за %2$s." + +#: actions/subscriptions.php:194 #, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." +msgid "Jabber" +msgstr "Нема JabberID." + +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 +#: actions/tagother.php:33 #, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Биографијата е предолга (максимумот е 140 знаци)." +msgid "Not logged in" +msgstr "Не сте пријавени." -#: actions/editgroup.php:218 actions/editgroup.php:253 +#: actions/tagother.php:39 #, fuzzy -msgid "Could not update group." -msgstr "Корисникот не може да се освежи/" +msgid "No id argument." +msgstr "Нема таков документ." + +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" -#: actions/editgroup.php:226 actions/editgroup.php:269 +#: actions/tagother.php:77 lib/userprofile.php:75 #, fuzzy -msgid "Options saved." -msgstr "Поставките се снимени." +msgid "User profile" +msgstr "Корисникот нема профил." -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Грешка со кодот за потврдување." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/emailsettings.php:321 +#: actions/tagother.php:200 #, fuzzy -msgid "That email address already belongs " -msgstr "Адресата веќе постои." +msgid "Could not save tags." +msgstr "Информациите за аватарот не може да се снимат" -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -"Испративме код за потврда на IM адресата што ја додадовте. Мора да го " -"одобрите %S за да ви испраќа пораки." -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Микроблог на %s" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Канал со известувања на %s" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Канал со известувања на %s" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Канал со известувања на %s" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 +#: actions/tagrss.php:35 #, fuzzy -msgid "No notice content!" -msgstr "Нема содржина!" +msgid "No such tag." +msgstr "Нема такво известување." -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/twitapitrends.php:87 +msgid "API method under construction." msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 +#: actions/unsubscribe.php:77 #, fuzzy -msgid "After" -msgstr "« Следни" +msgid "No profile id in request." +msgstr "Серверот не достави URL за профилот." -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 +#: actions/unsubscribe.php:84 #, fuzzy -msgid "Before" -msgstr "Предходни »" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" +msgid "No profile with that id." +msgstr "Оддалечениот профил нема одговарачки профил" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "Откажи ја претплатата" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "You have been invited to %s" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Канал со пријатели на %S" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Одобрете ја претплатата" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" +"Проверете ги овие детали ако сакате да се претплатите на известувањата на " +"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/facebookremove.php:56 +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Прифати" + +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "Корисникот не може да се освежи/" +msgid "Subscribe to this user" +msgstr "Претплатата е одобрена" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Одбиј" -#: actions/facebooksettings.php:67 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Sync preferences saved." -msgstr "Преференциите се снимени." +msgid "Reject this subscription" +msgstr "Сите претплати" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Нема барање за проверка!" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Претплатата е одобрена" -#: actions/facebooksettings.php:106 +#: actions/userauthorization.php:249 #, fuzzy -msgid "Prefix" -msgstr "Профил" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" +"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како да ја одобрите претплатата. Вашиот белег за " +"претплата е:" -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Претплатата е одбиена" -#: actions/facebooksettings.php:147 +#: actions/userauthorization.php:261 #, fuzzy -msgid "Sync preferences" -msgstr "Преференции" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" +"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како целосно да ја одбиете претплатата." -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -#, fuzzy -msgid "Popular notices" -msgstr "Нема такво известување." - -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "Нема такво известување." - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/featured.php:71 +#: actions/userauthorization.php:307 #, php-format -msgid "Featured users, page %d" +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/featured.php:99 +#: actions/userauthorization.php:322 #, php-format -msgid "A selection of some of the great users on %s" +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не може да се прочита URL-то на аватарот: '%s'" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Погрешен тип на слика за '%s'" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Нема id." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #, fuzzy -msgid "Logo updated." -msgstr "Аватарот е ажуриран." +msgid "Profile design" +msgstr "Поставки на профилот" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "Товарањето на аватарот не успеа." +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: actions/groupmembers.php:96 +#: actions/usergroups.php:64 #, php-format -msgid "%s group members, page %d" +msgid "%s groups, page %d" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Не ни го испративте тој профил." -#: actions/groups.php:64 +#: actions/usergroups.php:158 #, php-format -msgid "Groups, page %d" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/groups.php:90 +#: classes/File.php:137 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Креирај нова сметка" +#: classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " -"Термините одделете ги со празни места. Најмала должина е 3 знаци." -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "Пребарување на луѓе" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: actions/imsettings.php:120 +#: classes/Notice.php:164 #, php-format -msgid "Jabber or GTalk address, " +msgid "DB error inserting hashtag: %s" msgstr "" -#: actions/imsettings.php:147 +#: classes/Notice.php:179 #, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Испраќај ми известувања преку Jabber/GTalk." +msgid "Problem saving notice. Too long." +msgstr "Проблем во снимањето на известувањето." -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Нема код за потврда." +#: classes/Notice.php:183 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "Проблем во снимањето на известувањето." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -#, fuzzy -msgid "You are already a member of that group" -msgstr "Веќе сте пријавени!" +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "Не може да се пренасочи кон серверот: %s" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Проблем во снимањето на известувањето." + +#: classes/Notice.php:1120 #, php-format -msgid "%s joined group %s" -msgstr "" +msgid "DB error inserting reply: %s" +msgstr "Одговор од внесот во базата: %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Профил" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 +#: lib/accountsettingsaction.php:112 #, fuzzy -msgid "No such group." -msgstr "Нема такво известување." +msgid "Upload an avatar" +msgstr "Товарањето на аватарот не успеа." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -#, fuzzy -msgid "You are not a member of that group." -msgstr "Не ни го испративте тој профил." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "OpenID формуларот не може да се креира:%s" +#: lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Корисникот нема профил." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" +#: lib/action.php:144 +#, php-format +msgid "%s - %s" msgstr "" -#: actions/newgroup.php:53 -msgid "New group" +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "Информациите за аватарот не може да се снимат" +#: lib/action.php:430 +msgid "Home" +msgstr "Дома" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "Не може да се креира претплатата" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" -#: actions/newmessage.php:119 actions/newnotice.php:132 +#: lib/action.php:432 #, fuzzy -msgid "That's too long. " -msgstr "Датотеката е преголема." +msgid "Account" +msgstr "За" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 +#: lib/action.php:435 +msgid "Connect" +msgstr "Поврзи се" + +#: lib/action.php:435 #, fuzzy -msgid "Notice posted" -msgstr "Известувања" +msgid "Connect to services" +msgstr "Не може да се пренасочи кон серверот: %s" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" +#: lib/action.php:445 +msgid "Logout" +msgstr "Одјави се" -#: actions/nudge.php:97 -msgid "Nudge sent!" +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#: lib/action.php:450 #, fuzzy -msgid "OpenID login" -msgstr "Пријавување со OpenID" +msgid "Create an account" +msgstr "Креирај нова сметка" -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "Отстрани го OpenID-то" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "" -#: actions/othersettings.php:60 +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Помош" + +#: lib/action.php:456 #, fuzzy -msgid "Other Settings" -msgstr "Поставки" +msgid "Help me!" +msgstr "Помош" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" +#: lib/action.php:459 +msgid "Search" +msgstr "Барај" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/othersettings.php:112 +#: lib/action.php:480 #, fuzzy -msgid "Service" -msgstr "Барај" +msgid "Site notice" +msgstr "Ново известување" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 +#: lib/action.php:612 #, fuzzy -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Локацијата е предолга (максимумот е 255 знаци)." +msgid "Page notice" +msgstr "Ново известување" -#: actions/passwordsettings.php:69 +#: lib/action.php:714 #, fuzzy -msgid "Change your password." -msgstr "Промени ја лозинката" +msgid "Secondary site navigation" +msgstr "Претплати" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -#, fuzzy -msgid "Password change" -msgstr "Лозинката е снимена." +#: lib/action.php:721 +msgid "About" +msgstr "За" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "Неправилна адреса за е-пошта." +#: lib/action.php:723 +msgid "FAQ" +msgstr "ЧПП" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Приватност" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy -msgid "Profile information" -msgstr "Непознат профил" +#: lib/action.php:732 +msgid "Source" +msgstr "Изворен код" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" +#: lib/action.php:734 +msgid "Contact" +msgstr "Контакт" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Невалидна домашна страница: '%s'" - -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "Профилот не може да се сними." - -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Јавна историја" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/public.php:220 +#: lib/action.php:767 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." +"broughtby%%](%%site.broughtbyurl%%). " -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "Јавен канал" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** е сервис за микроблогирање." -#: actions/publictagcloud.php:63 +#: lib/action.php:771 #, php-format -msgid "These are most popular recent tags on %s " +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, " +"верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Ново известување" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." +#: lib/action.php:799 +msgid "license." +msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/register.php:368 +#: lib/action.php:1062 #, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." +msgid "After" +msgstr "« Следни" -#: actions/register.php:382 actions/register.php:386 +#: lib/action.php:1070 #, fuzzy -msgid "Used only for updates, announcements, " -msgstr "Се користи само за надградби, објави и пронаоѓање на лозинка." +msgid "Before" +msgstr "Предходни »" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "URL на Вашата домашна страница, блог или профил на друго место." +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "Опишете се себе си и сопствените интереси во 140 знаци." +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "Каде се наоѓате, на пр. „Град, Држава“." +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" -#: actions/register.php:432 +#: lib/attachmentlist.php:278 #, fuzzy -msgid " except this private data: password, " +msgid "Provider" +msgstr "Профил" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " -"телефонски број." -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "Одговори испратени до %s" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" -#: actions/showfavorites.php:79 +#: lib/command.php:88 #, php-format -msgid "%s favorite notices, page %d" +msgid "Could not find a user with nickname %s" +msgstr "Корисникот не може да се освежи/" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: lib/command.php:99 #, php-format -msgid "%s group" +msgid "Nudge sent to %s" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: lib/command.php:126 #, php-format -msgid "%s group, page %d" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy -msgid "Group profile" -msgstr "Нема такво известување." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -#, fuzzy -msgid "Note" -msgstr "Известувања" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "Канал со известувања на %s" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -#, fuzzy -msgid "Members" -msgstr "Член од" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: lib/command.php:327 +#, php-format +msgid "About: %s" msgstr "" -#: actions/showgroup.php:378 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: lib/command.php:431 #, php-format -msgid "%s, page %d" +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Профил" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Одговори испратени до %s" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 +#: lib/command.php:441 #, fuzzy -msgid "User profile" -msgstr "Корисникот нема профил." +msgid "Error saving notice." +msgstr "Проблем во снимањето на известувањето." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "Претплатници" - -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." - -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Испраќај ми известувања преку Jabber/GTalk." - -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Овој код за потврда не е за Вас!" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/subedit.php:70 -#, fuzzy -msgid "You are not subscribed to that profile." -msgstr "Не ни го испративте тој профил." - -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "Не може да се креира претплатата" - -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "Нема таков корисник." - -#: actions/subscribe.php:69 -#, fuzzy -msgid "Subscribed" -msgstr "Претплати се" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" -#: actions/subscribers.php:50 +#: lib/command.php:597 #, fuzzy, php-format -msgid "%s subscribers" -msgstr "Претплатници" +msgid "Could not create login token for %s" +msgstr "OpenID формуларот не може да се креира:%s" -#: actions/subscribers.php:52 +#: lib/command.php:602 #, php-format -msgid "%s subscribers, page %d" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "Ова се луѓето што ги следат известувањата на %s." - -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "Ова се луѓето што ги следат известувањата на %s." - -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Сите претплати" - -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "Сите претплати" - -#: actions/subscriptions.php:65 -#, fuzzy -msgid "These are the people whose notices " -msgstr "Ова се луѓето чии известувања ги следи %s." - -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "Ова се луѓето што ги следат известувањата на %s." - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "Нема JabberID." - -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Микроблог на %s" - -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/tagother.php:33 +#: lib/common.php:191 #, fuzzy -msgid "Not logged in" -msgstr "Не сте пријавени." +msgid "No configuration file found. " +msgstr "Нема код за потврда." -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "Нема таков документ." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy -msgid "Could not save tags." -msgstr "Информациите за аватарот не може да се снимат" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/tagrss.php:35 +#: lib/designsettings.php:105 #, fuzzy -msgid "No such tag." -msgstr "Нема такво известување." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "Микроблог на %s" +msgid "Upload file" +msgstr "Товари" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "Не е пронаједено барање." +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 +#: lib/designsettings.php:170 #, fuzzy -msgid "Twitter password" -msgstr "Нова лозинка" - -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "" +msgid "Change colours" +msgstr "Промени ја лозинката" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "Не може да се креира потврда за е-пошта." - -#: actions/unblock.php:108 actions/groupunblock.php:128 +#: lib/designsettings.php:191 #, fuzzy -msgid "Error removing the block." -msgstr "Грешка во снимањето на корисникот." +msgid "Content" +msgstr "Поврзи се" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +#: lib/designsettings.php:204 #, fuzzy -msgid "No profile id in request." -msgstr "Серверот не достави URL за профилот." +msgid "Sidebar" +msgstr "Барај" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -#, fuzzy -msgid "No profile with that id." -msgstr "Оддалечениот профил нема одговарачки профил" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +#: lib/designsettings.php:230 #, fuzzy -msgid "Unsubscribed" -msgstr "Откажи ја претплатата" +msgid "Links" +msgstr "Пријави се" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -#, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "Проблем во снимањето на известувањето." - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "Товарањето на аватарот не успеа." +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Нема такво известување." + +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Account" -msgstr "За" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Креирај нова сметка" - -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "Нема таков OpenID." - -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Помош" - -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "Ново известување" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Ново известување" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "Претплати" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "Нема таков корисник." - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "Креирај нова сметка" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "Јавен" - -#: lib/favorform.php:114 lib/favorform.php:140 -#, fuzzy -msgid "Favor this notice" -msgstr "Нема такво известување." - -#: lib/feedlist.php:64 -msgid "Export data" +#: lib/feed.php:91 +msgid "FOAF" msgstr "" #: lib/galleryaction.php:121 @@ -5295,67 +3872,87 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL на Вашата домашна страница, блог или профил на друго место." -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + #: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Претплати" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Опишете се себе си и сопствените интереси во 140 знаци." - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Каде се наоѓате, на пр. „Град, Држава“." +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Нема таков корисник." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Нема таков корисник." -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Одјави се" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "" @@ -5370,10 +3967,44 @@ msgid "Tags in %s group's notices" msgstr "" #: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " +msgid "This page is not available in a media type you accept" msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Ова е предолго. Максималната должина е 140 знаци." + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Парцијално товарање" + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Системска грешка при товарањето на датотеката." + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Не е слика или датотеката е корумпирана." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Неподдржан фомрат на слики." + +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Нема такво известување." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Ново известување" + #: lib/joinform.php:114 #, fuzzy msgid "Join" @@ -5384,2250 +4015,630 @@ msgstr "Пријави се" msgid "Leave" msgstr "Сними" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Погрешно име или лозинка." -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Креирај нова сметка" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/mailbox.php:139 +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:227 lib/noticelist.php:424 +msgid "from" msgstr "" -#: lib/mail.php:175 +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Потврдување на адресата" + +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s сега ги следи вашите забелешки на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Искрено ваш,\n" +"%4$s.\n" + +#: lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 #, php-format -msgid "You've been nudged by %s" +msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:465 +#: lib/mail.php:288 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s сега ги следи вашите забелешки за %2$s." - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +#: lib/mail.php:412 +#, php-format +msgid "%s status" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "Ново известување" - -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "6 или повеќе знаци" - -#: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy -msgid "in reply to" -msgstr "во одговор на..." - -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -#, fuzzy -msgid "Reply" -msgstr "одговор" - -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s сега ги следи вашите забелешки за %2$s." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -#: lib/personaltagcloudsection.php:56 +#: lib/mail.php:611 #, php-format -msgid "Tags in %s's notices" +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Јавен" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy -msgid "Popular" -msgstr "Пребарување на луѓе" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" -#: lib/searchgroupnav.php:82 -#, fuzzy -msgid "Notice" -msgstr "Известувања" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "Оддалечена претплата" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "Оддалечена претплата" +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Корисникот не може да се освежи/" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/mediafile.php:270 #, php-format -msgid "Groups %s is a member of" +msgid " Try using another %s format." msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: lib/mediafile.php:275 #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: lib/subs.php:53 lib/subs.php:52 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "User has blocked you." -msgstr "Корисникот нема профил." +msgid "Available characters" +msgstr "6 или повеќе знаци" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 +#: lib/noticeform.php:145 #, fuzzy -msgid "Subscribe to this user" -msgstr "Претплатата е одобрена" +msgid "Send a notice" +msgstr "Ново известување" -#: lib/tagcloudsection.php:56 -msgid "None" +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Што има %s?" + +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 +#: lib/noticelist.php:478 #, fuzzy -msgid "Unblock this user" -msgstr "Нема таков корисник." +msgid "in context" +msgstr "Нема содржина!" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" +#: lib/noticelist.php:498 +msgid "Reply to this notice" msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: lib/noticelist.php:499 +#, fuzzy +msgid "Reply" +msgstr "одговор" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Канал со пријатели на %S" +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Канал со пријатели на %S" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Канал со пријатели на %S" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Грешка во внесувањето на новиот профил" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s и пријателите" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Грешка во внесувањето на аватарот" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Грешка во внесувањето на оддалечениот профил" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -#, fuzzy -msgid "Avatar deleted." -msgstr "Аватарот е ажуриран." +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "Дуплирано известување" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Не може да се внесе нова претплата." -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Личен" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Одговори" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +msgid "Tags in %s's notices" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Претплати" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Микроблог на %s" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Сите претплати" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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." +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Претплатници" + +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Претплатници" + +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " -"Термините одделете ги со празни места. Најмала должина е 3 знаци." -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Член од" + +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Јавен" + +#: lib/publicgroupnav.php:82 +msgid "User groups" msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Пребарувај го потокот за „%s“" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " -"име и лозинка пред да ги смените Вашите поставки." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: lib/publicgroupnav.php:92 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Јавен канал" +msgid "Popular" +msgstr "Пребарување на луѓе" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#: lib/searchaction.php:120 #, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Јавен канал" +msgid "Search site" +msgstr "Барај" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: lib/searchaction.php:162 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Јавен канал" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +msgid "Search help" +msgstr "Барај" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: lib/searchgroupnav.php:82 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +msgid "Notice" +msgstr "Известувања" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " -"телефонски број." -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Креирај" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Нема такво известување." +#: lib/section.php:106 +msgid "More..." +msgstr "" -#: actions/showstream.php:149 +#: lib/subgroupnav.php:83 #, fuzzy, php-format -msgid "%s's profile" -msgstr "Профил" +msgid "People %s subscribes to" +msgstr "Оддалечена претплата" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 +#: lib/subgroupnav.php:91 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Канал со известувања на %s" +msgid "People subscribed to %s" +msgstr "Оддалечена претплата" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Канал со известувања на %s" +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Канал со известувања на %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, php-format -msgid "FOAF for %s" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Аватар" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 +#: lib/subs.php:52 #, fuzzy -msgid "Edit profile settings" -msgstr "Поставки на профилот" +msgid "User has blocked you." +msgstr "Корисникот нема профил." -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "Овој код за потврда не е за Вас!" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Не сте претплатени!" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Претплата не може да се избрише." + +#: lib/tagcloudsection.php:56 +msgid "None" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Нема таков корисник." +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Не може да се креира потврда за е-пошта." +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Откажи ја претплатата" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: lib/userprofile.php:116 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Проверете ги овие детали ако сакате да се претплатите на известувањата на " -"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." +msgid "Edit Avatar" +msgstr "Аватар" -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "Поставки на профилот" + +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "пред неколку секунди" + +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "пред една минута" + +#: lib/util.php:848 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +msgid "about %d minutes ago" +msgstr "пред %d минути" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "пред еден час" + +#: lib/util.php:852 +#, php-format +msgid "about %d hours ago" +msgstr "пред %d часа" + +#: lib/util.php:854 +msgid "about a day ago" +msgstr "пред еден ден" + +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "пред %d денови" + +#: lib/util.php:858 +msgid "about a month ago" +msgstr "пред еден месец" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "пред %d месеци" + +#: lib/util.php:862 +msgid "about a year ago" +msgstr "пред една година" + +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +msgid "%s is not a valid color!" +msgstr "Домашната страница не е правилно URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -"Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " -"истата да ја поврзете со Вашиот OpenID." -#: lib/feed.php:85 -msgid "RSS 1.0" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s сега ги следи вашите забелешки на %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Искрено ваш,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Барај" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Нема таков документ." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Не може да се пренасочи кон серверот: %s" - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Нема таков корисник." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Корисникот нема профил." - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s и пријателите" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Нема таков корисник." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Локација" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Нема такво известување." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Невалидна домашна страница: '%s'" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Тој прекар е во употреба. Одберете друг." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Ново известување" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Ново известување" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Неправилен прекар." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Корисникот нема профил." - -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Не ни го испративте тој профил." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Нема таков корисник." - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Корисникот не може да се освежи/" - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Преференциите се снимени." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Нема резултати" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "Корисникот нема профил." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Профилот не може да се сними." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) Ви овозможува да се пријавувате на многу места со " -"истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" -"ја." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Поставки на профилот" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на " -"адресата што ја внесовте во Вашата сметка." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Идентификувани сте. Подолу можете да внесете нова лозинка." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Побарано е пронаоѓање на лозинката" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Грешка со кодот за потврдување." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Претплатата е одобрена" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Нема такво известување." - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Канал со известувања на %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Канал со известувања на %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Канал со известувања на %s" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Нема таков корисник." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Канал со известувања на %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s сега ги следи вашите забелешки за %2$s." - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Канал со известувања на %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Канал со известувања на %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Корисникот не може да се освежи/" - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Корисникот не може да се освежи/" - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s статус на %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Микроблог на %s" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Сите претплати" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Поставки на профилот" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Не ни го испративте тој профил." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Проблем во снимањето на известувањето." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Корисникот нема профил." - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Профил" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Товари" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Промени ја лозинката" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Поврзи се" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Барај" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Пријави се" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Нема таков корисник." - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Нема таков корисник." - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Нема содржина!" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Барај" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Домашната страница не е правилно URL." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Нема такво известување." - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Ова е предолго. Максималната должина е 140 знаци." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Не може да се пренасочи кон серверот: %s" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Биографијата е предолга (максимумот е 140 знаци)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Веќе сте пријавени!" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Не може да се пренасочи кон серверот: %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Не ни го испративте тој профил." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "OpenID формуларот не може да се креира:%s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Профил" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Не ни го испративте тој профил." - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Аватарот е ажуриран." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Ова е предолго. Максималната должина е 140 знаци." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Неподдржан фомрат на слики." - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Биографијата е предолга (максимумот е 140 знаци)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Микроблог на %s" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Корисникот кој го следите не постои." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Не е одобрено." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Белезите за барање не може да се конвертираат во белези за пристап." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Непозната верзија на протоколот OMB." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Нема такво известување." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Нема такво известување." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Микроблог на %s" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." -"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Микроблог на %s" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Сите новини кои се еднакви со бараниот термин „%s“" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Поврзи се" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Опишете се себе си и сопствените интереси во 140 знаци." - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Опишете се себе си и сопствените интереси во 140 знаци." - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Биографијата е предолга (максимумот е 140 знаци)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Неправилно URL на профил (нема YADIS документ)." - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Не може да се земе белег за барање." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Канал со известувања на %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Канал со известувања на %s" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Канал со известувања на %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Одговори испратени до %s" - -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Канал со пријатели на %S" - -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Канал со пријатели на %S" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Канал со пријатели на %S" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "Канал со известувања на %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Известувања" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Канал со известувања на %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Проверете ги овие детали ако сакате да се претплатите на известувањата на " -"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " -"местото за да видите како да ја одобрите претплатата. Вашиот белег за " -"претплата е:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " -"местото за да видите како целосно да ја одбиете претплатата." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Не може да се прочита URL-то на аватарот: '%s'" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Погрешен тип на слика за '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Не може да се пренасочи кон серверот: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Ново известување" - -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "Корисникот не може да се освежи/" - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Одговори испратени до %s" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Проблем во снимањето на известувањето." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Нема код за потврда." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Опишете се себе си и сопствените интереси во 140 знаци." - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Опишете се себе си и сопствените интереси во 140 знаци." - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Ново известување" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%1$s сега ги следи вашите забелешки за %2$s." - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Корисникот не може да се освежи/" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Дуплирано известување" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Неправилна содржина за известување" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "OpenID формуларот не може да се креира:%s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Ова е предолго. Максималната должина е 140 знаци." - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/nb/LC_MESSAGES/statusnet.mo b/locale/nb/LC_MESSAGES/statusnet.mo index b965bd49e..48b0d829e 100644 Binary files a/locale/nb/LC_MESSAGES/statusnet.mo and b/locale/nb/LC_MESSAGES/statusnet.mo differ diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index d2dfcfb30..f744e8273 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -1,6 +1,5 @@ # Translation of StatusNet to Norwegian (bokmål)‬ # -# Author@translatewiki.net: Laaknor # -- # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. @@ -12,5718 +11,2653 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:51+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:31+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.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Søk i strømmen etter \"%s\"" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og " -"telefonnummer." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "fra" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Oppdateringer som svarer til %2$s" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s har invitert deg til %2$s" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%$1s har invitert deg til %2$s (%3$s).\n" -"\n" -"%$2s er en mikrobloggingteneste som lar deg holde deg oppdatert på folk du " -"kjenner og/eller som interesserer deg.\n" -"\n" -"Du kan også dele nyheter om deg sjelv, dine tanker eller livet ditt på " -"nettet med folk som kjenner til deg. Det er supert for å møte nye folk med " -"like interesser.\n" -"\n" -"%1$s sa:\n" -"\n" -"%4$s\n" -"\n" -"Du kan se profilsiden til %1$s på %2$s her:\n" -"\n" -"%5$s\n" -"\n" -"Hvis du vil prøva tjenesten, klikk på lenken nedenfor for å akseptere " -"invitasjonen.\n" -"\n" -"Vennlig hilsen, %2$s\n" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s lytter nå til dine notiser på %2$s." - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s lytter nå til dine notiser på %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Vennlig hilsen,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s sin status på %2$s" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" - -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "%s offentlig strøm" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s og venner" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "%s offentlig tidslinje" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s status" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidslinje" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "%s oppdateringer fra alle sammen!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Du vil straks motta en epost med instruksjoner om hvordan du kan bekrefte " -"din epostadresse)" - -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." -"broughtbyurl%%). " - -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Bidragsytere burde være etterfulgt av fullt navn eller kallenavn." - -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom" - -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 små bokstaver eller nummer, ingen punktum eller mellomrom. Påkrevd." - -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 eller flere tegn" - -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 eller flere tegn. Og ikke glem det!" - -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 eller flere tegn. Påkrevd." - -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 -#, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"En bekreftelseskode ble sendt til lynmeldingsadressen du la til. Du må " -"godkjenne %s for å sende meldinger til deg." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"En bekreftelseskode ble sendt til epostadressen du la til. Sjekk innboksen " -"din (og søppelboksen) for koden, og hvordan du skal bruke den." - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen " -"din for koden, og hvordan du skal bruke den." - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API-metode ikke funnet!" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API-metode under utvikling." - -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Om" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Godta" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Legg til" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Legg til OpenID" - -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Legg til eller fjern OpenID-er" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" - -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Adresser til venner som skal inviteres (én per linje)" - -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Alle abonnementer" - -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Alle oppdateringer for %s" - -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Alle oppdateringer for søket: «%s»" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Allerede innlogget." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Allerede abonnert!" - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Er du sikker på at du vil slette denne notisen?" - -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autoriser abonnementet" - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Brukerbilde" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Brukerbildet har blitt oppdatert." - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Venter på godkjenning. Sjekk din Jabber/GTalk-konto for en melding med " -"instruksjoner (la du %s til vennelisten din?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Venter på bekreftelse av adressen. Sjekk innboksen din (og søppelboksen) for " -"melding med videre veiledning." - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Venter på bekreftelse for dette telefonnummeret." - -#: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy -msgid "Before »" -msgstr "Tidligere »" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Om meg" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "«Om meg» er for lang (maks 140 tegn)." - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Kan ikke slette notisen." - -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Kan ikke lese brukerbilde-URL «%s»" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Klarer ikke å lagre nytt passord." - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Avbryt" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Klarer ikke instansiere OpenID-objekt." - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Klarer ikke normalisere Jabber-IDen" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Klarer ikke normalisere epostadressen" - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Endre" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Endre eposthåndtering" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Endre passord" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Endre passordet ditt" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Endre profilinnstillingene dine" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Bekreft" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Bekreft adresse" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Bekreftelse avbrutt." - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Bekreftelseskode" - -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Fant ikke bekreftelseskode." - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du " -"kanskje...\n" -"\n" -"* Gå til [din profil](%s) og sende din første notis.\n" -"* Legge til en [Jabber/GTalk addresse](%%%%action.imsettings%%%%) så du kan " -"sende notiser fra lynmeldinger.\n" -"* [Søke etter brukere](%%%%action.peoplesearch%%%%) that you may know or " -"that share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Koble til" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Koble til eksisterende konto" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Kontakt" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Klarte ikke å lagre brukerbilde-informasjonen" - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Klarte ikke å lagre den nye profil-informasjonen" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "" - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "" - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "" - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "" - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "" - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "" - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Klarte ikke å lagre profil." - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Klarte ikke å oppdatere bruker." - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Opprett" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Lag en ny bruker med dette nicket." - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Opprett en ny konto" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "" - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Nåværende bekreftede Jabber/GTak-adresse." - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Nåværende bekreftede telefonnummer med mulighet for å motta SMS." - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Nåværende bekreftede e-postadresse" - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Beskriv degselv og dine interesser med 140 tegn" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "E-post" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "E-postadresse" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Innstillinger for e-post" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "" - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "" - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "" - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "" - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "" - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "" - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "" - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "" - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Eksisterende nick" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "OSS/FAQ" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "" - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Feed for %s sine venner" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed for svar til %s" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed for taggen %s" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Fullt navn" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Beklager, navnet er for langt (max 250 tegn)." - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Hjelp" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Hjem" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Hjemmesiden" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "" - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM-adresse" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Innstillinger for IM" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "innkommende e-post" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Feil gammelt passord" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Feil brukernavn eller passord" - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt " -"til din registrerte e-postadresse." - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Ugyldig avatar-URL '%s'" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Ugyldig hjemmeside '%s'" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Ugyldig profil-URL '%s'" - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Ugyldig størrelse" - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Ugyldig brukernavn eller passord" - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "" - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Språk" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "" - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Logg inn" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Logg inn med en [OpenID](%%doc.openid%%)-konto." - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Logg ut" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Lengre navn, helst ditt \"ekte\" navn" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Mistet eller glemt passordet?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Medlem siden" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Mikroblogg av %s" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Ny" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nytt nick" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nytt passord" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "" - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Nick" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Det nicket er allerede i bruk. Prøv et annet." - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Dette nicket er ikke tillatt" - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Nick eller e-postadresse" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Ingen Jabber ID." - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Ingen e-postadresse." - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Ingen id." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "" - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "" - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "" - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Ugyldig Jabber ID" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Ugyldig OpenID" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Ugyldig e-postadresse" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Ugyldig e-postadresse." - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Ugyldig nick." - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Ikke autorisert." - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Ikke logget inn." - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Gammelt passord" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID-URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -#, fuzzy -msgid "OpenID authentication cancelled." -msgstr "OpenID-autentifisering avbrutt." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID fjernet" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Innstillinger for OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Passord" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "" - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Passordet må bestå av 6 eller flere tegn." - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Passordet ble lagret" - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "" - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Personlig" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profil" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Publiser en MicroID for min Jabber/Gtalk-adresse." - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publiser en MicroID for min e-postadresse." - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Nyeste Tagger" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Gjenopprett" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Husk meg" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Fjern" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Fjern OpenID" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Svar" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "Svar til %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Nullstill" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Telefonnummer for SMS" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Innstillinger for SMS" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "" - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Lagre" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Søk" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Send" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Kilde" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistikk" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Tagger" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Tekst" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Tekst-søk" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "" - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "" - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Klarte ikke å lagre profil." -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Den filen er for stor." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Det er allerede din Jabber ID." - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Det er allerede din e-postadresse." - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Det er allerede din ditt telefonnummer." - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Det er ikke din Jabber ID." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Det er ikke din e-postadresse." - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Det er ikke ditt telefonnummer." - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Det er feil IM-adresse." +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s og venner" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 +#, php-format +msgid "%s and friends" +msgstr "%s og venner" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed for %s sine venner" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed for %s sine venner" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed for %s sine venner" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/all.php:127 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "" - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 +#: actions/all.php:132 +#, php-format msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 +#: actions/all.php:134 #, php-format -msgid "These are the people who listen to %s's notices." -msgstr "" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "These are the people whose notices %s listens to." +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s og venner" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API-metode ikke funnet!" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, 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 "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Tidssone" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." msgstr "" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." msgstr "" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." msgstr "" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 +#: actions/apidirectmessage.php:105 #, php-format -msgid "Unrecognized address type %s" +msgid "All the direct messages sent to %s" msgstr "" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." msgstr "" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "" +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Det er allerede din e-postadresse." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." msgstr "" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "Updates from %1$s on %2$s!" +msgid "Could not follow user: %s is already on your list." msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Last opp" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Klarte ikke å oppdatere bruker." -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Klarte ikke å oppdatere bruker." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Klarte ikke å oppdatere bruker." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Klarte ikke å lagre avatar-informasjonen" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Klarte ikke å lagre avatar-informasjonen" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Klarte ikke å lagre avatar-informasjonen" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Det nicket er allerede i bruk. Prøv et annet." -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Ugyldig nick." + +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." msgstr "" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Beklager, navnet er for langt (max 250 tegn)." + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Bioen er for lang (max 140 tegn)" + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." msgstr "" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Wrong size image at '%s'" +msgid "Too many aliases! Maximum %d." msgstr "" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Ja" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig hjemmeside '%s'" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Det nicket er allerede i bruk. Prøv et annet." -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." msgstr "Du er allerede logget inn!" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Klarte ikke å oppdatere bruker." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du er allerede logget inn!" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Klarte ikke å oppdatere bruker." -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" msgstr "" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/apigrouplistall.php:94 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." +msgid "groups on %s" msgstr "" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" msgstr "" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/apigrouplist.php:103 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Groups %s is a member of on %s." msgstr "" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." msgstr "" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." +#: actions/apistatusesshow.php:138 +msgid "Status deleted." msgstr "" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +msgid "That's too long. Max notice size is %d chars." msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." +#: actions/apistatusesupdate.php:193 +msgid "Not found" msgstr "" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "You must be logged in to invite other users to use %s" +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." msgstr "" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" msgstr "" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s tidslinje" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +msgid "Updates from %1$s on %2$s!" msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "noen få sekunder siden" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Oppdateringer som svarer til %2$s" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 +#: actions/apitimelinementions.php:126 #, php-format -msgid "about %d days ago" -msgstr "omtrent %d dager siden" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "about %d hours ago" -msgstr "omtrent %d timer siden" +msgid "%s public timeline" +msgstr "%s offentlig tidslinje" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "about %d minutes ago" -msgstr "omtrent %d minutter siden" +msgid "%s updates from everyone!" +msgstr "%s oppdateringer fra alle sammen!" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "about %d months ago" -msgstr "omtrent %d måneder siden" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "omtrent én dag siden" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "omtrent ett minutt siden" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "omtrent én måned siden" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "omtrent ett år siden" - -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "omtrent én time siden" - -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "slett" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." +msgid "Notices tagged with %s" msgstr "" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "svar" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Mikroblogg av %s" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "" +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "Ingen id." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/attachment.php:73 +msgid "No such attachment." msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." +#: actions/avatarbynickname.php:64 +msgid "No size." msgstr "" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Ugyldig størrelse" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Brukerbilde" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Innstillinger for IM" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#, fuzzy +msgid "Delete" +msgstr "slett" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Last opp" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Brukerbildet har blitt oppdatert." -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." msgstr "" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Brukerbildet har blitt oppdatert." -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "Nytt nick" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Klarte ikke å lagre profil." -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Klarte ikke å lagre profil." -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s og venner" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" msgstr "" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Ikke logget inn." -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/block.php:136 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " +#: actions/block.php:149 +msgid "Do not block this user from this group" msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Ja" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " +#: actions/block.php:150 +msgid "Block this user from this group" msgstr "" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "Du er allerede logget inn!" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/block.php:170 +msgid "Failed to save block information." msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " +#: actions/bookmarklet.php:50 +msgid "Post to " msgstr "" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." msgstr "" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Fant ikke bekreftelseskode." -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#: actions/confirmaddress.php:90 #, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +msgid "Unrecognized address type %s" msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Klarte ikke å oppdatere bruker." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Bekreft adresse" -#: actions/showmessage.php:61 actions/showmessage.php:108 +#: actions/confirmaddress.php:159 #, php-format -msgid "Message to %1$s on %2$s" +msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bekreftelseskode" -#: actions/showstream.php:154 -msgid "Send a message" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" msgstr "" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." msgstr "" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Kan ikke slette notisen." -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Er du sikker på at du vil slette denne notisen?" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan ikke slette notisen." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" +#: actions/doc.php:69 +msgid "No such document." msgstr "" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/editgroup.php:56 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +msgid "Edit %s group" msgstr "" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Bioen er for lang (max 140 tegn)" -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Klarte ikke å oppdatere bruker." -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." +#: actions/editgroup.php:269 +msgid "Options saved." msgstr "" -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Innstillinger for e-post" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adresse" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Nåværende bekreftede e-postadresse" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Fjern" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" +"Venter på bekreftelse av adressen. Sjekk innboksen din (og søppelboksen) for " +"melding med videre veiledning." -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Avbryt" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "E-postadresse" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Legg til" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "innkommende e-post" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Ny" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." msgstr "" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publiser en MicroID for min e-postadresse." -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Lagre" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Ingen e-postadresse." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Klarer ikke normalisere epostadressen" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Ugyldig e-postadresse" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Det er allerede din e-postadresse." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." msgstr "" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" +#: actions/emailsettings.php:358 +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 "" +"En bekreftelseskode ble sendt til epostadressen du la til. Sjekk innboksen " +"din (og søppelboksen) for koden, og hvordan du skal bruke den." -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Det er feil IM-adresse." -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Bekreftelse avbrutt." -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Det er ikke din e-postadresse." -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." msgstr "" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" msgstr "" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: 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 "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/favorited.php:156 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 #, php-format -msgid "New private message from %s" +msgid "%s's favorite notices" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/favoritesrss.php:115 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +msgid "Updates favored by %1$s on %2$s!" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/featured.php:71 #, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +msgid "Featured users, page %d" msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nytt nick" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nytt nick" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s og venner" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 +#: actions/finishremotesubscribe.php:106 #, fuzzy -msgid "Avatar settings" -msgstr "Innstillinger for IM" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" +msgid "You are not authorized." +msgstr "Ikke autorisert." -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 #, fuzzy -msgid "Lost our file." +msgid "No such group." msgstr "Klarte ikke å lagre profil." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Klarte ikke å lagre profil." -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Klarte ikke å lagre profil." -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: actions/block.php:162 actions/block.php:165 +#: actions/groupblock.php:95 #, fuzzy -msgid "You have already blocked this user." +msgid "User is already blocked from group." msgstr "Du er allerede logget inn!" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/groupblock.php:100 +msgid "User is not a member of group." msgstr "" -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "Nytt nick" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 #, fuzzy -msgid "No such group" -msgstr "Klarte ikke å lagre profil." +msgid "Couldn't update your design." +msgstr "Klarte ikke å oppdatere bruker." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +msgid "Design preferences saved." msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" msgstr "" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Bioen er for lang (max 140 tegn)" - -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "Klarte ikke å oppdatere bruker." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Venter på bekreftelse på dette telefonnummeret" +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Avataren har blitt oppdatert." -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/grouplogo.php:398 +msgid "Failed updating logo." msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" msgstr "" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" msgstr "" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/groupmembers.php:473 +msgid "Make Admin" msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" +#: actions/groupsearch.php:52 +#, php-format +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 "" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 +#: actions/groupsearch.php:58 #, fuzzy -msgid "Before" -msgstr "Tidligere »" +msgid "Group search" +msgstr "Tekst-søk" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/groupsearch.php:85 #, php-format -msgid "You have been invited to %s" +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Feed for %s sine venner" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/groups.php:64 #, php-format -msgid "Friends already using %s:" +msgid "Groups, page %d" msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/groups.php:90 #, php-format -msgid "Send invitations" +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: actions/facebookremove.php:56 +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 #, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "Klarte ikke å oppdatere bruker." +msgid "Create a new group" +msgstr "Opprett en ny konto" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." msgstr "" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Innstillinger for IM" -#: actions/facebooksettings.php:106 -#, fuzzy -msgid "Prefix" -msgstr "Profil" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/imsettings.php:89 +msgid "IM is not available." msgstr "" -#: actions/facebooksettings.php:124 +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Nåværende bekreftede Jabber/GTak-adresse." + +#: actions/imsettings.php:114 #, php-format -msgid "If you would like %s to automatically update " +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"Venter på godkjenning. Sjekk din Jabber/GTalk-konto for en melding med " +"instruksjoner (la du %s til vennelisten din?)" -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM-adresse" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Publiser en MicroID for min Jabber/Gtalk-adresse." -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Ingen Jabber ID." + +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Klarer ikke normalisere Jabber-IDen" + +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Ugyldig Jabber ID" + +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Det er allerede din Jabber ID." + +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/featured.php:99 +#: actions/imsettings.php:327 #, php-format -msgid "A selection of some of the great users on %s" +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" +"En bekreftelseskode ble sendt til lynmeldingsadressen du la til. Du må " +"godkjenne %s for å sende meldinger til deg." -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Det er ikke din Jabber ID." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "Avataren har blitt oppdatert." - -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/invite.php:41 #, php-format -msgid "%s group members" +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: actions/groupmembers.php:96 +#: actions/invite.php:72 #, php-format -msgid "%s group members, page %d" +msgid "Invalid email address: %s" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/invite.php:112 +msgid "Invite new users" msgstr "" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: actions/groups.php:90 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +msgid "%s (%s)" +msgstr "%s (%s)" + +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Opprett en ny konto" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" -#: actions/groupsearch.php:57 -#, php-format +#: actions/invite.php:150 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "Tekst-søk" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Adresser til venner som skal inviteres (én per linje)" + +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Bekreftelseskode" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Send" + +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s har invitert deg til %2$s" + +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%$1s har invitert deg til %2$s (%3$s).\n" +"\n" +"%$2s er en mikrobloggingteneste som lar deg holde deg oppdatert på folk du " +"kjenner og/eller som interesserer deg.\n" +"\n" +"Du kan også dele nyheter om deg sjelv, dine tanker eller livet ditt på " +"nettet med folk som kjenner til deg. Det er supert for å møte nye folk med " +"like interesser.\n" +"\n" +"%1$s sa:\n" +"\n" +"%4$s\n" +"\n" +"Du kan se profilsiden til %1$s på %2$s her:\n" +"\n" +"%5$s\n" +"\n" +"Hvis du vil prøva tjenesten, klikk på lenken nedenfor for å akseptere " +"invitasjonen.\n" +"\n" +"Vennlig hilsen, %2$s\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du er allerede logget inn!" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "Klarte ikke å lagre profil." - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Klarte ikke å oppdatere bruker." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Allerede innlogget." -#: actions/microsummary.php:69 -msgid "No current status" +#: actions/login.php:110 actions/login.php:120 +msgid "Invalid or expired token." msgstr "" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Feil brukernavn eller passord" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "Klarte ikke å lagre avatar-informasjonen" - -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "Klarte ikke å lagre avatar-informasjonen" - -#: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy -msgid "That's too long. " -msgstr "Den filen er for stor." - -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Logg inn" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Nick" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Passord" -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Husk meg" -#: actions/nudge.php:97 -msgid "Nudge sent!" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" msgstr "" +"Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy -msgid "OpenID login" -msgstr "OpenID" - -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "Fjern OpenID" - -#: actions/othersettings.php:60 -#, fuzzy -msgid "Other Settings" -msgstr "Innstillinger for IM" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Mistet eller glemt passordet?" -#: actions/othersettings.php:71 -msgid "Manage various other options." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: actions/login.php:286 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" -#: actions/othersettings.php:112 -#, fuzzy -msgid "Service" -msgstr "Søk" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -#, fuzzy -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Bioen er for lang (max 140 tegn)" - -#: actions/passwordsettings.php:69 -#, fuzzy -msgid "Change your password." -msgstr "Endre passord" - -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -#, fuzzy -msgid "Password change" -msgstr "Passordet ble lagret" - -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "Ugyldig e-postadresse" - -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/makeadmin.php:95 #, php-format -msgid "Users self-tagged with %s - page %d" +msgid "%s is already an admin for group \"%s\"." msgstr "" -#: actions/peopletag.php:91 +#: actions/makeadmin.php:132 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "" - -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgid "Can't get membership record for %s in group %s" msgstr "" -#: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " -msgstr "Abonner " - -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Ugyldig hjemmeside '%s'" - -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "Klarte ikke å lagre profil." - -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/makeadmin.php:145 #, php-format -msgid "Public timeline, page %d" +msgid "Can't make %s an admin for group %s" msgstr "" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +#: actions/newgroup.php:53 +msgid "New group" msgstr "" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" msgstr "" -#: actions/register.php:149 -msgid "You can't register if you don't " +#: actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" msgstr "" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." - -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "Beskriv degselv og dine interesser med 140 tegn" - -#: actions/register.php:410 -msgid "Where you are, like \"City, " +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -#: actions/register.php:432 -msgid " except this private data: password, " +#: actions/newnotice.php:69 +msgid "New notice" msgstr "" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: actions/newnotice.php:199 +msgid "Notice posted" msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Tekst-søk" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/noticesearch.php:91 #, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "Svar til %s" +msgid "Search results for \"%s\" on %s" +msgstr "Søkestrøm for «%s»" -#: actions/showfavorites.php:79 +#: actions/noticesearch.php:121 #, php-format -msgid "%s favorite notices, page %d" +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: actions/noticesearch.php:124 #, php-format -msgid "%s group" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: actions/noticesearchrss.php:89 #, php-format -msgid "%s group, page %d" +msgid "Updates with \"%s\"" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy -msgid "Group profile" -msgstr "Klarte ikke å lagre profil." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle oppdateringer for søket: «%s»" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: actions/nudge.php:97 +msgid "Nudge sent!" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -#, fuzzy -msgid "Members" -msgstr "Medlem siden" - -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s sin status på %2$s" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: actions/oembed.php:157 +msgid "content type " msgstr "" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: actions/oembed.php:160 +msgid "Only " msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" +#: actions/opensearch.php:64 +msgid "People Search" msgstr "" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Profil" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 +#: actions/othersettings.php:60 #, fuzzy -msgid "User profile" -msgstr "Klarte ikke å lagre profil." +msgid "Other Settings" +msgstr "Innstillinger for IM" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: actions/othersettings.php:71 +msgid "Manage various other options." msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 +#: actions/othersettings.php:153 #, fuzzy -msgid "All subscribers" -msgstr "Alle abonnementer" +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Bioen er for lang (max 140 tegn)" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" msgstr "" -#: actions/showstream.php:542 +#: actions/outbox.php:61 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "Outbox for %s" msgstr "" -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Endre passord" -#: actions/smssettings.php:335 +#: actions/passwordsettings.php:69 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Venter på bekreftelse på dette telefonnummeret" +msgid "Change your password." +msgstr "Endre passord" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Passordet ble lagret" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Gammelt passord" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "Klarte ikke å lagre avatar-informasjonen" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nytt passord" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "Ugyldig OpenID" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 eller flere tegn" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Bekreft" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" +#: actions/passwordsettings.php:112 +msgid "same as password above" msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Endre" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." msgstr "" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." msgstr "" -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Alle abonnementer" - -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "Alle abonnementer" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Feil gammelt passord" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." msgstr "" -#: actions/subscriptions.php:69 +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Klarer ikke å lagre nytt passord." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Passordet ble lagret" + +#: actions/peoplesearch.php:52 #, php-format -msgid "These are the people whose " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "Ingen Jabber ID." +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#: actions/peopletag.php:70 #, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Mikroblogg av %s" +msgid "Not a valid people tag: %s" +msgstr "Ugyldig e-postadresse" -#: actions/tag.php:66 actions/tag.php:73 +#: actions/peopletag.php:144 #, php-format -msgid "Messages tagged \"%s\", most recent first" +msgid "Users self-tagged with %s - page %d" msgstr "" -#: actions/tagother.php:33 -#, fuzzy -msgid "Not logged in" -msgstr "Ikke logget inn." - -#: actions/tagother.php:39 -msgid "No id argument." +#: actions/postnotice.php:84 +msgid "Invalid notice content" msgstr "" -#: actions/tagother.php:65 -#, fuzzy, php-format -msgid "Tag %s" -msgstr "Tagger" - -#: actions/tagother.php:141 -#, fuzzy -msgid "Tag user" -msgstr "Tagger" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: actions/profilesettings.php:60 +msgid "Profile settings" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 +#: actions/profilesettings.php:71 msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +"You can update your personal profile info here so people know more about you." msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy -msgid "Could not save tags." -msgstr "Klarte ikke å lagre avatar-informasjonen" - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: actions/profilesettings.php:99 +msgid "Profile information" msgstr "" -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "Mikroblogg av %s" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Fullt navn" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Hjemmesiden" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." + +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Beskriv degselv og dine interesser med 140 tegn" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 +#: actions/profilesettings.php:125 actions/register.php:463 #, fuzzy -msgid "Not found." -msgstr "Ingen id." +msgid "Describe yourself and your interests" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Om meg" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy -msgid "Twitter password" -msgstr "Nytt passord" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Tagger" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Språk" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Tidssone" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" +"Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "«Om meg» er for lang (maks 140 tegn)." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ugyldig hjemmeside '%s'" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Klarte ikke å lagre profil." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "" +#: actions/profilesettings.php:336 +#, fuzzy +msgid "Couldn't save tags." +msgstr "Klarte ikke å lagre profil." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: actions/profilesettings.php:344 +msgid "Settings saved." msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: actions/public.php:159 #, fuzzy -msgid "Account" -msgstr "Om" +msgid "Public Stream Feed (Atom)" +msgstr "%s offentlig strøm" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Opprett en ny konto" - -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" +#: actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Hjelp" - -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Du er allerede logget inn!" + +#: actions/recoverpassword.php:62 +msgid "No such recovery code." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." msgstr "" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "Opprett en ny konto" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "Offentlig" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: lib/feedlist.php:64 -msgid "Export data" +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: lib/galleryaction.php:121 -#, fuzzy -msgid "Filter tags" -msgstr "Feed for taggen %s" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -#, fuzzy -msgid "Tag" -msgstr "Tagger" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Gjenopprett" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: actions/recoverpassword.php:208 +msgid "Reset password" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: actions/recoverpassword.php:209 +msgid "Recover password" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -#, fuzzy -msgid "URL of the homepage or blog of the group or topic" -msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Alle abonnementer" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Beskriv degselv og dine interesser med 140 tegn" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 eller flere tegn. Og ikke glem det!" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +#: actions/recoverpassword.php:240 +msgid "Same as password above" msgstr "" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Nullstill" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." msgstr "" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "Logg ut" - -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." msgstr "" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" +"Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt " +"til din registrerte e-postadresse." -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." msgstr "" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Passordet må bestå av 6 eller flere tegn." -#: lib/joinform.php:114 -#, fuzzy -msgid "Join" -msgstr "Logg inn" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "" -#: lib/leaveform.php:114 -#, fuzzy -msgid "Leave" -msgstr "Lagre" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "Ugyldig brukernavn eller passord" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "Opprett en ny konto" +#: actions/register.php:92 +msgid "Sorry, invalid invitation code." +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" msgstr "" -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -#: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format -msgid "Homepage: %s\n" -msgstr "Hjemmesiden: %s\n" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Ugyldig e-postadresse." -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" +#: actions/register.php:212 +msgid "Email address already exists." msgstr "" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Ugyldig brukernavn eller passord" + +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" +"1-64 små bokstaver eller nummer, ingen punktum eller mellomrom. Påkrevd." -#: lib/mail.php:555 -#, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 eller flere tegn. Påkrevd." -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "E-post" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "6 eller flere tegn" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Lengre navn, helst ditt \"ekte\" navn" -#: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy -msgid "in reply to" -msgstr "svar" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 +#: actions/register.php:496 #, fuzzy -msgid "Reply" -msgstr "svar" - -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" +"utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og " +"telefonnummer." -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -#, fuzzy -msgid "Delete" -msgstr "slett" +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du " +"kanskje...\n" +"\n" +"* Gå til [din profil](%s) og sende din første notis.\n" +"* Legge til en [Jabber/GTalk addresse](%%%%action.imsettings%%%%) så du kan " +"sende notiser fra lynmeldinger.\n" +"* [Søke etter brukere](%%%%action.peoplesearch%%%%) that you may know or " +"that share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" +"(Du vil straks motta en epost med instruksjoner om hvordan du kan bekrefte " +"din epostadresse)" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: actions/remotesubscribe.php:129 +msgid "User nickname" msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -#, fuzzy -msgid "Public" -msgstr "Offentlig" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -#, fuzzy -msgid "Recent tags" -msgstr "Nyeste Tagger" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" msgstr "" -#: lib/searchgroupnav.php:82 -msgid "Notice" +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "People %s subscribes to" -msgstr "" +msgid "Replies to %s" +msgstr "Svar til %s" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: actions/replies.php:127 #, fuzzy, php-format -msgid "People subscribed to %s" +msgid "Replies to %s, page %d" msgstr "Svar til %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: actions/replies.php:144 #, php-format -msgid "Groups %s is a member of" +msgid "Replies feed for %s (RSS 1.0)" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: actions/replies.php:151 #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Replies feed for %s (RSS 2.0)" msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Svar til %s" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Svar til %s" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s og venner" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#: actions/showfavorites.php:170 #, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" +msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed for %s sine venner" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#: actions/showfavorites.php:177 #, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" +msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed for %s sine venner" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#: actions/showfavorites.php:184 #, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" +msgid "Feed for favorites of %s (Atom)" msgstr "Feed for %s sine venner" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s og venner" - -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -#, fuzzy -msgid "Avatar deleted." -msgstr "Brukerbildet har blitt oppdatert." - -#: actions/block.php:129 actions/block.php:136 +#: actions/showfavorites.php:205 msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +"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/deletenotice.php:73 actions/deletenotice.php:103 +#: actions/showfavorites.php:207 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/showfavorites.php:211 #, 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." +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: actions/facebooksettings.php:124 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +msgid "%s group" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: actions/showgroup.php:84 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +msgid "%s group, page %d" msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Mikroblogg av %s" - -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -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 "" +#: actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "Klarte ikke å lagre profil." -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Søkestrøm for «%s»" - -#: actions/openidlogin.php:66 -#, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" +#: actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "%s offentlig strøm" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: actions/showgroup.php:334 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/register.php:286 actions/register.php:329 +#: actions/showgroup.php:340 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Klarte ikke å lagre profil." -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +msgid "Members" +msgstr "Medlem siden" + +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -"utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og " -"telefonnummer." -#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistikk" + #: actions/showgroup.php:432 #, fuzzy msgid "Created" msgstr "Opprett" -#: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 #, php-format msgid "" @@ -5734,59 +2668,95 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Klarte ikke å lagre profil." +#: actions/showgroup.php:454 +#, 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 "" + +#: actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" -#: actions/showstream.php:149 +#: actions/showstream.php:73 #, fuzzy, php-format -msgid "%s's profile" -msgstr "Profil" +msgid " tagged %s" +msgstr "Tagger" + +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "" + +#: actions/showstream.php:122 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" -#: actions/showstream.php:163 actions/showstream.php:128 #: actions/showstream.php:129 #, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 #: actions/showstream.php:136 #, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "" -#: actions/showstream.php:177 actions/showstream.php:142 #: actions/showstream.php:143 #, php-format msgid "Notice feed for %s (Atom)" msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 #: actions/showstream.php:148 #, fuzzy, php-format msgid "FOAF for %s" msgstr "Feed for taggen %s" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Brukerbilde" +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Endre profilinnstillingene dine" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: actions/showstream.php:234 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5795,1003 +2765,950 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen " -"din for koden, og hvordan du skal bruke den." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: actions/showstream.php:239 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Klarte ikke å lagre profil." +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Innstillinger for SMS" -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." +#: actions/smssettings.php:91 +msgid "SMS is not available." msgstr "" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Nåværende bekreftede telefonnummer med mulighet for å motta SMS." + +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Venter på bekreftelse for dette telefonnummeret." + +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Bekreftelseskode" + +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Telefonnummer for SMS" + +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#: actions/smssettings.php:174 msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Det er allerede din ditt telefonnummer." -#: lib/dberroraction.php:60 -msgid "Database error" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format +#: actions/smssettings.php:347 +#, fuzzy msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +"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 "" +"En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen " +"din for koden, og hvordan du skal bruke den." -#: lib/feed.php:85 -msgid "RSS 1.0" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Det er ikke ditt telefonnummer." -#: lib/feed.php:89 -msgid "Atom" +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: lib/imagefile.php:75 +#: actions/smssettings.php:476 #, php-format -msgid "That file is too big. The maximum file size is %d." +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 "" -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "" + +#: actions/subedit.php:83 +#, fuzzy +msgid "Could not save subscription." +msgstr "Klarte ikke å lagre avatar-informasjonen" + +#: actions/subscribe.php:55 +#, fuzzy +msgid "Not a local user." +msgstr "Ugyldig OpenID" + +#: actions/subscribe.php:69 +msgid "Subscribed" msgstr "" -"%1$s lytter nå til dine notiser på %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Vennlig hilsen,\n" -"%4$s.\n" -#: lib/mail.php:466 +#: actions/subscribers.php:50 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +msgid "%s subscribers" msgstr "" -#: lib/mail.php:513 +#: actions/subscribers.php:52 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +msgid "%s subscribers, page %d" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: actions/subscribers.php:67 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +msgid "These are the people who listen to %s's notices." msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Søk" - -#: lib/section.php:106 -msgid "More..." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/all.php:80 actions/all.php:127 +#: actions/subscribers.php:110 #, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/all.php:85 actions/all.php:132 +#: actions/subscribers.php:114 #, php-format msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Alle abonnementer" + +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "Alle abonnementer" + +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." msgstr "" -#: actions/all.php:87 actions/all.php:134 +#: actions/subscriptions.php:69 #, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: actions/subscriptions.php:121 #, php-format msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/attachment.php:73 -msgid "No such attachment." -msgstr "" +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s lytter nå til dine notiser på %2$s." -#: actions/block.php:149 -msgid "Do not block this user from this group" +#: actions/subscriptions.php:194 +#, fuzzy +msgid "Jabber" +msgstr "Ingen Jabber ID." + +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/block.php:150 -msgid "Block this user from this group" +#: actions/tagother.php:33 +#, fuzzy +msgid "Not logged in" +msgstr "Ikke logget inn." + +#: actions/tagother.php:39 +msgid "No id argument." msgstr "" -#: actions/blockedfromgroup.php:90 +#: actions/tagother.php:65 #, fuzzy, php-format -msgid "%s blocked profiles" +msgid "Tag %s" +msgstr "Tagger" + +#: actions/tagother.php:77 lib/userprofile.php:75 +#, fuzzy +msgid "User profile" msgstr "Klarte ikke å lagre profil." -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s og venner" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: actions/tagother.php:141 +#, fuzzy +msgid "Tag user" +msgstr "Tagger" + +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/conversation.php:99 +#: actions/tagother.php:200 #, fuzzy -msgid "Conversation" -msgstr "Bekreftelseskode" +msgid "Could not save tags." +msgstr "Klarte ikke å lagre avatar-informasjonen" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Kan ikke slette notisen." +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Mikroblogg av %s" + +#: actions/tag.php:86 #, php-format -msgid "Too many aliases! Maximum %d." +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Ugyldig hjemmeside '%s'" +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Det nicket er allerede i bruk. Prøv et annet." +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed for taggen %s" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: actions/tagrss.php:35 +msgid "No such tag." msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Klarte ikke å lagre avatar-informasjonen" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API-metode under utvikling." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: actions/unsubscribe.php:77 +msgid "No profile id in request." 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." +#: actions/unsubscribe.php:84 +msgid "No profile with that id." msgstr "" -#: actions/favorited.php:156 +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autoriser abonnementet" + +#: actions/userauthorization.php:110 msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Nytt nick" +#: actions/userauthorization.php:188 +msgid "License" +msgstr "" -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Nytt nick" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Godta" -#: actions/file.php:42 -msgid "No attachments" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: actions/userauthorization.php:211 +msgid "Reject" msgstr "" -#: actions/finishopenidlogin.php:211 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Not a valid invitation code." -msgstr "Ugyldig nick." +msgid "Reject this subscription" +msgstr "Alle abonnementer" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "" + +#: actions/userauthorization.php:247 +msgid "Subscription authorized" msgstr "" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Du er allerede logget inn!" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "" -#: actions/groupblock.php:100 -msgid "User is not a member of group." +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/groupblock.php:155 +#: actions/userauthorization.php:301 #, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan ikke lese brukerbilde-URL «%s»" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." msgstr "" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Ingen id." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #, fuzzy -msgid "Couldn't update your design." -msgstr "Klarte ikke å oppdatere bruker." +msgid "Profile design" +msgstr "Profil" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du er allerede logget inn!" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/groupsearch.php:82 +#: classes/File.php:137 #, php-format msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/groupsearch.php:85 +#: classes/File.php:147 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." +#: classes/Message.php:55 +msgid "Could not insert message." msgstr "" -#: actions/invite.php:39 -msgid "Invites have been disabled." +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: classes/Notice.php:179 +msgid "Problem saving notice. Too long." msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#: classes/Notice.php:1120 #, php-format -msgid " Try using another %s format." +msgid "DB error inserting reply: %s" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#: classes/User.php:333 #, php-format -msgid "%s is not a supported filetype on this server." +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Endre profilinnstillingene dine" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" msgstr "" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Endre passordet ditt" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Endre eposthåndtering" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Couldn't save file." +msgid "Design your profile" msgstr "Klarte ikke å lagre profil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/action.php:144 +#, php-format +msgid "%s - %s" msgstr "" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +#: lib/action.php:430 +msgid "Home" +msgstr "Hjem" -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/action.php:432 +#, fuzzy +msgid "Account" +msgstr "Om" + +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" +#: lib/action.php:435 +msgid "Connect" +msgstr "Koble til" + +#: lib/action.php:435 +msgid "Connect to services" msgstr "" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/public.php:82 actions/public.php:83 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." +#: lib/action.php:445 +msgid "Logout" +msgstr "Logg ut" + +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/public.php:182 -msgid "Be the first to post!" +#: lib/action.php:450 +#, fuzzy +msgid "Create an account" +msgstr "Opprett en ny konto" + +#: lib/action.php:453 +msgid "Login to the site" msgstr "" -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Hjelp" + +#: lib/action.php:456 +#, fuzzy +msgid "Help me!" +msgstr "Hjelp" + +#: lib/action.php:459 +msgid "Search" +msgstr "Søk" + +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." +#: lib/action.php:480 +msgid "Site notice" msgstr "" -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +#: lib/action.php:612 +msgid "Page notice" msgstr "" -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +#: lib/action.php:714 +msgid "Secondary site navigation" msgstr "" -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: lib/action.php:721 +msgid "About" +msgstr "Om" + +#: lib/action.php:723 +msgid "FAQ" +msgstr "OSS/FAQ" + +#: lib/action.php:727 +msgid "TOS" msgstr "" -"Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt " -"til din registrerte e-postadresse." -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " +#: lib/action.php:730 +msgid "Privacy" msgstr "" -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Passordet ble lagret" +#: lib/action.php:732 +msgid "Source" +msgstr "Kilde" -#: actions/register.php:86 actions/register.php:92 -msgid "Sorry, invalid invitation code." +#: lib/action.php:734 +msgid "Contact" +msgstr "Kontakt" + +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/replies.php:179 actions/replies.php:198 +#: lib/action.php:767 #, php-format msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." +"broughtbyurl%%). " -#: actions/replies.php:184 actions/replies.php:203 +#: lib/action.php:769 #, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " -#: actions/replies.php:186 actions/replies.php:205 +#: lib/action.php:771 #, php-format msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s og venner" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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." +#: lib/action.php:785 +msgid "Site content license" msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/action.php:1062 +msgid "After" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" +#: lib/action.php:1070 +#, fuzzy +msgid "Before" +msgstr "Tidligere »" + +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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. " +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Ugyldig OpenID" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Tagger" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "" -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 +#: lib/command.php:99 #, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +msgid "Nudge sent to %s" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 +#: lib/command.php:126 #, php-format msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#: lib/command.php:315 #, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +msgid "%1$s (%2$s)" msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s lytter nå til dine notiser på %2$s." - -#: actions/tag.php:77 actions/tag.php:86 +#: lib/command.php:318 #, php-format -msgid "Notice feed for tag %s (RSS 1.0)" +msgid "Fullname: %s" msgstr "" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Feed for taggen %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Det er allerede din e-postadresse." - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Klarte ikke å oppdatere bruker." - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Klarte ikke å oppdatere bruker." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Oppdateringer som svarer til %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Mikroblogg av %s" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." +#: lib/command.php:327 +#, php-format +msgid "About: %s" msgstr "" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Alle abonnementer" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Profil" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/usergroups.php:153 +#: lib/command.php:439 #, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Du er allerede logget inn!" +msgid "Reply to %s sent" +msgstr "Svar til %s" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/File.php:127 classes/File.php:137 +#: lib/command.php:502 #, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." +msgid "Subscribed to %s" msgstr "" -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/File.php:145 classes/File.php:154 +#: lib/command.php:530 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." +msgid "Unsubscribed from %s" msgstr "" -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Klarte ikke å lagre avatar-informasjonen" + +#: lib/command.php:602 #, php-format -msgid "Welcome to %1$s, @%2$s!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#: lib/common.php:191 #, fuzzy -msgid "Design your profile" -msgstr "Klarte ikke å lagre profil." +msgid "No configuration file found. " +msgstr "Fant ikke bekreftelseskode." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/attachmentlist.php:87 -msgid "Attachments" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/attachmentlist.php:265 -msgid "Author" +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Profil" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" #: lib/designsettings.php:101 @@ -6843,690 +3760,843 @@ msgstr "Koble til" msgid "Sidebar" msgstr "Søk" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Tekst" + #: lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Logg inn" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/galleryaction.php:121 +#, fuzzy +msgid "Filter tags" +msgstr "Feed for taggen %s" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/galleryaction.php:140 +#, fuzzy +msgid "Tag" +msgstr "Tagger" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + +#: lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Alle abonnementer" + +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" + +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "" + +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + +#: lib/groupnav.php:112 +#, fuzzy +msgid "Logo" +msgstr "Logg ut" + +#: lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %s." msgstr "" -#: lib/designsettings.php:248 -msgid "Restore default designs" +#: lib/imagefile.php:80 +msgid "Partial upload." msgstr "" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." msgstr "" -#: lib/designsettings.php:257 -msgid "Save design" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." msgstr "" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/imagefile.php:105 +msgid "Unsupported image file format." msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Klarte ikke å lagre profil." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/jabber.php:192 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "notice id: %s" msgstr "" -#: lib/groupnav.php:100 -msgid "Blocked" +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "Logg inn" + +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Lagre" + +#: lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "Ugyldig brukernavn eller passord" + +#: lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Opprett en ny konto" + +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" +#: lib/mailbox.php:139 +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/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "fra" + +#: lib/mail.php:172 +msgid "Email address confirmation" msgstr "" -#: lib/mail.php:556 +#: lib/mail.php:174 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"Hey, %s.\n" "\n" -"The URL of your notice is:\n" +"Someone just entered this email address on %s.\n" "\n" -"%3$s\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" "\n" -"The text of your notice is:\n" +"\t%s\n" "\n" -"%4$s\n" +"If not, just ignore this message.\n" "\n" -"You can see the list of %1$s's favorites here:\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s lytter nå til dine notiser på %2$s." + +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" "\n" -"%5$s\n" +"\t%3$s\n" "\n" +"%4$s%5$s%6$s\n" "Faithfully yours,\n" -"%6$s\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s lytter nå til dine notiser på %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Vennlig hilsen,\n" +"%4$s.\n" -#: lib/mail.php:646 +#: lib/mail.php:253 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "Location: %s\n" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "Hjemmesiden: %s\n" + +#: lib/mail.php:257 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" +"Bio: %s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 +#: lib/mail.php:285 #, php-format -msgid "Your %s Facebook application access has been disabled." +msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:685 +#: lib/mail.php:288 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" "\n" -"Regards,\n" +"More email instructions at %3$s.\n" "\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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." +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s status" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -#: lib/profileaction.php:177 -msgid "User ID" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Søk" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/webcolor.php:82 +#: lib/mail.php:554 #, php-format -msgid "%s is not a valid color!" +msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/webcolor.php:123 +#: lib/mail.php:556 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Klarte ikke å lagre profil." - -#: actions/apidirectmessage.php:89 +#: lib/mail.php:611 #, php-format -msgid "Direct messages from %s" +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#: lib/mail.php:613 #, php-format -msgid "That's too long. Max message size is %d chars." +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Klarte ikke å oppdatere bruker." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Bioen er for lang (max 140 tegn)" - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Du er allerede logget inn!" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Klarte ikke å oppdatere bruker." +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Du er allerede logget inn!" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Klarte ikke å oppdatere bruker." +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" msgstr "" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 +#: lib/mediafile.php:270 #, php-format -msgid "That's too long. Max notice size is %d chars." +msgid " Try using another %s format." msgstr "" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 +#: lib/mediafile.php:275 #, php-format -msgid "Max notice size is %d chars, including attachment URL." +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: actions/bookmarklet.php:50 -msgid "Post to " +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Bioen er for lang (max 140 tegn)" +#: lib/messageform.php:162 lib/noticeform.php:173 +#, fuzzy +msgid "Available characters" +msgstr "6 eller flere tegn" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" +#: lib/noticeform.php:145 +msgid "Send a notice" msgstr "" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" msgstr "" -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Ikke autorisert." +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." +#: lib/noticelist.php:478 +msgid "in context" msgstr "" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Klarte ikke å lagre profil." +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" -#: actions/getfile.php:79 +#: lib/noticelist.php:499 #, fuzzy -msgid "Cannot read file." -msgstr "Klarte ikke å lagre profil." +msgid "Reply" +msgstr "svar" -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" +#: lib/nudgeform.php:116 +msgid "Nudge this user" msgstr "" -#: actions/imsettings.php:89 -msgid "IM is not available." +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -#: actions/login.php:259 actions/login.php:286 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" msgstr "" -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" msgstr "" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Alle oppdateringer for søket: «%s»" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "" -#: actions/oembed.php:157 -msgid "content type " +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" msgstr "" -#: actions/oembed.php:160 -msgid "Only " +#: lib/oauthstore.php:345 +msgid "Duplicate notice" msgstr "" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." msgstr "" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Beskriv degselv og dine interesser med 140 tegn" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Personlig" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Beskriv degselv og dine interesser med 140 tegn" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Svar" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "«Om meg» er for lang (maks 140 tegn)." +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" msgstr "" -#: actions/replies.php:151 +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "Replies feed for %s (RSS 2.0)" +msgid "Tags in %s's notices" msgstr "" -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Svar til %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Svar til %s" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "" -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed for %s sine venner" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Alle abonnementer" -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed for %s sine venner" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "" -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed for %s sine venner" +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Alle abonnementer" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "Klarte ikke å lagre profil." +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Medlem siden" -#: actions/shownotice.php:90 -msgid "Notice deleted." +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/smssettings.php:91 -msgid "SMS is not available." +#: lib/publicgroupnav.php:78 +#, fuzzy +msgid "Public" +msgstr "Offentlig" + +#: lib/publicgroupnav.php:82 +msgid "User groups" msgstr "" -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#, fuzzy +msgid "Recent tags" +msgstr "Nyeste Tagger" + +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +#: lib/publicgroupnav.php:92 +msgid "Popular" msgstr "" -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Søk" + +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Søk" + +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." +#: lib/searchgroupnav.php:82 +msgid "Notice" msgstr "" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" msgstr "" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:338 +#: lib/subgroupnav.php:83 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "People %s subscribes to" msgstr "" -#: actions/userauthorization.php:343 +#: lib/subgroupnav.php:91 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Kan ikke lese brukerbilde-URL «%s»" +msgid "People subscribed to %s" +msgstr "Svar til %s" -#: actions/userauthorization.php:348 +#: lib/subgroupnav.php:99 #, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Groups %s is a member of" msgstr "" -#: lib/action.php:435 -msgid "Connect to services" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: lib/action.php:785 -msgid "Site content license" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" +#: lib/subs.php:52 +msgid "User has blocked you." msgstr "" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Svar til %s" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "" -#: lib/command.php:441 -msgid "Error saving notice." +#: lib/subs.php:136 +msgid "Couldn't delete subscription." msgstr "" -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Fant ikke bekreftelseskode." +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: lib/common.php:194 -msgid "Go to the installer." +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" msgstr "" -#: lib/galleryaction.php:139 -msgid "Select tag to filter" +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "Brukerbilde" + +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: lib/groupeditform.php:168 +#: lib/userprofile.php:248 #, fuzzy -msgid "Describe the group or topic" -msgstr "Beskriv degselv og dine interesser med 140 tegn" +msgid "Edit profile settings" +msgstr "Endre profilinnstillingene dine" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Beskriv degselv og dine interesser med 140 tegn" +#: lib/userprofile.php:249 +msgid "Edit" +msgstr "" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -#: lib/mail.php:556 +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "noen få sekunder siden" + +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "omtrent ett minutt siden" + +#: lib/util.php:848 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "about %d minutes ago" +msgstr "omtrent %d minutter siden" -#: lib/mail.php:611 +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "omtrent én time siden" + +#: lib/util.php:852 #, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgid "about %d hours ago" +msgstr "omtrent %d timer siden" -#: lib/mail.php:613 +#: lib/util.php:854 +msgid "about a day ago" +msgstr "omtrent én dag siden" + +#: lib/util.php:856 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgid "about %d days ago" +msgstr "omtrent %d dager siden" -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "fra" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "omtrent én måned siden" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "omtrent %d måneder siden" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "omtrent ett år siden" -#: lib/oauthstore.php:345 -msgid "Duplicate notice" +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" msgstr "" -#: actions/login.php:110 actions/login.php:120 -msgid "Invalid or expired token." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Klarte ikke å lagre avatar-informasjonen" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "" -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %s." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." msgstr "" -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/nl/LC_MESSAGES/statusnet.mo b/locale/nl/LC_MESSAGES/statusnet.mo index c2f7d2de6..ef46506ae 100644 Binary files a/locale/nl/LC_MESSAGES/statusnet.mo and b/locale/nl/LC_MESSAGES/statusnet.mo differ diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index f097a8d75..e979675fb 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -6,5176 +6,3307 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:57+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:37+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Stroom doorzoeken naar \"%s\"" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " -"telefoonnummer." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " van " - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Updates in antwoord op %2$s" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s heeft u uitgenodigd voor %2$s" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s heeft u uitgenodigd voor %2$s (%3$s).\n" -"\n" -"%2$s is een microblogdienst waarmee u mensen op de hoogte kunt houden van " -"wat u interesseert en bezig houdt.\n" -"\n" -"U kunt ook nieuws over uzelf of uw ideeën en gedachten met anderen delen. " -"Het is ook de ideale plek om mensen te ontmoeten met dezelfde interesses als " -"u.\n" -"\n" -"%1$s schreef:\n" -"\n" -"%4$s\n" -"\n" -"U kunt %1$s's profielpagina op %2$s hier bekijken:\n" -"\n" -"%5$s\n" -"\n" -"Als u het wilt proberen, klik dan op de verwijzing hieronder om de " -"uitnodiging te accepteren.\n" -"\n" -"%6$s\n" -"\n" -"Als u geen interesse hebt, kunt u dit bericht negeren. Bedankt voor uw " -"geduld.\n" -"\n" -"Met vriendelijke groet, %2$s\n" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s volgt nu uw berichten %2$s." - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s volgt nu uw berichten op %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Met vriendelijke groet,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s updates die een reactie zijn op updates van %2$s / %3$s." - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "Status van %1$s op %2$s" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" +msgstr "Deze pagina bestaat niet" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Onbekende gebruiker." -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:84 #, php-format -msgid "%s Public Stream" -msgstr "%s publieke stream" +msgid "%s and friends, page %d" +msgstr "%s en vrienden, pagina %d" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s en vrienden" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/all.php:99 #, php-format -msgid "%s public timeline" -msgstr "%s publieke tijdlijn" +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed voor vrienden van %s (RSS 1.0)" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 +#: actions/all.php:107 #, php-format -msgid "%s status" -msgstr "%s status" +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed voor vrienden van %s (RSS 2.0)" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/all.php:115 #, php-format -msgid "%s timeline" -msgstr "%s tijdlijn" +msgid "Feed for friends of %s (Atom)" +msgstr "Feed voor vrienden van %s (Atom)" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/all.php:127 #, php-format -msgid "%s updates from everyone!" -msgstr "%s updates van iedereen" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"U ontvangt snel een e-mailbericht met daarin instructies over hoe u uw e-" -"mail kunt bevestigen." +"Dit is de tijdlijn voor %s en vrienden, maar niemand heeft nog mededelingen " +"doen uitgaan." -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/all.php:132 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -"**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." -"broughtbyurl%%). " +"Probeer te abonneren op meer gebruikers, [wordt lid van een groep](%%action." +"groups%%) of plaats zelf berichten." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 +#: actions/all.php:134 #, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** is een microblogdienst. " - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -". Van de oorspronkelijke auteurs dient de volledige naam of gebruikersnaam " -"te worden vermeld." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties. Verplicht." +#: actions/all.php:165 +msgid "You and friends" +msgstr "U en vrienden" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "Zes of meer tekens" +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Updates van %1$s en vrienden op %2$s." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "De API-functie is niet aangetroffen!" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "Zes of meer tekens. Verplicht" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Deze methode heeft een POST nodig." -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet " -"ermee akkoord gaan dat %s berichten aan u verzendt." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"Een bevestigingscode is verzonden naar het e-mailadres dat u hebt " -"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " -"hoe het te gebruiken." +"De server was niet in staat zoveel POST-gegevens af te handelen (%s bytes) " +"vanwege de huidige instellingen." -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt " -"toegevoegd. Controleer uw inbox (en spambox!) voor de code en instructies." - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "De API-functie is niet aangetroffen!" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Deze gebruiker heeft geen profiel." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "De API-functie is in bewerking." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Het blokkeren van de gebruiker is mislukt." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Over" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Het deblokkeren van de gebruiker is mislukt." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Aanvaarden" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Het bericht bevat geen inhoud!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Toevoegen" +#: actions/apidirectmessagenew.php:135 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/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "OpenID toevoegen" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "De ontvanger is niet aangetroffen." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "OpenID's toevoegen en verwijderen" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adres" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" +"U kunt geen directe berichten sturen aan gebruikers die niet op uw " +"vriendenlijst staan." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Adressen van uit te nodigen vrienden (één per regel)" +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "Directe berichten van %s" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Alle abonnementen" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "Alle directe berichten door %s verzonden" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 +#: actions/apidirectmessage.php:101 #, php-format -msgid "All updates for %s" -msgstr "Alle updates voor %s" +msgid "Direct messages to %s" +msgstr "Directe beichten aan %s" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apidirectmessage.php:105 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" +msgid "All the direct messages sent to %s" +msgstr "Alle directe berichten verzonden aan %s" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "U bent al aangemeld." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Er is geen status gevonden met dit ID." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "U bent al geabonneerd!" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "Deze status is al toegevoegd aan de favorieten." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Het was niet mogelijk een favoriet aan te maken." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Abonneren" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "Deze status staat niet in de favorieten." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Voortaan automatisch aanmelden. Niet gebruiken op gedeelde computers!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." msgstr "" -"Automatisch abonneren bij abonnement op mij (beste voor automatische " -"processen)" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +"Het was niet mogelijk dit bericht van uw favorietenlijst te verwijderen." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "De avatar is bijgewerkt." +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "U kunt de gebruiker %s niet volgen, omdat deze gebruiker niet bestaat." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber/GTalk-" -"gebruiker op een bericht met nadere instructies. Hebt u %s aan uw " -"contactenlijst toegevoegd?" +msgid "Could not follow user: %s is already on your list." +msgstr "U kunt de gebruiker %s niet volgen, omdat deze al op uw lijst staat." -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." msgstr "" -"Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox en uw " -"spambox voor een bericht met nadere instructies." - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Er wordt gewacht op bevestiging van dit telefoonnummer." +"Het is niet mogelijk deze gebruiker niet langer te volgende: de gebruiker is " +"niet aangetroffen." -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Voor »" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "U kunt het abonnement op uzelf niet opzeggen." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Beschrijving" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Er moeten twee gebruikersnamen opgegeven worden." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "De beschrijving is te lang (maximaal 140 tekens)." +#: actions/apifriendshipsshow.php:135 +msgid "Could not determine source user." +msgstr "Het was niet mogelijk de brongebruiker te bepalen." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Deze mededeling kan niet verwijderd worden." +#: actions/apifriendshipsshow.php:143 +msgid "Could not find target user." +msgstr "Het was niet mogelijk de doelgebruiker te vinden." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Het was niet mogelijk de groep aan te maken." -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +msgid "Could not create aliases." +msgstr "Het was niet mogelijk de aliassen aan te maken." -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Annuleren" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Het was niet mogelijk uw OpenID te verwerken." +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"De gebruikersnaam moet alleen bestaan uit kleine letters en cijfers, en mag " +"geen spaties bevatten." -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Het was niet mogelijk om het Jabber-ID te normaliseren" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "" +"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Kan het emailadres niet normaliseren" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Geen geldige gebruikersnaam." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Wijzigen" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "De thuispagina is geen geldige URL." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "E-mailafhandeling wijzigen" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "De volledige naam is te lang (maximaal 255 tekens)." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Wachtwoord wijzigen" +#: actions/apigroupcreate.php:261 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "De beschrijving is te lang. Gebruik maximaal %d tekens." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Uw wachtwoord wijzigen" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Locatie is te lang (maximaal 255 tekens)." -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Uw profielgegevens wijzigen" +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Te veel aliasen! Het maximale aantal is %d." -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Bevestigen" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ongeldig alias: \"%s\"" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Adres bevestigen" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "De alias \"%s\" wordt al gebruikt. Geef een ander alias op." -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Bevestiging geannuleerd." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Bevestigingscode" +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "U bent al lid van die groep." -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "De bevestigingscode niet gevonden." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "Een beheerder heeft ingesteld dat u geen lid mag worden can die groep." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apigroupjoin.php:138 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Gefeliciteerd, %s! Welkom bij %%%%site.name%%%%. Hier staan aan aantal " -"handelingen die u wellicht uit wilt voeren:\n" -"\n" -"* Naar uw [profiel](%s) gaan en uw eerste bericht verzenden;\n" -"* Een [Jabber/GTalk-adres](%%%%action.imsettings%%%%) toevoegen zodat u " -"vandaaruit mededelingen kunt verzenden;\n" -"* [Gebruikers zoeken](%%%%action.peoplesearch%%%%) die u al kent of waarmee " -"u interesses deelt;\n" -"* [Uw profiel](%%%%action.profilesettings%%%%) bijwerken om anderen meer " -"over uzelf te vertellen;\n" -"* De [online documentatie](%%%%doc.help%%%%) raadplegen voor mogelijkheden " -"die u nog niet kent.\n" -"\n" -"Dank u wel voor het registreren en we hopen dat deze dienst u biedt wat u " -"ervan verwacht." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Koppelen" +msgid "Could not join user %s to group %s." +msgstr "Het was niet mogelijk gebruiker %s toe te voegen aan de groep %s." -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Bestaande gebruiker koppelen" +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "U bent geen lid van deze groep." -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Contact" +#: actions/apigroupleave.php:124 +#, php-format +msgid "Could not remove user %s to group %s." +msgstr "Het was niet mogelijk gebruiker %s uit de group %s te verwijderen." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Het was niet mogelijk het OpenID-formulier aan te maken: %s" +msgid "%s groups" +msgstr "%s groepen" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apigrouplistall.php:94 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "U kunt de gebruiker %s niet volgen, omdat deze al op uw lijst staat." +msgid "groups on %s" +msgstr "groepen op %s" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "U kunt de gebruiker %s niet volgen, omdat deze gebruiker niet bestaat." +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "Groepen van %s" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apigrouplist.php:103 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Het was niet mogelijk om door te verwijzen naar de server: %s" +msgid "Groups %s is a member of on %s." +msgstr "Groepen waarvan %s lid is op %s." -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "De avatarinformatie kon niet opgeslagen worden" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Deze methode heeft een POST of DELETE nodig." -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "De nieuwe profielinformatie kon niet opgeslagen worden" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "U kunt de status van een andere gebruiker niet verwijderen." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Het was niet mogelijk om een ander op u te laten abonneren" +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "De status is verwijderd." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Kan niet abonneren " +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Er is geen status gevonden met dit ID." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" -"Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te " -"werken." +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Dat is te lang. De maximale mededelingslengte is 140 tekens." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "" -"Het was niet mogelijk de verzoekentokens om te zetten naar toegangstokens." +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Niet gevonden" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "De e-mailbevestiging kon niet verwijderd worden." +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" +"De maximale mededelingenlengte is %d tekens, inclusief de URL voor de " +"bijlage." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Kon abonnement niet verwijderen." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "Niet-ondersteund bestandsformaat." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Kan geen ene status vinden" - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Het was niet mogelijk een verzoektoken te krijgen." +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favorieten van %s" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "De bevestigingscode kon niet ingevoegd worden." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s updates op de favorietenlijst geplaatst door %s / %s" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Kon nieuw abonnement niet toevoegen." +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s tijdlijn" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Het profiel kon niet opgeslagen worden." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Updates van %1$s op %2$s." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" -"Het was niet mogelijk de instelling voor automatisch abonneren voor de " -"gebruiker bij te werken." +#: actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Updates over %2$s" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Kan de gebruikersgegevens niet vernieuwen" +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s updates die een reactie zijn op updates van %2$s / %3$s." -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Kon gebruiker niet actualiseren." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s publieke tijdlijn" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Aanmaken" +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s updates van iedereen" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "Mededelingen met het label %s" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Nieuw gebruiker aanmaken" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Updates met het label %1$s op %2$s!" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "" -"Bezig met het aanmaken van een nieuwe OpenID-gebruiker bij een bestaande " -"gebruiker." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Niet aangetroffen." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Huidige bevestigde Jabber/GTalk adres." +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "Dat document bestaat niet." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Huidige bevestigde telefoonnummer met SMS-functie." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Geen gebruikersnaam." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Huidige bevestigde e-mailadres" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Geen afmeting." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Op dit moment" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Ongeldige afmetingen." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 +#: actions/avatarsettings.php:78 #, php-format -msgid "DB error inserting reply: %s" +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" +"U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Mededeling verwijderen" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Gebruiker zonder bijbehorend profiel" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Beschrijf uzelf en uw interesses in 140 tekens" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "E-mail" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Avatarinstellingen" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "E-mailadres" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Origineel" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "E-mailinstellingen" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Voorvertoning" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Het e--mailadres bestaat al." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Verwijderen" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "E-mailadresbevestiging" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Uploaden" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "E-mailadres, zoals \"gebruikersnaam@example.com\"" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Uitsnijden" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "E-mailadressen" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Voer een gebruikersnaam of e-mailadres in." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Het formulier is onverwacht ingezonden." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Voer de code in die u via uw telefoon hebt ontvangen." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Selecteer een vierkant de afbeelding om als uw avatar in te stellen" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Er is een fout opgetreden tijdens het autoriseren van het token" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Ons databestand is verloren gegaan." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "" -"Er is een fout opgetreden tijdens het koppelen van de gebruiker aan OpenID." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "De avatar is bijgewerkt." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Er is een fout opgetreden bij het koppelen van de gebruiker." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Het bijwerken van de avatar is mislukt." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Er is een fout opgetreden bij het toevoegen van de avatar" +#: actions/avatarsettings.php:387 +msgid "Avatar deleted." +msgstr "De avatar is verwijderd." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Er is een fout opgetreden tijdens het invoegen van een nieuw profiel" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Geen gebruikersnaam" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "" -"Er is een fout opgetreden tijdens het invoegen in het profiel op afstand." +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Deze groep bestaat niet" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Er is een fout opgetreden bij het opslaan van de adresbevestiging." +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "%s geblokkeerde profielen" -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "" -"Er is een fout opgetreden tijdens het opslaan van het profiel op afstand." +#: actions/blockedfromgroup.php:93 +#, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s geblokkeerde profielen, pagina %d" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Er is een fout opgetreden bij het opslaan van het profiel." +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "Een lijst met voor deze groep geblokkeerde gebruikers." -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Er is een fout opgetreden bij het opslaan van de gebruiker." +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "Deze gebruiker weer toegang geven tot de groep" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Fout bij opslaan gebruiker; ongeldig." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Deblokkeer" -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Er is een fout opgetreden tijdens het instellen van de gebruiker." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Deblokkeer deze gebruiker." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Er is een fout opgetreden tijdens het bijwerken van het profiel" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Niet aangemeld." -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "" -"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Er is geen profiel opgegeven." -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Er is een fout opgetreden die te maken heeft met de bevestigingscode." +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Er is geen profiel met dat ID." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "De gebruikersnaam bestaat al" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Gebruiker blokkeren" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "Veelgestelde vragen" +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Het bijwerken van de avatar is mislukt." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Nee" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Feed voor vrienden van %s" +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "Deze gebruiker niet de toegang tot deze groep ontzeggen" -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed voor antwoorden aan %s" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Ja" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed voor label %s" +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Inhoud van mededelingen vinden" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "U hebt deze gebruiker reeds geblokkeerd." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Gebruikers op deze site vinden" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals " -"invoeren alvorens u uw instellingen kunt wijzigen." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "Verzenden naar " -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Volledige naam" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Geen bevestigingscode." -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "De volledige naam is te lang (maximaal 255 tekens)." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "De bevestigingscode niet gevonden." -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Help" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Dit is niet uw bevestigingscode!" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Thuis" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Onbekend adrestype %s" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Thuispagina" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Dit adres is al bevestigd." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "De thuispagina is geen geldige URL." +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Kon gebruiker niet actualiseren." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Ik wil mededelingen per e-mail versturen." +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "De e-mailbevestiging kon niet verwijderd worden." -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Adres bevestigen" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM-adres" +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Het adres \"%s\" is voor uw gebruiker bevestigd." -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM-instellingen" +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "Dialoog" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en " -"wachtwoord om met uw OpenID te koppelen." +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Mededelingen" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Als u een OpenID aan uw gebruiker wilt toevoegen, vul het dan in het veld " -"hieronder in en klik op \"Toevoegen\"." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "De mededeling bestaat niet." + +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Deze mededeling kan niet verwijderd worden." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +#: actions/deletenotice.php:103 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Als u uw wachwoord kwijt bent, dan kunnen we u een nieuw wachtwoord sturen " -"op het e-mailadres dat u bij uw gebruiker hebt geregistreerd." +"U staat op het punt een mededeling permanent te verwijderen. Als dit " +"uitgevoerd is, kan het niet ongedaan gemaakt worden." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Inkomende e-mail" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Mededeling verwijderen" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Het e-mailadres voor inkomende mail is verwijderd." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Het oude wachtwoord is onjuist" +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "Deze mededeling niet verwijderen" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "De gebruikersnaam of wachtwoord is onjuist." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Deze mededeling verwijderen" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -"De instructies om uw wachtwoord te herstellen zijn verstuurd naar het e-" -"mailadres dat voor uw gebruiker is geregistreerd." +"Er is een probleem ontstaan met uw sessietoken. Probeer het nog een keer." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Ongeldige avatar-URL \"%s\"" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Deze mededeling staats niet op uw favorietenlijst." -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Ongeldig e-mailadres: %s" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Aan favorieten toevoegen" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Ongeldige thuspagina \"%s\"" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Onbekend document." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 +#: actions/editgroup.php:56 #, php-format -msgid "Invalid license URL '%s'" -msgstr "Ongeldige licentie-URL \"%s\"" +msgid "Edit %s group" +msgstr "Groep %s bewerken" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Ongeldige mededelinginhoud" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "U moet aangemeld zijn om een groep aan te kunnen maken." -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Ongeldige bericht-URI" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "U moet beheerder zijn om de groep te kunnen bewerken" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Ongeldige bericht-URL" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Gebruik dit formulier om de groep te bewerken." -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 +#: actions/editgroup.php:201 actions/newgroup.php:145 #, php-format -msgid "Invalid profile URL '%s'." -msgstr "Ongeldige profiel-URL \"%s\"." - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Ongeldige profiel-URL (foutieve opmaak)" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Er is een ongeldige profiel-URL teruggestuurd door de server." - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Ongeldige afmetingen." +msgid "description is too long (max %d chars)." +msgstr "de beschrijving is te lang (maximaal %d tekens)" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Ongeldige gebruikersnaam of wachtwoord." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Het was niet mogelijk de groep bij te werken." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "De uitnodiging(en) zijn verzonden" +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "De instellingen zijn opgeslagen." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Uitnodiging(en) zijn verzonden aan de volgende mensen:" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "E-mailinstellingen" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Uitnodigen" +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "E-mail ontvangen van %%site.name%% beheren." -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Nieuwe gebruikers uitnodigen" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adres" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"De site werkt met de [StatusNet](http://status.net/) microblogsoftware, " -"versie %s, beschikbaar onder de [GNU Affero General Public License](http://" -"www.fsf.org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Huidige bevestigde e-mailadres" -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Het Jabber-ID wordt al gebruikt door een andere gebruiker." +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Verwijderen" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format +#: actions/emailsettings.php:113 msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Jabber-ID of GTalk-adres, zoals \"gebruiker@example.org\". Zorg ervoor dat u " -"%s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Taal" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Taal is te lang (max 50 tekens)." - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Locatie" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Locatie is te lang (maximaal 255 tekens)." +"Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox en uw " +"spambox voor een bericht met nadere instructies." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Aanmelden" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Annuleren" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Aanmelden met een [OpenID-gebruiker](%%doc.openid%%)." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "E-mailadres" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " -"gebruikersnaam? [Registreer](%%action.register%%) dan een nieuw gebruiker, " -"of probeer [OpenID](%%action.openidlogin%%)." +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "E-mailadres, zoals \"gebruikersnaam@example.org\"" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Afmelden" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Toevoegen" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Een langere naam, mogelijk uw echte naam" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Inkomende e-mail" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Wachtwoord kwijt of vergeten?" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Een nieuw e-mailadres instellen voor het onvangen van e-mail; verwijdert het " "eerder geinstelde e-mailadres." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "E-mail ontvangen van %%site.name%% beheren." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Nieuw" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Lid sinds" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Voorkeuren" -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Microblog van %s" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Mij e-mailen bij nieuwe abonnementen." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"De provider van uw mobiele telefoon. Als u een provider kent die e-mail via " -"SMS ondersteunt, maar nog niet in de lijst is opgenomen, laat dit ons dan " -"via e-mail weten op het e-mailadres %s." - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Mijn teksten en bestanden zijn beschikbaar onder " - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Nieuw" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Nieuw e-mailadres om e-mail te versturen aan %s" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nieuwe gebruikersnaam" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nieuw bericht" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nieuw wachtwoord" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Het nieuwe wachtwoord is opgeslagen. U bent nu aangemeld." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Gebruikersnaam" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Mij een e-mail sturen als iemand mijn mededeling als favoriet instelt." -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "" -"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Mij een e-mail sturen als iemand mij een privébericht zendt." -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -"De gebruikersnaam moet alleen bestaan uit kleine letters en cijfers, en mag " -"geen spaties bevatten." - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "De opgegeven gebruikersnaam is niet toegestaan." - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "De gebruikersnaam van de gebruiker die u wilt volgen" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Gebruikersnaam of e-mailadres" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Nee" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Geen Jabber-ID." +"Mij een e-mail sturen als iemand mij een antwoord met \"@\" erin stuurt." -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Geen autorisatieverzoek!" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Vrienden toestaan me te porren en te e-mailen." -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Er is geen provider geselecteerd." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Ik wil mededelingen per e-mail versturen." -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Er is geen code ingevoerd" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Een MicroID voor mijn e-mailadres publiceren." -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Geen bevestigingscode." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Opslaan" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Geen inhoud!" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "De voorkeuren zijn opgeslagen." -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 #: actions/emailsettings.php:319 msgid "No email address." msgstr "Geen e-mailadres" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Geen ID." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Kan het emailadres niet normaliseren" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Geen binnenkomend e-mailadres" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres." -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "De server aan de andere kant heeft geen gebruikersnaam opgegeven." +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "U hebt dit al ingesteld als uw e-mailadres." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Geen gebruikersnaam." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Dit e-mailadres is al geregistreerd door een andere gebruiker." + +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "De bevestigingscode kon niet ingevoegd worden." + +#: actions/emailsettings.php:358 +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 "" +"Een bevestigingscode is verzonden naar het e-mailadres dat u hebt " +"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " +"hoe het te gebruiken." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 #: actions/emailsettings.php:378 actions/imsettings.php:351 #: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Er is geen openstaand bevestigingsverzoek om te annuleren." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Geen telefoonnummer." - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Er is geen profiel-URL teruggestuurd door de server." - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Die gebruiker heeft geen e-mailadres geregistreerd." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Dat is het verkeerde IM-adres." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Geen verzoek gevonden!" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Bevestiging geannuleerd." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Geen resultaten" +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Dit is niet uw e-mailadres." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Geen afmeting." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Het adres is verwijderd." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Er is geen status gevonden met dit ID." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Geen binnenkomend e-mailadres" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Er is geen status gevonden met dit ID." +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Kan de gebruikersgegevens niet vernieuwen" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Het opgegeven OpenID bestaat niet." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Het e-mailadres voor inkomende mail is verwijderd." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Onbekend document." +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "De mededeling bestaat niet." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Populaire mededelingen" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Onbekende herstelcode." +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Populaire mededelingen, pagina %d" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Onbekend abonnement" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Onbekende gebruiker." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "De meest populaire mededelingen op de site op dit moment." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -"Er bestaat geen gebruiker met het opgegeven e-mailadres of de opgegeven " -"gebruikersnaam." -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Geen weer te geven gebruikers!" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Geen geldige herstelcode." +#: 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 "" +"U kunt een mededeling aan uw favorieten toevoegen door op de knop \"Aan " +"favorieten toevoegen\" te klikken bij mededelingen die u de moeite waard " +"vindt." -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Geen geregistreerde gebruiker" +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Geen ondersteund gegevensformaat." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Favoriete mededelingen van %s" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Geen geldige Jabber-ID" +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Updates op de favorietenlijst van %1$s op %2$s." -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Geen geldige OpenID." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Deze mededeling staat al in uw favorietenlijst." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Van favotietenlijst verwijderen" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Geen geldig e-mailadres." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Nieuwe gebruikers" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Geen geldige gebruikersnaam." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Nieuwe gebruikers, pagina %d" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Geen geldige profiel-URL (ongeldige diensten)." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Een selectie van de actieve gebruikers op %s" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Geen geldige profiel-URL (geen XRDS gedefinieerd)." +#: actions/file.php:34 +msgid "No notice id" +msgstr "Geen mededelings-ID" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Geen geldige profiel-URL (geen YADIS-document)." +#: actions/file.php:38 +msgid "No notice" +msgstr "Geen mededeling" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Het bestand is geen afbeelding of het bestand is beschadigd." +#: actions/file.php:42 +msgid "No attachments" +msgstr "Geen bijlagen" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Niet geautoriseerd." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "Geen toegevoegde bijlagen" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Onverwacht antwoord!" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Niet gevonden" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Niet aangemeld." - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Niet geabonneerd!" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Mededeling zoeken" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Mededelingenfeed voor %s" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Mededeling heeft geen profiel" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Mededelingen" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Mededelingen met het label %s" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Oud wachtwoord" +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "De gebruiker waarnaar wordt geluisterd bestaat niet." -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID-gebruiker instellen" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID automatisch verzenden" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Aanmelden met OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID-URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "De OpenID-authenticatie is geannuleerd." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID-authenticatie niet gelukt: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID-fout: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID verwijderd." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID-instellingen." - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "U kunt het lokale abonnement gebruiken!" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Gedeeltelijke upload." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" +"Die gebruiker heeft de mogelijkheid om te abonneren voor u geblokkeerd." -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Wachtwoord" +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "U hebt niet de juiste toegangsrechten." -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Het wachtwoord en de bevestiging komen niet overeen." +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" +"Het was niet mogelijk het verzoektoken te converteren naar een toegangstoken." -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Het wachtwoord moet uit zes of meer tekens bestaan." +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" +"De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Wachtwoordherstel aangevraagd" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" +"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Het wachtwoord is opgeslagen." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "De opgegeven groep bestaat niet." -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "De wachtwoorden komen niet overeen." +#: actions/getfile.php:75 +msgid "No such file." +msgstr "Het bestand bestaat niet." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Gebruikers" +#: actions/getfile.php:79 +msgid "Cannot read file." +msgstr "Het bestand kon niet gelezen worden." -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Mensen zoeken" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "Er is geen groep aangegeven." -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Gebruikers zoeken" +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "Alleen een beheerder kan groepsleden blokkeren." -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Persoonlijk" +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Persoonlijk bericht" +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "De gebruiker is geen lid van de groep." -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "Gebruiker toegang tot de groep blokkeren" -#: ../actions/userauthorization.php:78 +#: actions/groupblock.php:155 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -"Controleer alstublieft deze details om vast te stellen dat u zich wilt " -"abonneren of de mededelingen van deze gebruiker. Als u niet hebt verzocht te " -"abonneren op de mededelingen van een andere gebruiker, klik dan op " -"\"Annuleren\"." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Mededeling versturen als mijn Jabber/GTalk-status wijzigt." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" +"Er is een databasefout opgetreden bij het uitsluiten van de gebruiker van de " +"groep." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Voorkeuren" +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Geen ID" -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "De voorkeuren zijn opgeslagen." +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Voorkeurstaal" +#: actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "Groepsontwerpen" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Privacy" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +msgid "Couldn't update your design." +msgstr "Het was niet mogelijk uw ontwerp bij te werken." -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profiel" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" +msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan!" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Profiel-URL" +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +msgid "Design preferences saved." +msgstr "De ontwerpvoorkeuren zijn opgeslagen." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Profielinstellingen" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Groepslogo" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Profiel onbekend" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" +"Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %" +"s." -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Openbare feed" +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "Selecteer een vierkant uit de afbeelding die het logo wordt." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Openbare tijdlijn" +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Logo geactualiseerd." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Een MicroID voor mijn Jabber/GTalk-adres publiceren." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Het bijwerken van het logo is mislukt." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Een MicroID voor mijn e-mailadres publiceren." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "leden van de groep %s" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Recente labels" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "% groeps leden, pagina %d" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Herstellen" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Ledenlijst van deze groep" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Wachtwoord herstellen" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Beheerder" -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Herstelcode voor onbekende gebruiker." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Blokkeren" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registreren" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Deze gebruiker blokkeren" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Registratie is niet toegestaan." +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "Deze gebruiker groepsbeheerder maken" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "De registratie is voltooid" +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "Beheerder maken" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Afwijzen" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "Deze gebruiker beheerder maken" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Aanmeldgegevens onthouden" +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Updates voor leden van %1$s op %2$s." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Profiel op afstand zonder overeenkomend profiel" +#: actions/groupsearch.php:52 +#, php-format +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 "" +"Zoeken naar groepen op %%site.name%% op basis van naam, locatie of " +"interesses of beschrijving. Scheid de zoektermen met spaties. Iedere " +"zoekterm moet uit drie of meer tekens bestaan." -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Abonneren op afstand" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Groepen zoeken" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Verwijderen" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "Geen resultaten." -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "OpenID verwijderen" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/groupsearch.php:85 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -"Als u uw enige OpenID verwijdert kunt u niet langer aanmelden. Als u het " -"wilt verwijderen, voeg dan eerst een andere OpenID toe." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Antwoorden" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Groepen" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/groups.php:64 #, php-format -msgid "Replies to %s" -msgstr "Antwoorden aan %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Herstellen" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Wachtwoord herstellen" +msgid "Groups, page %d" +msgstr "Groepen, pagina %d" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS-telefoonnummer" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Nieuwe groep aanmaken" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS-instellingen" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "Alleen beheerders kunnen groepsleden deblokkeren." -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS-bevestiging" +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "De gebruiker is niet de toegang tot de groep ontzegd." -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Gelijk aan het wachtwoord hierboven" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Er is een fout opgetreden bij het verwijderen van de blokkade." -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM-instellingen" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Opslaan" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"instant messages" +"\"](%%doc.im%%). Maak hieronder uw instellingen." -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Zoeken" +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "IM is niet beschikbaar." -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Feed doorzoeken" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Huidige bevestigde Jabber/GTalk adres." -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/imsettings.php:114 #, php-format msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"Zoek naar mededelingen op %%site.name%% op basis van inhoud. Scheid " -"zoektermen met spaties. Zoektermen moeten uit drie of meer tekens bestaan." +"Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber/GTalk-" +"gebruiker op een bericht met nadere instructies. Hebt u %s aan uw " +"contactenlijst toegevoegd?" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM-adres" + +#: actions/imsettings.php:126 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Zoeken naar gebruikers op %%site.name%% op basis van hun naam, locatie of " -"interesses. Scheid de zoektermen met spaties. Zoektermen moeten uit drie of " -"meer tekens bestaan." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Selecteer een provider" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Verzenden" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Mij e-mailen bij nieuwe abonnementen." +"Jabber-ID of GTalk-adres, zoals \"gebruiker@example.org\". Zorg ervoor dat u " +"%s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 +#: actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Stuur mij berichten via Jabber/GTalk." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Stuur me mededelingen via SMS. Ik begrijp dat dit exorbitante rekeningen van " -"mijn provider kan opleveren." +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Mededeling versturen als mijn Jabber/GTalk-status wijzigt." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 +#: actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Stuur me antwoorden via Jabber/GTalk van gebruiker op wie ik niet " "geabonneerd ben." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Instellingen" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "De instellingen zijn opgeslagen." - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "De meest populaire labels van de afgelopen week" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Een MicroID voor mijn Jabber/GTalk-adres publiceren." -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Deze OpenID wordt al door een andere gebruiker gebruikt." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Geen Jabber-ID." -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Er is iets eigenaardigs gebeurd." +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Het was niet mogelijk om het Jabber-ID te normaliseren" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Inkomende e-mail is niet toegestaan." +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Geen geldige Jabber-ID" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Dit is niet uw inkomende e-mailadres." +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "U hebt dit al ingesteld als uw Jabber-ID." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Bron" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Het Jabber-ID wordt al gebruikt door een andere gebruiker." -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistieken" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet " +"ermee akkoord gaan dat %s berichten aan u verzendt." -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Het opgeslagen OpenID is niet gevonden." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Abonneren" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Dit is niet uw Jabber-ID." -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Abonnees" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Postvak IN van %s - pagina %d" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Het abonnement is geautoriseerd" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Postvak IN van %s" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Het abonnement is afgewezen" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "Dit is uw Postvak IN dat uw inkomende privéberichten bevat." -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Abonnementen" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "Het is niet mogelijk uitnodigingen te verzenden." -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" +"U moet aangemeld zijn om anderen te kunnen uitnodigen gebruik te maken van %s" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Labels" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Ongeldig e-mailadres: %s" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Tekst" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "De uitnodiging(en) zijn verzonden" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Tekst doorzoeken" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Nieuwe gebruikers uitnodigen" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Dit is niet uw OpenID." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "U bent als geabonneerd op deze gebruikers:" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Dit adres is al bevestigd." +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Dit is niet uw bevestigingscode!" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Deze gebruikers zijn al geregistreerd en u kunt zich automatisch bij hun " +"abonneren:" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Dit e-mailadres is al geregistreerd door een andere gebruiker." +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Uitnodiging(en) zijn verzonden aan de volgende mensen:" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Dat bestand is te groot." +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"U wordt op de hoogte gesteld wanneer uw genodigden de uitnodiging accepteren " +"en zich bij de site registreren. Dank u wel voor het laten groeien van de " +"gemeenschap!" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "U hebt dit al ingesteld als uw Jabber-ID." +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Gebruik deze pagina om uw vrienden en collega´s uit te nodigen deze dienst " +"te gebruiken." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "U hebt dit al ingesteld als uw e-mailadres." +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "E-mailadressen" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "U hebt dit al ingesteld als uw telefoonnummer." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Adressen van uit te nodigen vrienden (één per regel)" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Dit is niet uw Jabber-ID." +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Persoonlijk bericht" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Dit is niet uw e-mailadres." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)." -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Dit is niet uw telefoonnummer." +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Verzenden" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Dat is het verkeerde IM-adres." +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s heeft u uitgenodigd voor %2$s" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Dit is het verkeerde bevestigingsnummer." - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Dit telefoonnummer is al in gebruik bij een andere gebruiker." - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Dat is te lang. De maximale lengte voor mededelingen is 140 tekens." - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Dat is te lang. De maximale lengte voor mededelingen is 255 tekens." - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/invite.php:228 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Het adres \"%s\" is voor uw gebruiker bevestigd." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Het adres is verwijderd." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de website voor details over hoe het " -"abonnement te autoriseren." - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de website voor details over hoe het " -"abonnement volledig af te wijzen." +"%1$s heeft u uitgenodigd voor %2$s (%3$s).\n" +"\n" +"%2$s is een microblogdienst waarmee u mensen op de hoogte kunt houden van " +"wat u interesseert en bezig houdt.\n" +"\n" +"U kunt ook nieuws over uzelf of uw ideeën en gedachten met anderen delen. " +"Het is ook de ideale plek om mensen te ontmoeten met dezelfde interesses als " +"u.\n" +"\n" +"%1$s schreef:\n" +"\n" +"%4$s\n" +"\n" +"U kunt %1$s's profielpagina op %2$s hier bekijken:\n" +"\n" +"%5$s\n" +"\n" +"Als u het wilt proberen, klik dan op de verwijzing hieronder om de " +"uitnodiging te accepteren.\n" +"\n" +"%6$s\n" +"\n" +"Als u geen interesse hebt, kunt u dit bericht negeren. Bedankt voor uw " +"geduld.\n" +"\n" +"Met vriendelijke groet, %2$s\n" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Dit zijn de gebruikers die de mededelingen van %s volgen." +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "U moet aangemeld zijn om lid te worden van een groep." -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Dit zijn de gebruikers die uw mededelingen volgen." +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "U bent al lid van deze groep" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/joingroup.php:128 lib/command.php:234 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt." +msgid "Could not join user %s to group %s" +msgstr "Het was niet mogelijk om de gebruiker %s toe te voegen aan de groep %s" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Dit zijn de gebruikers van wie u de mededelingen volgt." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s is lid geworden van de groep %s" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Deze gebruikers zijn al geregistreerd en u kunt zich automatisch bij hun " -"abonneren:" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "U moet aangemeld zijn om een groep te kunnen verlaten." -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Deze bevestigingscode is te oud. Begin alstublieft opnieuw." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "U bent geen lid van deze groep" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Dit formulier zou zichzelf automatisch moeten versturen. Als dat niet " -"gebeurt, klik dan op \"Opslaan\" om naar uw OpenID-provider te gaan." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Er is geen groepslidmaatschap aangetroffen." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/leavegroup.php:127 lib/command.php:284 #, 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 "" -"Dit is de eerste keer dat u hebt aangemeld bij %s. U moet nu uw OpenID " -"koppelen aan een lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of " -"verbinden via uw bestaande gebruiker, als u die hebt." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Deze methode heeft een POST of DELETE nodig." +msgid "Could not remove user %s to group %s" +msgstr "De gebruiker %s kon niet uit de groet %s verwijderd worden" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Deze methode heeft een POST nodig." +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s heeft de groep %s verlaten" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Deze pagina is niet beschikbaar in een mediatype dat u accepteert" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "U bent al aangemeld." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Tijdzone" +#: actions/login.php:110 actions/login.php:120 +msgid "Invalid or expired token." +msgstr "Het token is ongeldig of verlopen." -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Er is geen tijdzone geselecteerd." +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "De gebruikersnaam of wachtwoord is onjuist." -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Om u te abonneren kunt u [aanmelden](%%action.login%%), of een nieuw " -"gebruiker [registreren](%%action.register%%). Als u al een gebruiker bij een " -"[compatibele microblogsite](%%doc.openmublog%%) hebt, voer dan hieronder uw " -"profiel-URL in." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Er is een fout opgetreden tijdens het instellen van de gebruiker." -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Er moeten twee gebruikersnamen opgegeven worden." +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Aanmelden" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "De URL van uw thuispagina, blog of profiel bij een andere website" +#: actions/login.php:243 +msgid "Login to site" +msgstr "Aanmelden" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Gebruikersnaam" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Het formulier is onverwacht ingezonden." +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Wachtwoord" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Het wachtwoord is onverwacht opnieuw ingesteld." +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Aanmeldgegevens onthouden" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Onbekende handeling" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Voortaan automatisch aanmelden. Niet gebruiken op gedeelde computers!" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Onbekende versie van het OMB-protocol." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Wachtwoord kwijt of vergeten?" -#: ../lib/util.php:269 lib/util.php:285 +#: actions/login.php:282 msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" -"Tenzij anders gespecificeerd valt de inhoud van deze site onder het " -"copyright van de auteurs en is beschikbaar onder de_" +"Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals " +"invoeren alvorens u uw instellingen kunt wijzigen." -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 +#: actions/login.php:286 #, php-format -msgid "Unrecognized address type %s" -msgstr "Onbekend adrestype %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Abonnement opheffen" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Niet ondersteunde OMB-versie" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Niet ondersteund beeldbestandsformaat." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " +"gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Updates via SMS" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "Alleen beheerders kunnen andere gebruikers beheerder maken." -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Updates via instant messenger (IM)" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "%s is al beheerder van de groep \"%s\"" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/makeadmin.php:132 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Updates van %1$s en vrienden op %2$s." +msgid "Can't get membership record for %s in group %s" +msgstr "Het was niet mogelijk te bevestigen dat %s lid is van de groep %s" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/makeadmin.php:145 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Updates van %1$s op %2$s." +msgid "Can't make %s an admin for group %s" +msgstr "Het is niet mogelijk %s beheerder te maken van de groep %s" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Uploaden" +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Geen huidige status" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Hier kunt u een nieuwe \"avatar\" (gebruikersafbeelding) uploaden. U kunt " -"het plaatje achteraf niet bewerken, dus zorg ervoor dat het min of meer " -"vierkant is. Het moet ook onder de sitelicentie vallen. Gebruik een " -"afbeelding die uw eigendom is en die u wilt delen." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Nieuwe profielafbeelding uploaden" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Gebruik deze pagina om uw vrienden en collega´s uit te nodigen deze dienst " -"te gebruiken." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Nieuwe groep" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Gebruik dit formulier om een nieuwe groep aan te maken." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Gebruiker waarnaar geluisterd wordt bestaat niet." - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Deze gebruiker heeft geen profiel." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nieuw bericht" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Gebruikersnaam" +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "U kunt geen bericht naar deze gebruiker zenden." -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Gebruiker niet gevonden" +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Geen inhoud!" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "In welke tijdzone verblijft u meestal?" +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Er is geen ontvanger aangegeven." -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Hallo, %s." +#: actions/newmessage.php:164 lib/command.php:370 +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." -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" +#: actions/newmessage.php:181 +msgid "Message sent" +msgstr "Bericht verzonden." -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "Wrong image type for '%s'" -msgstr "Het beelbestandstype voor \"'%s\" is onjuist" +msgid "Direct message to %s sent" +msgstr "Het directe bericht aan %s is verzonden" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "De afbeelding bij \"%s\" heeft verkeerde afmetingen" +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Er is een Ajax-fout opgetreden" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Ja" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nieuw bericht" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "U hebt dit OpenID al gekoppeld." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "De mededeling is verzonden" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +#: actions/noticesearch.php:68 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"U staat op het punt een mededeling definitief te verwijderen. Deze handeling " -"kan niet ongedaan gemaakt worden." - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "U bent al aangemeld!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "U bent als geabonneerd op deze gebruikers:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "U bent niet bevriend met de aangegeven gebruiker." - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Hier kunt u uw wachtwoord wijzigen. Kies een sterk wachtwoord!" +"Zoek naar mededelingen op %%site.name%% op basis van inhoud. Scheid " +"zoektermen met spaties. Zoektermen moeten uit drie of meer tekens bestaan." -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Als u een gebruiker registreet, kunt u mededelingen gaan versturen." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Tekst doorzoeken" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/noticesearch.php:91 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "U kunt SMS-berichten per e-mail ontvangen van %%site.name%%." +msgid "Search results for \"%s\" on %s" +msgstr "Zoekresultaten voor \"%s\" op %s" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +#: actions/noticesearch.php:121 +#, php-format msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Verwijderen een OpenID van uw gebruiker door de klikken op \"Verwijderen\"." -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/noticesearch.php:124 #, php-format msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"instant messages" -"\"](%%doc.im%%). Maak hieronder uw instellingen." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "Updates met \"%s\"" + +#: actions/noticesearchrss.php:91 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Updates die overeenkomen met de zoekterm \"%1$s\" op %2$s." + +#: actions/nudge.php:85 msgid "" -"You can update your personal profile info here so people know more about you." +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"Hier kunt u uw persoonlijke profiel bijwerken met informatie over uzelf voor " -"andere gebruikers." +"Deze gebruiker is niet te porren of heeft zijn e-mailadres nog niet " +"bevestigd." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "U kunt het lokale abonnement gebruiken!" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "De por is verzonden" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -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." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "De por is verzonden!" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "U hebt dat profiel niet ingezonden" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Mededeling heeft geen profiel" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"U hebt een nieuw postadres op %1$s.\n" -"\n" -"Zend een e-mail naar %2$s om nieuwe berichten te versturen.\n" -"\n" -"Meer informatie over e-mailen vindt u op %3$s.\n" -"\n" -"Met vriendelijke groet,\n" -"%4$s" +msgid "%1$s's status on %2$s" +msgstr "Status van %1$s op %2$s" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "U kunt de status van een andere gebruiker niet verwijderen." +#: actions/oembed.php:157 +msgid "content type " +msgstr "inhoudstype " -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" -"U moet aangemeld zijn om anderen te kunnen uitnodigen gebruik te maken van %s" +#: actions/oembed.php:160 +msgid "Only " +msgstr "Alleen " -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"U wordt op de hoogte gesteld wanneer uw genodigden de uitnodiging accepteren " -"en zich bij de site registreren. Dank u wel voor het laten groeien van de " -"gemeenschap!" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Geen ondersteund gegevensformaat." -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "U bent geïdentificeerd. Voer hieronder een nieuw wachtwoord in. " +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Mensen zoeken" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Uw OpenID-URL" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Mededeling zoeken" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Uw gebruikersnaam op deze server, of uw geregistreerde e-mailadres." +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Overige instellingen" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"Met [OpenID](%%doc.openid%%) kunu op heel veel websites aanmelden met " -"dezelfde gebruiker. U kunt hier uw gekoppelde OpenID's beheren." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Overige instellingen beheren." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "een paar seconden geleden" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "URL's inkorten met" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "ongeveer %d dagen geleden" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Te gebruiken automatische verkortingsdienst." -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "ongeveer %d uur geleden" +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "Profielontwerpen bekijken" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "Profielontwerpen weergeven of verbergen" + +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "De URL voor de verkortingdienst is te lang (maximaal 50 tekens)." -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 +#: actions/outbox.php:58 #, php-format -msgid "about %d minutes ago" -msgstr "ongeveer %d minuten geleden" +msgid "Outbox for %s - page %d" +msgstr "Postvak UIT voor %s - pagina %d" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 +#: actions/outbox.php:61 #, php-format -msgid "about %d months ago" -msgstr "ongeveer %d maanden geleden" +msgid "Outbox for %s" +msgstr "Postvak UIT voor %s" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "ongeveer een dag geleden" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "Dit is uw Postvak UIT waarin de door u verzonden privéberichten staan." -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "ongeveer een minuut geleden" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Wachtwoord wijzigen" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "ongeveer een maand geleden" +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Wachtwoord wijzigen" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "ongeveer een jaar geleden" +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Wachtwoord wijzigen" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "ongeveer een uur geleden" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Oud wachtwoord" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "verwijderen" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "in antwoord op..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "antwoord" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "gelijk aan wachtwoord hierboven" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nieuw wachtwoord" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "Dit bestandstype wordt niet ondersteund" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Later" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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." +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "Zes of meer tekens" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Deze mededeling staats niet op uw favorietenlijst." +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Bevestigen" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" -"Het was niet mogelijk dit bericht van uw favorietenlijst te verwijderen." +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "gelijk aan wachtwoord hierboven" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Aan favorieten toevoegen" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Wijzigen" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Mij een e-mail sturen als iemand mijn mededeling als favoriet instelt." +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Het wachtwoord moet zes of meer tekens bevatten." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Mij een e-mail sturen als iemand mij een privébericht zendt." +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "De wachtwoorden komen niet overeen." -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Deze mededeling staat al in uw favorietenlijst." +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Het oude wachtwoord is onjuist" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Het was niet mogelijk een favoriet aan te maken." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Fout bij opslaan gebruiker; ongeldig." -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Uit favorieten verwijderen" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "Favoriete mededelingen van %s" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Het wachtwoord is opgeslagen." -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 +#: actions/peoplesearch.php:52 #, php-format -msgid "Feed of favorite notices of %s" -msgstr "Feed met favoriete mededelingen van %s" +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Zoeken naar gebruikers op %%site.name%% op basis van hun naam, locatie of " +"interesses. Scheid de zoektermen met spaties. Zoektermen moeten uit drie of " +"meer tekens bestaan." + +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Gebruikers zoeken" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/peopletag.php:70 #, php-format -msgid "Inbox for %s - page %d" -msgstr "Postvak IN van %s - pagina %d" +msgid "Not a valid people tag: %s" +msgstr "Geen geldig gebruikerslabel: %s" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/peopletag.php:144 #, php-format -msgid "Inbox for %s" -msgstr "Postvak IN van %s" +msgid "Users self-tagged with %s - page %d" +msgstr "Gebruikers die zichzelf met %s hebben gelabeld - pagina %d" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "Dit is uw Postvak IN dat uw inkomende privéberichten bevat." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Ongeldige mededelinginhoud" -#: actions/invite.php:178 actions/invite.php:213 +#: actions/postnotice.php:90 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"%1$s heeft u uitgenodigd om hem te volgen op %2$s (%3$s).\n" -"\n" +"De mededelingenlicentie \"%s\" is niet compatibel met de licentie \"%s\" van " +"deze site." -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "In het vervolg automatisch aanmelden. " +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Profielinstellingen" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Herhaal hier om veiligheidsredenen uw " +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Hier kunt u uw persoonlijke profiel bijwerken met informatie over uzelf voor " +"andere gebruikers." -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Meld u aan met uw gebruikersnaam en wachtwoord. " +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Profielinformatie" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Dit is te lang. De maximale lengte is 140 tekens." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Er is geen ontvanger aangegeven." +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Volledige naam" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "U kunt geen bericht naar deze gebruiker zenden." +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Thuispagina" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -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." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "De URL van uw thuispagina, blog of profiel bij een andere website" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "De opgegeven gebruiker bestaat niet" +#: actions/profilesettings.php:122 actions/register.php:460 +#, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Geef een beschrijving van uzelf en uw interesses in %d tekens" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nieuw bericht" +#: actions/profilesettings.php:125 actions/register.php:463 +msgid "Describe yourself and your interests" +msgstr "Beschrijf uzelf en uw interesses" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Mededeling zonder bekend profiel" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Beschrijving" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "Met [OpenID](%%doc.openid%%) kunt u aanmelden bij heel veel websites " +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Locatie" + +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Als u een OpenID wilt toevoegen aan uw gebruiker, " +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Labels" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"Door uw enige OpenID te verwijderen zou u niet langer kunnen aanmelden! " +"Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of " +"spaties" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "U kunt een OpenID van uw gebruiker verwijderen " +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Taal" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Postvak UIT voor %s - pagina %d" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Voorkeurstaal" -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Postvak UIT voor %s" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Tijdzone" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "Dit is uw Postvak UIT waarin de door u verzonden privéberichten staan." +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "In welke tijdzone verblijft u meestal?" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/profilesettings.php:160 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -"Zoeken naar gebruikers van %%site.name%% op naam, locatie of interesse. " - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Hier kunt u uw persoonlijke profiel bijwerken " +"Automatisch abonneren bij abonnement op mij (beste voor automatische " +"processen)" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Gebruiker zonder bijbehorend profiel" +#: actions/profilesettings.php:221 actions/register.php:223 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "De beschrijving is te lang (maximaal %d tekens)." -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Deze bevestigingscode is te oud. " +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Er is geen tijdzone geselecteerd." -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Als u uw wachtwoord vergeten of verloren hebt" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Taal is te lang (max 50 tekens)." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "U bent geïdentificeerd. Voer een " +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ongeldig label: '%s'" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Uw naam op deze server, " +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" +"Het was niet mogelijk de instelling voor automatisch abonneren voor de " +"gebruiker bij te werken." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instructies voor het opnieuw instellen van uw wachtwoord " +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Het profiel kon niet opgeslagen worden." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Het nieuwe wachtwoord is ingesteld. " +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Het was niet mogelijk de labels op te slaan." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Het wachtwoord moet zes of meer tekens bevatten." +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "De instellingen zijn opgeslagen." -#: actions/register.php:216 +#: actions/public.php:83 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "Gefeliciteerd, %s. Welkom bij %%%%site.name%%%%. Nu wilt u wellicht..." - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "U ontvangt nu snel een e-mail met " +msgid "Beyond the page limit (%s)" +msgstr "Meer dan de paginalimiet (%s)" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Om te abonneren kunt u [aanmelden](%%action.login%%)," +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Het was niet mogelijk de publieke stream op te halen." -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 +#: actions/public.php:129 #, php-format -msgid "Feed for favorites of %s" -msgstr "Favorietenfeed van %s" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Het was niet mogelijk de favoriete mededelingen op te halen." - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Dat bericht bestaat niet." +msgid "Public timeline, page %d" +msgstr "Openbare tijdlijn, pagina %d" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Alleen de verzender en de ontvanger kunnen dit bericht lezen." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Openbare tijdlijn" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Bericht aan %1$s op %2$s" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Publieke streamfeed (RSS 1.0)" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Bericht van %1$s op %2$s" +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Publieke streamfeed (RSS 1.0)" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Bericht verzenden" +#: actions/public.php:159 +msgid "Public Stream Feed (Atom)" +msgstr "Publieke streamfeed (Atom)" -#: actions/smssettings.php:312 actions/smssettings.php:464 +#: actions/public.php:179 #, php-format -msgid "Mobile carrier for your phone. " +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Directe beichten aan %s" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "U kunt de eerste zijn die een bericht plaatst!" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 +#: actions/public.php:186 #, php-format -msgid "All the direct messages sent to %s" -msgstr "Alle directe berichten verzonden aan %s" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Door u verzonden directe berichten" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" +"Waarom [registreert u geen gebruiker](%%action.register%%) en plaatst u als " +"eerste een bericht?" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 +#: actions/public.php:233 #, php-format -msgid "All the direct messages sent from %s" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Het bericht bevat geen inhoud!" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" +"Dit is %%site.name%%, [microblogdienst](http://en.wikipedia.org/wiki/Micro-" +"blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/)" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Publieke woordwolk" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 +#: actions/publictagcloud.php:63 #, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favorieten van %s" +msgid "These are most popular recent tags on %s " +msgstr "De meest recente en populairste labels op %s " -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 +#: actions/publictagcloud.php:69 #, php-format -msgid "%s updates favorited by %s / %s." +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" +"Nog niemand heeft een bericht met het [hekjelabel](%%doc.tags%%) verzonden." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s heeft uw mededeling als favoriet toegevoegd" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "U kunt de eerste zijn die een bericht plaatst!" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Twitter-instellingen" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Woordwolk" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Twitter-gebruiker" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "U bent al aangemeld!" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Huidige bevestigde Twitter-gebruiker." +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Onbekende herstelcode." -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Twitter-gebruiker" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Geen geldige herstelcode." -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Gebruik geen spaties, alstublieft." +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Herstelcode voor onbekende gebruiker." -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Twitter-wachtwoord" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Er is een fout opgetreden die te maken heeft met de bevestigingscode." -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Stuur mijn mededelingen automatisch naar Twitter." +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Deze bevestigingscode is te oud. Begin alstublieft opnieuw." -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" +"Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te " +"werken." -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "De Twitter-instellingen zijn opgeslagen." +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Uw gebruikersnaam op deze server, of uw geregistreerde e-mailadres." -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Dat is niet uw Twitter-gebruiker." +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Herstellen" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Het was niet mogelijk de Twitter-gebruiker te verwijderen." +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Wachtwoord herstellen" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Wachtwoord herstellen" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Het was niet mogelijk de Twitter-instellingen op te slaan." +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Wachtwoordherstel aangevraagd" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "De Twitter-voorkeuren zijn opgeslagen." +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Onbekende handeling" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Gelijk aan het wachtwoord hierboven" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Herstellen" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Commandoresultaten" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Voer een gebruikersnaam of e-mailadres in." -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" +"Er bestaat geen gebruiker met het opgegeven e-mailadres of de opgegeven " +"gebruikersnaam." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Die gebruiker heeft geen e-mailadres geregistreerd." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Er is een fout opgetreden bij het opslaan van de adresbevestiging." -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" +"De instructies om uw wachtwoord te herstellen zijn verstuurd naar het e-" +"mailadres dat voor uw gebruiker is geregistreerd." -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Deze gebruiker heeft geen laatste mededeling" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Het wachtwoord is onverwacht opnieuw ingesteld." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Het wachtwoord moet uit zes of meer tekens bestaan." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Volledige naam: %s" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Het wachtwoord en de bevestiging komen niet overeen." -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Locatie: %s" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Het nieuwe wachtwoord is opgeslagen. U bent nu aangemeld." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Thuispagina: %s" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "U kunt zich alleen registreren als u wordt uitgenodigd." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Over: %s" +#: actions/register.php:92 +msgid "Sorry, invalid invitation code." +msgstr "Sorry. De uitnodigingscode is ongeldig." -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" -"Het bericht is te lang. De maximale lengte is 140 tekens. U hebt %d tekens " -"gebruikt" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "De registratie is voltooid" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registreren" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Registratie is niet toegestaan." -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" +#: actions/register.php:198 +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." -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Geen geldig e-mailadres." -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Het e--mailadres bestaat al." -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Uw abonnement op %s is opgezegd" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Ongeldige gebruikersnaam of wachtwoord." -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" +"Via dit formulier kunt u een nieuwe gebruiker aanmaken. Daarna kunt u " +"mededelingen uitsturen en contact maken met vrienden en collega's. " -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties. Verplicht." -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Het is niet mogelijk de mededelingen uit te schakelen." +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "Zes of meer tekens. Verplicht" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "E-mail" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Een langere naam, mogelijk uw echte naam" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Mijn teksten en bestanden zijn beschikbaar onder " + +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "Creative Commons Naamsvermelding 3.0" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: actions/register.php:496 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" +" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " +"telefoonnummer." -#: lib/mail.php:147 lib/mail.php:289 +#: actions/register.php:537 #, php-format msgid "" -"You have a new posting address on %1$s.\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" +"Gefeliciteerd, %s! Welkom bij %%%%site.name%%%%. Hier staan aan aantal " +"handelingen die u wellicht uit wilt voeren:\n" +"\n" +"* Naar uw [profiel](%s) gaan en uw eerste bericht verzenden;\n" +"* Een [Jabber/GTalk-adres](%%%%action.imsettings%%%%) toevoegen zodat u " +"vandaaruit mededelingen kunt verzenden;\n" +"* [Gebruikers zoeken](%%%%action.peoplesearch%%%%) die u al kent of waarmee " +"u interesses deelt;\n" +"* [Uw profiel](%%%%action.profilesettings%%%%) bijwerken om anderen meer " +"over uzelf te vertellen;\n" +"* De [online documentatie](%%%%doc.help%%%%) raadplegen voor mogelijkheden " +"die u nog niet kent.\n" +"\n" +"Dank u wel voor het registreren en we hopen dat deze dienst u biedt wat u " +"ervan verwacht." -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" +"U ontvangt snel een e-mailbericht met daarin instructies over hoe u uw e-" +"mail kunt bevestigen." -#: lib/mail.php:253 lib/mail.php:512 +#: actions/remotesubscribe.php:98 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" +"Om u te abonneren kunt u [aanmelden](%%action.login%%), of een nieuw " +"gebruiker [registreren](%%action.register%%). Als u al een gebruiker bij een " +"[compatibele microblogsite](%%doc.openmublog%%) hebt, voer dan hieronder uw " +"profiel-URL in." -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Abonneren op afstand" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "Op een gebruiker uit een andere systeem abonneren" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Gebruikersnaam" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "De gebruikersnaam van de gebruiker die u wilt volgen" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Gebruiker" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Profiel-URL" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Postvak IN" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Uw inkomende berichten" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Abonneren" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Postvak UIT" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Uw verzonden berichten" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Ongeldige profiel-URL (foutieve opmaak)" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" +"De URL voor het profiel is niet geldig (het is geen YADIS-document of er is " +"geen of ongeldige XRDS gedefinieerd)." -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Instellingen voor Twitter-integratie" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "Dat is een lokaal profiel. Meld u aan om te abonneren." -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "Aan" +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "Het was niet mogelijk een verzoektoken te krijgen." -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Het was niet mogelijk het bericht te verwerken." +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Antwoorden aan %s" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/replies.php:127 #, php-format -msgid "%s and friends, page %d" -msgstr "%s en vrienden, pagina %d" +msgid "Replies to %s, page %d" +msgstr "Antwoorden aan %s, pagina %d" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "U kunt uw persoonlijke avatar uploaden." +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Antwoordenfeed voor %s (RSS 1.0)" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Avatarinstellingen" +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Antwoordenfeed voor %s (RSS 2.0)" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Origineel" +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Antwoordenfeed voor %s (Atom)" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Voorvertoning" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Uitsnijden" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Er was een probleem met uw sessietoken. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Ons databestand is verloren gegaan." +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Antwoorden aan %1$s op %2$s." -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Het bestand is zoekgeraakt." +#: actions/showfavorites.php:79 +#, php-format +msgid "%s's favorite notices, page %d" +msgstr "Favoriete mededelingen van %s, pagina %d" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Onbekend bestandstype" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Het was niet mogelijk de favoriete mededelingen op te halen." -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Er is geen profiel opgegeven." +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Favorietenfeed van %s (RSS 1.0)" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Er is geen profiel met dat ID." +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Favorietenfeed van %s (RSS 2.0)" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Gebruiker blokkeren" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Favorietenfeed van %s (Atom)" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/showfavorites.php:205 +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/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "U hebt deze gebruiker reeds geblokkeerd." - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: actions/confirmaddress.php:159 +#: actions/showfavorites.php:211 #, php-format -msgid "The address \"%s\" has been " -msgstr "Het adres \"%s\" is " - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "U staat op het punt een kennisgeving permanent te verwijderen. " +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Aan favorieten toevoegen" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "Dit is de manier om dat te delen wat u wilt." -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "Edit %s group" -msgstr "Groep %s bewerken" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Postvak IN moet ingeschakeld zijn voordat groepen kunnen werken" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" +msgid "%s group" +msgstr "%s groep" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Geen gebruikersnaam" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "groep %s, pagina %d" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Deze groep bestaat niet" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Groepsprofiel" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "U moet beheerder zijn om de groep te kunnen bewerken" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Gebruik dit formulier om de groep te bewerken." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Opmerking" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "De gebruikersnaam moet bestaan uit alleen kleine letters " +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "Aliasen" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "de beschrijving is te lang (maximaal 140 tekens)." +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Groepshandelingen" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Het was niet mogelijk de groep bij te werken." +#: actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Mededelingenfeed voor groep %s (RSS 1.0)" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "De instellingen zijn opgeslagen." +#: actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Mededelingenfeed voor groep %s (RSS 2.0)" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showgroup.php:340 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Dit adres wacht nog op bevestiging. " +msgid "Notice feed for %s group (Atom)" +msgstr "Mededelingenfeed voor groep %s (Atom)" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Vriend van een vriend voor de groep %s" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Leden" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(geen)" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Dat e-mailadres hoort al bij " +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Alle leden" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Er is een bevestigingscode verzonden naar het e-mailadres dat u hebt " -"opgegeven. " +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistieken" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" +#: actions/showgroup.php:432 +msgid "Created" +msgstr "Aangemaakt" -#: actions/facebookhome.php:196 +#: actions/showgroup.php:448 #, php-format -msgid "If you would like the %s app to automatically update " +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 "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showgroup.php:454 #, php-format -msgid "Allow %s to update my Facebook status" +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 een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " +"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " +"over hun ervaringen en interesses. " -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Overslaan" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "De mededeling heeft geen inhoud!" +#: actions/showgroup.php:482 +msgid "Admins" +msgstr "Beheerders" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Paginering" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Dat bericht bestaat niet." -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Na" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Alleen de verzender en de ontvanger kunnen dit bericht lezen." -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Voor" +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Bericht aan %1$s op %2$s" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/showmessage.php:113 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" +msgid "Message from %1$s on %2$s" +msgstr "Bericht van %1$s op %2$s" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "Deze mededeling is verwijderd." -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/showstream.php:73 #, php-format -msgid "You have been invited to %s" -msgstr "" +msgid " tagged %s" +msgstr " met het label %s" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 +#: actions/showstream.php:79 #, php-format -msgid "Invite your friends to use %s" -msgstr "Uw vrienden uitnodigen %s te gebruiken" +msgid "%s, page %d" +msgstr "%s, pagina %d" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/showstream.php:122 #, php-format -msgid "Friends already using %s:" -msgstr "" +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Mededelingenfeed voor %s met het label %s (RSS 1.0)" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/showstream.php:129 #, php-format -msgid "Send invitations" -msgstr "" - -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Het was niet mogelijk de Facebook-gebruiker te verwijderen." +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Mededelingenfeed voor %s (RSS 1.0)" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Mededelingenfeed voor %s (RSS 2.0)" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "De synchronisatievoorkeuren zijn opgeslagen." +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Mededelingenfeed voor %s (Atom)" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "Vriend van een vriend (FOAF) voor %s" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" +"Dit is de tijdlijn voor %s, maar %s heeft nog geen berichten verzonden." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Voorvoegsel" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" +"Hebt u recentelijk iets interessants gezien? U hebt nog geen mededelingen " +"verstuurd, dus dit is een ideaal moment om daarmee te beginnen!" -#: actions/facebooksettings.php:124 +#: actions/showstream.php:198 #, php-format -msgid "If you would like %s to automatically update " +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Synchronisatievoorkeuren" +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Van favotietenlijst verwijderen" +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** heeft een gebruiker op %%%%site.name%%%%, eena [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " +"[StatusNet](http://status.net/). " -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Populaire mededelingen" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS-instellingen" -#: actions/favorited.php:67 +#: actions/smssettings.php:69 #, php-format -msgid "Popular notices, page %d" -msgstr "Populaire mededelingen, pagina %d" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "U kunt SMS-berichten per e-mail ontvangen van %%site.name%%." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "De meest populaire mededelingen op de site op dit moment." +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "SMS is niet beschikbaar." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Nieuwe gebruikers" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Huidige bevestigde telefoonnummer met SMS-functie." -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Nieuwe gebruikers, pagina %d" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Er wordt gewacht op bevestiging van dit telefoonnummer." -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Een selectie van de actieve gebruikers op %s" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Bevestigingscode" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" -"Die gebruiker heeft de mogelijkheid om te abonneren voor u geblokkeerd." +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Voer de code in die u via uw telefoon hebt ontvangen." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Geen ID" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS-telefoonnummer" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Groepslogo" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "U kunt een logo voor uw groep uploaden." +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Stuur me mededelingen via SMS. Ik begrijp dat dit exorbitante rekeningen van " +"mijn provider kan opleveren." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Logo geactualiseerd." +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Geen telefoonnummer." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Het bijwerken van het logo is mislukt." +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Er is geen provider geselecteerd." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "leden van de groep %s" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "U hebt dit al ingesteld als uw telefoonnummer." -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "% groeps leden, pagina %d" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Dit telefoonnummer is al in gebruik bij een andere gebruiker." -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Ledenlijst van deze groep" +#: actions/smssettings.php:347 +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 "" +"Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " +"toegevoegd. Controleer uw telefoon voor de code en instructies." -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Groepen" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Dit is het verkeerde bevestigingsnummer." -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "Groepen, pagina %d" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Dit is niet uw telefoonnummer." -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Mobiele aanbieder" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Nieuwe groep aanmaken" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Selecteer een provider" -#: actions/groupsearch.php:57 +#: actions/smssettings.php:476 #, php-format msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +"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 "" -"Zoek naar groepen op %%site.name%%, op basis van hun naam, locatie of " -"interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " -"bestaan." +"De provider van uw mobiele telefoon. Als u een provider kent die e-mail via " +"SMS ondersteunt, maar nog niet in de lijst is opgenomen, laat dit ons dan " +"via e-mail weten op het e-mailadres %s." -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Groepen zoeken" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Er is geen code ingevoerd" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "U kunt mededelingen zenden en ontvangen via " +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "U bent niet geabonneerd op dat profiel." -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber of GTalk adres,_" +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Het was niet mogelijk het abonnement op te slaan." -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Stuur mij reacties via Jabber/GTalk." +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Dit is geen lokale gebruiker." + +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Geabonneerd" -#: actions/imsettings.php:321 +#: actions/subscribers.php:50 #, php-format -msgid "A confirmation code was sent " -msgstr "Er is een bevestigingscode verzonden naar " +msgid "%s subscribers" +msgstr "%s abonnees" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "U moet aangemeld zijn om lid te worden van een groep." +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "%s abonnees, pagina %d" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "U bent al lid van deze groep" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Dit zijn de gebruikers die uw mededelingen volgen." -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/subscribers.php:67 #, php-format -msgid "Could not join user %s to group %s" -msgstr "Het was niet mogelijk om de gebruiker %s toe te voegen aan de groep %s" +msgid "These are the people who listen to %s's notices." +msgstr "Dit zijn de gebruikers die de mededelingen van %s volgen." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "%s is lid geworden van de groep %s" +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" +"U hebt geen abonnees. Als u zich abonneert op andere gebruikers, abonneren " +"die zich wellicht op u." -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Postvak IN moet ingeschakeld zijn voordat groepen functioneren." +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "%s heeft geen abonnees. Wilt u de eerste zijn?" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "U moet aangemeld zijn om een groep te kunnen verlaten." +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" +"%s heeft geen abonnees. Als u zich [registreert](%%%%action.register%%%%) " +"kunt u de eerste zijn." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "De opgegeven groep bestaat niet." +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "%s abonnementen" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "U bent geen lid van deze groep" +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "%s abonnementen, pagina %d" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "Als u beheerder van een groep bent, kunt u deze niet verlaten." +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Dit zijn de gebruikers van wie u de mededelingen volgt." -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Er is geen groepslidmaatschap aangetroffen." +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 +#: actions/subscriptions.php:121 #, php-format -msgid "Could not remove user %s to group %s" -msgstr "De gebruiker %s kon niet uit de groet %s verwijderd worden" +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, php-format -msgid "%s left group %s" -msgstr "%s heeft de groep %s verlaten" +msgid "%s is not listening to anyone." +msgstr "%s luistert nergens naar." -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Aanmelden" +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Geen huidige status" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Nieuwe groep" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Gebruik dit formulier om een nieuwe groep aan te maken." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Het was niet mogelijk de groep aan te maken." +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Niet aangemeld." -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Geen ID-argument." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Dat is te lang. " +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "Label %s" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Zend uzelf geen berichten. " +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Gebruikersprofiel" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "De mededeling is verzonden" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Foto" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Er is een Ajax-fout opgetreden" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Gebruiker labelen" -#: actions/nudge.php:85 +#: actions/tagother.php:151 msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -"Deze gebruiker is niet te porren of heeft zijn e-mailadres nog niet " -"bevestigd." - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "De por is verzonden" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "De por is verzonden!" - -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "Aanmelden met OpenID" - -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Nu wordt uw laatste OpenID verwijderd " - -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Overige instellingen" - -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Overige instellingen beheren." +"Labels voor deze gebruiker (letters, cijfers, -, ., en _). Gebruik komma's " +"of spaties als scheidingsteken" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "URL's automatisch inkorten" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Dienst" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Te gebruiken automatische verkortingsdienst." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"U kunt alleen gebruikers labelen waarop u geabonneerd bent of die op u " +"geabonneerd zijn." -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "De URL voor de verkortingdienst is te lang (maximaal 50 tekens)." +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Het was niet mogelijk de labels op te slaan." -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Wachtwoord wijzigen" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Gebruik dit formulier om labels toe te voegen aan uw abonnementen of " +"abonnees." -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Wachtwoord wijzigen" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Kennisgevingen met het label %s, pagina %d" -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/tag.php:86 #, php-format -msgid "Not a valid people tag: %s" -msgstr "Geen geldig gebruikerslabel: %s" +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Mededelingenfeed voor label %s (RSS 1.0)" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/tag.php:92 #, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Gebruikers die zichzelf met %s hebben gelabeld - pagina %d" +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Mededelingenfeed voor label %s (RSS 2.0)" -#: actions/peopletag.php:91 +#: actions/tag.php:98 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Dit zijn de gebruikers die zichzelf \"%s\" hebben gelabeld " +msgid "Notice feed for tag %s (Atom)" +msgstr "Mededelingenfeed voor label %s (Atom)" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Profielinformatie" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Onbekend label." -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "De API-functie is in bewerking." -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Het profiel-ID was niet aanwezig in het verzoek." -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Ongeldig label: '%s'" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Er is geen profiel met dat ID." -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Het was niet mogelijk de labels op te slaan." +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Het abonnement is opgezegd" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "Public timeline, page %d" -msgstr "Openbare tijdlijn, pagina %d" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Het was niet mogelijk de publieke stream op te halen." +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Abonneren" -#: actions/public.php:220 -#, php-format +#: actions/userauthorization.php:110 msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" +"Controleer alstublieft deze details om er zeker van te zijn dat u zich wilt " +"abonneren op de mededelingen van deze gebruiker. Als u zojuist niet hebt " +"aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, " +"klik dan op \"Afwijzen\"." -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Publieke woordwolk" - -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "De meest recente en populairste labels op %s " - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Woordwolk" +#: actions/userauthorization.php:188 +msgid "License" +msgstr "Licentie" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "U kunt zich alleen registreren als u wordt uitgenodigd." +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Aanvaarden" -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "U kunt zich niet registeren als u niet " +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Abonnement geautoriseerd" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Met dit formulier maakt u " +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Afwijzen" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "Een to 64 kleine letters of cijfers, " +#: actions/userauthorization.php:212 +msgid "Reject this subscription" +msgstr "Dit abonnement weigeren" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Alleen gebruikt voor updates, aankondigingen, " +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Geen autorisatieverzoek!" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "URL van uw thuispagina, blog, " +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Het abonnement is geautoriseerd" -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Beschrijf uzelf en uw " +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de site voor informatie over het volledig " +"afwijzen van een abonnement. Uw abonnementstoken is:" -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\", " +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Het abonnement is afgewezen" -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " behalve de volgende privégegevens: wachtwoord, " +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de site voor informatie over het volledig " +"afwijzen van een abonnement." -#: actions/register.php:471 +#: actions/userauthorization.php:296 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Gefeliciteerd, %s. Welkom bij \"%%site.name%%. " +msgid "Listener URI ‘%s’ not found here" +msgstr "De abonnee-URI \"%s\" is hier niet te vinden" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/userauthorization.php:322 #, php-format -msgid "Replies to %s, page %d" -msgstr "Antwoorden aan %s, pagina %d" +msgid "Profile URL ‘%s’ is for a local user." +msgstr "De profiel-URL \"%s\" is niet geldig." -#: actions/showfavorites.php:79 +#: actions/userauthorization.php:338 #, php-format -msgid "%s favorite notices, page %d" -msgstr "%s favoriete mededelingen, pagina %d" +msgid "Avatar URL ‘%s’ is not valid." +msgstr "De avatar-URL \"%s\" is niet geldig." -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: actions/userauthorization.php:343 #, php-format -msgid "%s group" -msgstr "%s groep" +msgid "Can’t read avatar URL ‘%s’." +msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: actions/userauthorization.php:348 #, php-format -msgid "%s group, page %d" -msgstr "groep %s, pagina %d" +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"." -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Groepsprofiel" +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Geen ID." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "Profielontwerp" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Opmerking" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Groepshandelingen" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "Geniet van uw hotdog!" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: actions/usergroups.php:64 #, php-format -msgid "Notice feed for %s group" -msgstr "Mededelingenfeed voor de groep %s" - -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Leden" - -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(geen)" +msgid "%s groups, page %d" +msgstr "%s groepen, pagina %d" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Alle leden" +#: actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "Meer groepen zoeken" -#: actions/showgroup.php:378 +#: actions/usergroups.php:153 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Alleen de afzender en ontvanger " +msgid "%s is not a member of any group." +msgstr "%s is van geen enkele groep lid." -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: actions/usergroups.php:158 #, php-format -msgid "%s, page %d" -msgstr "%s, pagina %d" - -#: actions/showstream.php:143 -msgid "'s profile" -msgstr "'s profiel" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Gebruikersprofiel" - -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Foto" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Gebruikershandelingen" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Deze gebruiker een direct bericht zenden" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Bericht" - -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Alle abonnees" - -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Alle groepen" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/showstream.php:542 +#: classes/File.php:137 #, php-format msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** heeft een gebruiker op %%%%site.name%%%%, een [microblogdienst]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " - -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Telefoonnummer zonder leestekens of spaties, " - -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Kennisgevingen via SMS naar mij sturen; " - -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -"Er is een bevestigingscode verstuurd naar het telefoonnummer dat u hebt " -"opgegeven. " - -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Mobiele aanbieder" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "U bent niet geabonneerd op dat profiel." - -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Het was niet mogelijk het abonnement op te slaan." - -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Dit is geen lokale gebruiker." - -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Geabonneerd" - -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "%s abonnees" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "%s abonnees, pagina %d" - -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Dit zijn de gebruikers die luisteren naar " - -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Dit zijn de gebruikers die " - -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "%s abonnementen" - -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "%s abonnementen, pagina %d" - -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Dit zijn de gebruikers wiens kennsigevingen " - -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "Dit zijn de gebruikers wiens " - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#: classes/File.php:147 #, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Kennisgevingen met het label %s, pagina %d" - -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" +"Een bestand van deze grootte overschijdt uw gebruikersquota van %d bytes." -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Niet aangemeld." - -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Geen ID-argument." - -#: actions/tagother.php:65 +#: classes/File.php:154 #, php-format -msgid "Tag %s" -msgstr "Label %s" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Gebruiker labelen" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Het was niet mogelijk de labels op te slaan." - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +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." -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Onbekend label." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Microblog met label %s" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Het blokkeren van de gebruiker is mislukt." - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Het deblokkeren van de gebruiker is mislukt." - -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Niet aangetroffen." - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Uw Twitter-gebruiker toevoegen om automatisch " - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Gebruikersnaam bij Twitter" - -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Twitter-wachtwoord" - -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Twitter-vrienden" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Gebruikersnamen moeten uit alleen getallen bestaan, " - -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "Het was niet mogelijk om de gebruikersinformatie op te halen. " - -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Er is een fout opgetreden bij het verwijderen van de blokkade." - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Het profiel-ID was niet aanwezig in het verzoek." - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Er is geen profiel met dat ID." +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Het was niet mogelijk het bericht in te voegen." -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Het abonnement is opgezegd" +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: classes/Notice.php:164 #, php-format -msgid "%s groups" -msgstr "%s groepen" +msgid "DB error inserting hashtag: %s" +msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "%s groepen, pagina %d" +#: classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" +"Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te " +"lang." -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" "Er was een probleem bij het opslaan vna de kennisgeving. De gebruiker is " "onbekend." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." @@ -5183,817 +3314,778 @@ msgstr "" "U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " "het over enige tijd weer." -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Te veel duplicaatberichten te snel achter elkaar. Neem een adempauze en " +"plaats over een aantal minuten pas weer een bericht." + #: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." + +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "" +"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" + +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Welkom bij %1$s, @%2$s!" + +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profiel" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Uw profielgegevens wijzigen" + +#: lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Avatar uploaden" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Uw wachtwoord wijzigen" + +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "E-mailafhandeling wijzigen" + +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "Ontwerp" + +#: lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "Uw profiel ontwerpen" + #: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Overige" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 #: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Overige instellingen" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +#: lib/action.php:159 msgid "Untitled page" msgstr "Naamloze pagina" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Primaire sitenavigatie" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +#: lib/action.php:430 +msgid "Home" +msgstr "Thuis" + +#: lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Persoonlijk profiel en tijdlijn van vrienden" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Naar gebruikers of tekst zoeken" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: lib/action.php:432 msgid "Account" msgstr "Gebruiker" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: lib/action.php:432 msgid "Change your email, avatar, password, profile" -msgstr "" +msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" + +#: lib/action.php:435 +msgid "Connect" +msgstr "Koppelen" + +#: lib/action.php:435 +msgid "Connect to services" +msgstr "Met diensten verbinden" + +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Uitnodigen" + +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Met IM, SMS of Twitter verbinden" +#: lib/action.php:445 +msgid "Logout" +msgstr "Afmelden" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +#: lib/action.php:445 msgid "Logout from the site" msgstr "Van de site afmelden" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Bij de site aanmelden" - -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +#: lib/action.php:450 msgid "Create an account" msgstr "Gebruiker aanmaken" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Aanmelden met OpenID" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Bij de site aanmelden" + +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Help" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +#: lib/action.php:456 msgid "Help me!" msgstr "Help me!" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Kennisgeving van site" +#: lib/action.php:459 +msgid "Search" +msgstr "Zoeken" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Naar gebruikers of tekst zoeken" + +#: lib/action.php:480 +msgid "Site notice" +msgstr "Kennisgeving van site" + +#: lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +#: lib/action.php:612 msgid "Page notice" msgstr "Kennisgeving van pagina" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#: lib/action.php:714 msgid "Secondary site navigation" msgstr "Secundaire sitenavigatie" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Licentie van de StatusNet-software" +#: lib/action.php:721 +msgid "About" +msgstr "Over" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Alle " +#: lib/action.php:723 +msgid "FAQ" +msgstr "Veelgestelde vragen" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "licentie." +#: lib/action.php:727 +msgid "TOS" +msgstr "TOS" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Deze gebruiker blokkeren" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Privacy" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Blokkeren" +#: lib/action.php:732 +msgid "Source" +msgstr "Bron" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Mededeling uit favorieten verwijderen" +#: lib/action.php:734 +msgid "Contact" +msgstr "Contact" + +#: lib/action.php:736 +msgid "Badge" +msgstr "Naamplaatje" + +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Licentie van de StatusNet-software" -#: lib/facebookaction.php:268 +#: lib/action.php:767 #, php-format -msgid "To use the %s Facebook Application you need to login " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." +"broughtbyurl%%). " -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " een nieuwe gebruiker." +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** is een microblogdienst. " -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Gepubliceerd" +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"De site werkt met de [StatusNet](http://status.net/) microblogsoftware, " +"versie %s, beschikbaar onder de [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Deze kennisgeving op de favorietenlijst plaatsen" +#: lib/action.php:785 +msgid "Site content license" +msgstr "Licentie voor siteinhoud" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Gegevens exporteren" +#: lib/action.php:794 +msgid "All " +msgstr "Alle " -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Labels filteren" +#: lib/action.php:799 +msgid "license." +msgstr "licentie." -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Alle" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Paginering" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Label" +#: lib/action.php:1062 +msgid "After" +msgstr "Na" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Kies een label om de lijst kleiner te maken" +#: lib/action.php:1070 +msgid "Before" +msgstr "Voor" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "OK" +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Er is een probleem met uw sessietoken." -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "De URL van de thuispagina of de blog van de groep of het onderwerp" +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "Bijlagen" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Beschrijving" +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "Auteur" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Beschrijf de groep of het onderwerp in maximaal 140 karakters" +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "Provider" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" -"Locatie voor de groep - als relevant. Iets als \"Plaats, regio, land\"." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "Mededelingen die deze bijlage bevatten" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Groep" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "Labels voor deze bijlage" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Beheerder" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Commandoresultaten" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "Eigenschappen van de groep %s bewerken" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Het commando is uitgevoerd" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "Logo" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Het uitvoeren van het commando is mislukt" + +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Dit commando is nog niet geïmplementeerd." -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/command.php:88 #, php-format -msgid "Add or edit %s logo" -msgstr "Logo voor %s toevoegen of verwijderen" +msgid "Could not find a user with nickname %s" +msgstr "De gebruiker %s is niet aangetroffen" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Groepen met de meeste leden" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "Het heeft niet zoveel zin om uzelf te porren..." -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "De por naar %s is verzonden" -#: lib/grouptagcloudsection.php:56 +#: lib/command.php:126 #, php-format -msgid "Tags in %s group's notices" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" +"Abonnementen: %1$s\n" +"Abonnees: %2$s\n" +"Mededelingen: %3$s" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "Deze pagina is niet beschikbaar in een " - -#: lib/joinform.php:114 -msgid "Join" -msgstr "Toetreden" - -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "Verlaten" - -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "Aanmelden met gebruikersnaam en wachtwoord" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "Er bestaat geen mededeling met dat ID" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "Nieuwe gebruiker aanmaken" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Deze gebruiker heeft geen laatste mededeling" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "De mededeling is op de favorietenlijst geplaatst." -#: lib/mail.php:175 +#: lib/command.php:315 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hallo, %s.\n" -"\n" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: lib/mail.php:236 +#: lib/command.php:318 #, php-format -msgid "%1$s is now listening to " -msgstr "%1$s luistert nu naar " +msgid "Fullname: %s" +msgstr "Volledige naam: %s" -#: lib/mail.php:254 lib/mail.php:253 +#: lib/command.php:321 #, php-format -msgid "Location: %s\n" -msgstr "Locatie: %s\n" +msgid "Location: %s" +msgstr "Locatie: %s" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/command.php:324 #, php-format -msgid "Homepage: %s\n" -msgstr "Thuispagina: %s\n" +msgid "Homepage: %s" +msgstr "Thuispagina: %s" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/command.php:327 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Beschrijving: %s\n" -"\n" +msgid "About: %s" +msgstr "Over: %s" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format -msgid "You've been nudged by %s" +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" +"Het bericht te is lang. De maximale lengte is %d tekens. De lengte van uw " +"bericht was %d" -#: lib/mail.php:465 +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Er is een fout opgetreden bij het verzonden van het directe bericht." + +#: lib/command.php:431 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" +"De mededeling is te lang. De maximale lengte is %d tekens. Uw mededeling " +"bevatte %d tekens" -#: lib/mail.php:555 +#: lib/command.php:439 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s heeft zojuist uw kennisgeving van %2$s toevoegd" +msgid "Reply to %s sent" +msgstr "Het antwoord aan %s is verzonden" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Van" +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Directe mededeling verzenden" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Geef de naam op van de gebruiker waarop u wilt abonneren" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Mededeling verzenden" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Geabonneerd op %s" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Beschikbare tekens" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" +"Geef de naam op van de gebruiker waarvoor u het abonnement wilt opzeggen" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "in antwoord op" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Uw abonnement op %s is opgezegd" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "Op deze mededeling antwoorden" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Dit commando is nog niet geïmplementeerd." -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Antwoorden" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Notificaties uitgeschakeld." -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Deze mededeling verwijderen" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Het is niet mogelijk de mededelingen uit te schakelen." -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Verwijderen" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Notificaties ingeschakeld." -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Het is niet mogelijk de notificatie uit te schakelen." -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" +#: lib/command.php:597 +#, php-format +msgid "Could not create login token for %s" +msgstr "Het was niet mogelijk een aanmeldtoken aan te maken voor %s" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 +#: lib/command.php:602 #, php-format -msgid "Tags in %s's notices" -msgstr "Labels in de mededelingen van %s" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(geen)" +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" +"Deze verwijzing kan slechts één keer gebruikt worden en is twee minuten " +"geldig: %s" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Openbaar" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Gebruikersgroepen" +#: lib/common.php:191 +msgid "No configuration file found. " +msgstr "Er is geen instellingenbestand aangetroffen. " -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Recente labels" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: " -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: lib/common.php:193 +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/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Populair" +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "Naar het installatieprogramma gaan." -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Mededeling" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Groepen op deze site vinden" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Updates via instant messenger (IM)" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Naamloze sectie" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Updates via SMS" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "Gebruikers waarop %s een abonnement heeft" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "Databasefout" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "Gebruikers met een abonnement op %s" +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "Achtergrondafbeelding wijzigen" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "Bestand uploaden" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" +"U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale " +"bestandsgroote is 2 megabyte." -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" +#: lib/designsettings.php:139 +msgid "On" +msgstr "Aan" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "Deze gebruiker negeert u." +#: lib/designsettings.php:155 +msgid "Off" +msgstr "Uit" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Abonnement geautoriseerd" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "Achtergrondafbeelding inschakelen of uitschakelen." -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Geen" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "Achtergrondafbeelding naast elkaar" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Meest actieve gebruikers" +#: lib/designsettings.php:170 +msgid "Change colours" +msgstr "Kleuren wijzigen" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Deblokkeer deze gebruiker." +#: lib/designsettings.php:178 +msgid "Background" +msgstr "Achtergrond" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Deblokkeer" +#: lib/designsettings.php:191 +msgid "Content" +msgstr "Inhoud" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Uitschrijven van deze gebruiker" +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Menubalk" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed voor vrienden van %s (RSS 1.0)" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Tekst" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed voor vrienden van %s (RSS 2.0)" +#: lib/designsettings.php:230 +msgid "Links" +msgstr "Verwijzingen" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed voor vrienden van %s (Atom)" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "Standaardinstellingen gebruiken" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -msgid "You and friends" -msgstr "U en vrienden" +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "Standaardontwerp toepassen" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" -"U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "Standaardinstellingen toepassen" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -msgid "Avatar deleted." -msgstr "De avatar is verwijderd." +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "Ontwerp opslaan" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "Foutieve standaard kleurinstellingen: " -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"U staat op het punt een mededeling permanent te verwijderen. Als dit " -"uitgevoerd is, kan het niet ongedaan gemaakt worden." +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "Het standaardontwerp is weer ingesteld." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Er is een probleem ontstaan met uw sessietoken. Probeer het nog een keer." +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Mededeling uit favorieten verwijderen" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" -"Mij een e-mail sturen als iemand mij een antwoord met \"@\" erin stuurt." +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Deze kennisgeving op de favorietenlijst plaatsen" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Aan favorieten toevoegen" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Gegevens exporteren" -#: actions/facebooksettings.php:124 -#, 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 "" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "RSS 1.0" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" -"Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %" -"s." +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "RSS 2.0" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" +#: lib/feed.php:89 +msgid "Atom" +msgstr "Atom" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format -msgid "Microblog by %s group" -msgstr "Microblog door de groep %s" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "Vrienden van vrienden (FOAF)" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -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 "" -"Zoeken naar groepen op %%site.name%% op basis van naam, locatie of " -"interesses of beschrijving. Scheid de zoektermen met spaties. Iedere " -"zoekterm moet uit drie of meer tekens bestaan." +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Labels filteren" -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Alle" -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Zoekresultaten voor \"%s\" op %s" +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "Selecteer een label om op te filteren" -#: actions/openidlogin.php:66 -#, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Om veiligheidsredenen vragen we u opnieuw aan te melden met uw [OpenID](%%" -"doc.openid%%) alvorens u uw instellingen kunt wijzigen." +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Label" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Publieke streamfeed (RSS 1.0)" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Kies een label om de lijst kleiner te maken" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Publieke streamfeed (RSS 1.0)" +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "OK" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -msgid "Public Stream Feed (Atom)" -msgstr "Publieke streamfeed (Atom)" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "De URL van de thuispagina of de blog van de groep of het onderwerp" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "Beschrijf de groep of het onderwerp" -#: actions/register.php:286 actions/register.php:329 +#: lib/groupeditform.php:170 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +msgid "Describe the group or topic in %d characters" +msgstr "Beschrijf de groep of het onderwerp in %d tekens" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Beschrijving" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: lib/groupeditform.php:179 msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" -" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " -"telefoonnummer." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -msgid "Created" -msgstr "Aangemaakt" +"Locatie voor de groep - als relevant. Iets als \"Plaats, regio, land\"." -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: lib/groupeditform.php:187 #, 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%%%%))" +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +"Extra namen voor de groep, gescheiden door komma's of spaties. Maximaal %d." -#: actions/showstream.php:147 -msgid "Your profile" -msgstr "Uw profiel" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Groep" -#: actions/showstream.php:149 -#, php-format -msgid "%s's profile" -msgstr "Profiel van %s" +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "Geblokkeerd" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 +#: lib/groupnav.php:101 #, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Mededelingenfeed voor %s (RSS 1.0)" +msgid "%s blocked users" +msgstr "%s geblokkeerde gebruikers" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: lib/groupnav.php:107 #, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Mededelingenfeed voor %s (RSS 2.0)" +msgid "Edit %s group properties" +msgstr "Eigenschappen van de groep %s bewerken" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Mededelingenfeed voor %s (Atom)" +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Logo" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: lib/groupnav.php:113 #, php-format -msgid "FOAF for %s" -msgstr "Vriend van een vriend (FOAF) voor %s" +msgid "Add or edit %s logo" +msgstr "Logo voor %s toevoegen of verwijderen" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -msgid "Edit Avatar" -msgstr "Avatar bewerken" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "%s-ontwerp toevoegen of bewerken" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -msgid "Edit profile settings" -msgstr "Profielinstellingen bewerken" +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Groepen met de meeste leden" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "Bewerken" +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Groepen met de meeste berichten" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgid "Tags in %s group's notices" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -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 "" -"Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " -"toegevoegd. Controleer uw telefoon voor de code en instructies." +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Deze pagina is niet beschikbaar in een mediatype dat u accepteert" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: lib/imagefile.php:75 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -msgid "No such user!" -msgstr "Deze gebruiker bestaat niet." - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" +msgid "That file is too big. The maximum file size is %s." +msgstr "Dat bestand is te groot. De maximale bestandsgrootte is %s." -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" -"Het was niet mogelijk de gebruikersgegeven voor \"%s\" op te halen van " -"Twitter." +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Gedeeltelijke upload." -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Controleer de details alstublieft om er zeker van te zijn u zich wilt " -"abonneren op de mededelingen van deze gebruiker. Als u zojuist geen verzoek " -"hebt gedaan om te abonneren op de mededelingen van een andere gebruiker, " -"klik dan op \"Afkeuren\"" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Het bestand is geen afbeelding of het bestand is beschadigd." -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Niet ondersteund beeldbestandsformaat." -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Het bestand is zoekgeraakt." -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "Naamplaatje" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Onbekend bestandstype" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: lib/jabber.php:192 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +msgid "notice id: %s" +msgstr "mededelingennummer: %s" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "Databasefout" +#: lib/joinform.php:114 +msgid "Join" +msgstr "Toetreden" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, 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 "" -"Om de Facebook-applicatie te kunnen gebruiken moet u aanmelden met uw " -"gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? " +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Verlaten" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "RSS 1.0" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Aanmelden met gebruikersnaam en wachtwoord" -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "RSS 2.0" +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "Nieuwe gebruiker aanmaken" -#: lib/feed.php:89 -msgid "Atom" -msgstr "Atom" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Gebruikers kunnen alleen hun eigen postvakken lezen." -#: lib/feed.php:91 -msgid "FOAF" -msgstr "Vrienden van vrienden (FOAF)" +#: lib/mailbox.php:139 +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 "" +"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/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "Dat bestand is te groot. De maximale bestandsgrootte is %d." +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "van" + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "E-mailadresbevestiging" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" @@ -6009,8 +4101,26 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"Hallo %s.\n" +"\n" +"Iemand heeft zojuist dit e-mailadres ingegeven op %s.\n" +"\n" +"Als u dit was, en als u uw ingave wilt bevestigen, gebruik dan de " +"onderstaande URL:\n" +"\n" +"%s\n" +"\n" +"Als u het bovenstaande niet herkent, negeer dit bericht dan.\n" +"\n" +"Dank u wel voor uw tijd.\n" +"%s\n" + +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s volgt nu uw berichten %2$s." -#: lib/mail.php:241 lib/mail.php:240 +#: lib/mail.php:240 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -6035,22 +4145,86 @@ msgstr "" "----\n" "Wijzig uw e-mailadres of instellingen op %8$s\n" -#: lib/mail.php:466 +#: lib/mail.php:253 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +msgid "Location: %s\n" +msgstr "Locatie: %s\n" + +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "Thuispagina: %s\n" + +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Beschrijving: %s\n" +"\n" + +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Nieuw e-mailadres om e-mail te versturen aan %s" + +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"U hebt een nieuw postadres op %1$s.\n" +"\n" +"Zend een e-mail naar %2$s om nieuwe berichten te versturen.\n" +"\n" +"Meer informatie over e-mailen vindt u op %3$s.\n" +"\n" +"Met vriendelijke groet,\n" +"%4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s status" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS-bevestiging" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s heeft u gepord" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " "to post some news.\n" "\n" "So let's hear from you :)\n" "\n" "%3$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%4$s\n" msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "U hebt een nieuw privébericht van %s." + #: lib/mail.php:513 #, php-format msgid "" @@ -6064,21 +4238,47 @@ msgid "" "\n" "%4$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%5$s\n" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" + +#: lib/mail.php:556 #, php-format -msgid "%s sent a notice to your attention" +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "%s (@%s) heeft u een mededeling gestuurd" + +#: lib/mail.php:613 #, php-format msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" "The notice is here:\n" "\n" @@ -6088,1528 +4288,430 @@ msgid "" "\n" "\t%4$s\n" "\n" -"You can reply back here:\n" +msgstr "" +"%1$s (@%9$s) heeft u een bericht gezonden (een antwoord met \"@\") op %2$s.\n" "\n" -"\t%5$s\n" +"De mededeling staat hier:\n" "\n" -"The list of all @-replies for you here:\n" +"%3$s\n" "\n" -"%6$s\n" +"De inhoud is:\n" "\n" -"Faithfully yours,\n" -"%2$s\n" +"%4$s\n" "\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "Site doorzoeken" - -#: lib/section.php:106 -msgid "More..." -msgstr "Meer..." -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" +"Er is een databasefout opgetreden tijdens het opslaan van uw bestand. " +"Probeer het alstublieft opnieuw." -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Het te uploaden bestand is groter dan de ingestelde upload_max_filesize in " +"php.ini." -#: actions/all.php:87 actions/all.php:134 -#, php-format +#: lib/mediafile.php:147 msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" +"Het te uploaden bestand is groter dan de ingestelde MAX_FILE_SIZE in het " +"HTML-formulier." -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "De upload is slechts gedeeltelijk voltooid." -#: actions/attachment.php:73 -msgid "No such attachment." -msgstr "Dat document bestaat niet." +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "De tijdelijke map is niet aanwezig." -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "Deze gebruiker niet de toegang tot deze groep ontzeggen" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "Het was niet mogelijk naar schijf te schrijven." -#: actions/block.php:150 -msgid "Block this user from this group" -msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "Het uploaden van het bestand is tegengehouden door een uitbreiding." -#: actions/blockedfromgroup.php:90 +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "Met dit bestand wordt het quotum van de gebruiker overschreden!" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "Het bestand kon niet verplaatst worden naar de doelmap." + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Het was niet mogelijk het MIME-type van het bestand te bepalen!" + +#: lib/mediafile.php:270 #, php-format -msgid "%s blocked profiles" -msgstr "%s geblokkeerde profielen" +msgid " Try using another %s format." +msgstr " Probeer een ander %s-formaat te gebruiken." -#: actions/blockedfromgroup.php:93 +#: lib/mediafile.php:275 #, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s geblokkeerde profielen, pagina %d" +msgid "%s is not a supported filetype on this server." +msgstr "Het bestandstype %s wordt door deze server niet ondersteund." -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "Een lijst met voor deze groep geblokkeerde gebruikers." +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Directe mededeling verzenden" -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" -msgstr "Deze gebruiker weer toegang geven tot de groep" +#: lib/messageform.php:146 +msgid "To" +msgstr "Aan" -#: actions/conversation.php:99 -msgid "Conversation" -msgstr "Dialoog" +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Beschikbare tekens" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -msgid "Do not delete this notice" -msgstr "Deze mededeling niet verwijderen" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Mededeling verzenden" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/noticeform.php:158 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "What's up, %s?" +msgstr "Hallo, %s." -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Ongeldig alias: \"%s\"" +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "Toevoegen" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "De alias \"%s\" wordt al gebruikt. Geef een ander alias op." +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "Bestand toevoegen" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +#: lib/noticelist.php:478 +msgid "in context" +msgstr "in context" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -msgid "Could not create aliases." -msgstr "Het was niet mogelijk de aliassen aan te maken." +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Op deze mededeling antwoorden" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Antwoorden" -#: 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 "" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Deze gebruiker porren" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Porren" -#: actions/file.php:34 -msgid "No notice id" -msgstr "Geen mededelings-ID" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Deze gebruiker porren" -#: actions/file.php:38 -msgid "No notice" -msgstr "Geen mededeling" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Er is een fout opgetreden tijdens het invoegen van een nieuw profiel" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Er is een fout opgetreden bij het toevoegen van de avatar" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" msgstr "" +"Er is een fout opgetreden tijdens het invoegen in het profiel op afstand." -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "Geen geldige uitnodigingscode." +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "Kennisgeving van duplicaat" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "Er is geen groep aangegeven." +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Kon nieuw abonnement niet toevoegen." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Persoonlijk" -#: actions/groupblock.php:95 -msgid "User is already blocked from group." -msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Antwoorden" -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "De gebruiker is geen lid van de groep." +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favorieten" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "Gebruiker toegang tot de groep blokkeren" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Gebruiker" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Postvak IN" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Uw inkomende berichten" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Postvak UIT" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "Groepsontwerpen" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Uw verzonden berichten" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Labels in de mededelingen van %s" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -msgid "Couldn't update your design." -msgstr "Het was niet mogelijk uw ontwerp bij te werken." +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Abonnementen" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Alle abonnementen" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." -msgstr "De ontwerpvoorkeuren zijn opgeslagen." +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Abonnees" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Alle abonnees" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "Beheerder maken" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "Gebruikers-ID" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "Deze gebruiker beheerder maken" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Lid sinds" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "Geen resultaten." +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Alle groepen" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Openbaar" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Gebruikersgroepen" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Recente labels" -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "De gebruiker is niet de toegang tot de groep ontzegd." +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Uitgelicht" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Populair" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/searchaction.php:120 +msgid "Search site" +msgstr "Site doorzoeken" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" +#: lib/searchaction.php:162 +msgid "Search help" +msgstr "Hulp bij zoeken" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Gebruikers" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Gebruikers op deze site vinden" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Mededeling" -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "Bericht verzonden." +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Inhoud van mededelingen vinden" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Groepen op deze site vinden" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Naamloze sectie" + +#: lib/section.php:106 +msgid "More..." +msgstr "Meer..." + +#: lib/subgroupnav.php:83 #, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" +msgid "People %s subscribes to" +msgstr "Gebruikers waarop %s een abonnement heeft" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#: lib/subgroupnav.php:91 #, php-format -msgid " Try using another %s format." -msgstr "" +msgid "People subscribed to %s" +msgstr "Gebruikers met een abonnement op %s" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#: lib/subgroupnav.php:99 #, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" +msgid "Groups %s is a member of" +msgstr "Groepen waar %s lid van is" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(geen)" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "U bent al gebonneerd!" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "Deze gebruiker negeert u." -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Kan niet abonneren " -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -msgid "Couldn't save file." -msgstr "Het was niet mogelijk het bestand op te slaan." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Het was niet mogelijk om een ander op u te laten abonneren" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Niet geabonneerd!" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Kon abonnement niet verwijderen." -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Geen" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Meest actieve gebruikers" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Uitschrijven van deze gebruiker" -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Abonnement opheffen" -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"Via [OpenID](%%doc.openid%%) kunt u bij veel websites aanmelden met dezelfde " -"gebruiker. Hier kunt u uw koppelingen met OpenID's beheren." +#: lib/userprofile.php:116 +msgid "Edit Avatar" +msgstr "Avatar bewerken" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Gebruikershandelingen" -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "Profielontwerpen bekijken" +#: lib/userprofile.php:248 +msgid "Edit profile settings" +msgstr "Profielinstellingen bewerken" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Dit is %%site.name%%, [microblogdienst](http://en.wikipedia.org/wiki/Micro-" -"blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/)" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Als u uw wachtwoord kwijt bent, is het mogelijk een nieuw wachtwoord te " -"ontvangen op het e-mailadres dat aan uw gebruiker gekoppeld is." - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "U bent geïdentificeerd. Voer hieronder een nieuw wachtwoord in. " - -#: actions/recoverpassword.php:188 -msgid "Password recover" -msgstr "Wachtwoordherstel" - -#: actions/register.php:86 actions/register.php:92 -msgid "Sorry, invalid invitation code." -msgstr "Sorry. De uitnodigingscode is ongeldig." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" -msgstr "Op een gebruiker uit een andere systeem abonneren" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, php-format -msgid "%s's favorite notices, page %d" -msgstr "Favoriete mededelingen van %s, pagina %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "Aliasen" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Mededelingenfeed voor groep %s (RSS 1.0)" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Mededelingenfeed voor groep %s (RSS 2.0)" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Mededelingenfeed voor groep %s (Atom)" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" -"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " -"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " -"over hun ervaringen en interesses. " - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "Beheerders" - -#: actions/shownotice.php:101 -msgid "Not a local notice" -msgstr "Geen lokale mededeling" - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr " met het label %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Mededelingenfeed voor %s met het label %s (RSS 1.0)" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** heeft een gebruiker op %%%%site.name%%%%, eena [microblogdienst]" -"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " -"[StatusNet](http://status.net/). " - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "%s luistert nergens naar." - -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Mededelingenfeed voor label %s (RSS 1.0)" - -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Mededelingenfeed voor label %s (Atom)" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "Deze status is al toegevoegd aan de favorieten." - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "Deze status staat niet in de favorieten." - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -msgid "Could not determine source user." -msgstr "Het was niet mogelijk de brongebruiker te bepalen." - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "De doelgebruiker is niet aangegeven." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -msgid "Could not find target user." -msgstr "Het was niet mogelijk de doelgebruiker te vinden." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Updates over %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Updates met het label %1$s op %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "Licentie" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -msgid "Reject this subscription" -msgstr "Dit abonnement weigeren" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "Profielontwerp" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "%s is van geen enkele groep lid." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." -msgstr "" -"Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te " -"lang." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "Ontwerp" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -msgid "Design your profile" -msgstr "Uw profiel ontwerpen" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "Bijlagen" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "Auteur" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "Provider" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -msgid "Upload file" -msgstr "Bestand uploaden" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "Aan" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "Uit" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "Kleuren wijzigen" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "Achtergrond" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "Inhoud" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "Menubalk" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "Verwijzingen" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "Standaardinstellingen gebruiken" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "Standaardontwerp toepassen" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "Standaardinstellingen toepassen" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "Ontwerp opslaan" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" -msgstr "%s geblokkeerde gebruikers" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "Toevoegen" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "Bestand toevoegen" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "in context" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "Gebruikers-ID" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "Hulp bij zoeken" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, php-format -msgid "%s is not a valid color!" -msgstr "%s is geen geldige kleur." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -msgid "No such page" -msgstr "Deze pagina bestaat niet" - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 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/apifriendshipsdestroy.php:109 -msgid "Could not unfollow user: User not found." -msgstr "" -"Het is niet mogelijk deze gebruiker niet langer te volgende: de gebruiker is " -"niet aangetroffen." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "De beschrijving is te lang. Gebruik maximaal %d tekens." - -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." -msgstr "U bent al lid van die groep." - -#: actions/apigroupjoin.php:138 -#, php-format -msgid "Could not join user %s to group %s." -msgstr "Het was niet mogelijk gebruiker %s toe te voegen aan de groep %s." - -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." -msgstr "U bent geen lid van deze groep." - -#: actions/apigroupleave.php:124 -#, php-format -msgid "Could not remove user %s to group %s." -msgstr "Het was niet mogelijk gebruiker %s uit de group %s te verwijderen." - -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "Groepen van %s" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "Groepen waarvan %s lid is op %s." - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "groepen op %s" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "De status is verwijderd." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Dat is te lang. De maximale mededelingslengte is 140 tekens." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" -"De maximale mededelingenlengte is %d tekens, inclusief de URL voor de " -"bijlage." - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "Niet-ondersteund bestandsformaat." - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "Verzenden naar " - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format -msgid "description is too long (max %d chars)." -msgstr "de beschrijving is te lang (maximaal %d tekens)" - -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Updates op de favorietenlijst van %1$s op %2$s." - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "De gebruiker waarnaar wordt geluisterd bestaat niet." - -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." -msgstr "U hebt niet de juiste toegangsrechten." - -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" -"Het was niet mogelijk het verzoektoken te converteren naar een toegangstoken." - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" -"De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." - -#: actions/getfile.php:75 -msgid "No such file." -msgstr "Het bestand bestaat niet." - -#: actions/getfile.php:79 -msgid "Cannot read file." -msgstr "Het bestand kon niet gelezen worden." - -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Updates voor leden van %1$s op %2$s." - -#: actions/imsettings.php:89 -msgid "IM is not available." -msgstr "IM is niet beschikbaar." - -#: actions/login.php:259 actions/login.php:286 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " -"gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "Updates met \"%s\"" - -#: actions/noticesearchrss.php:91 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Updates die overeenkomen met de zoekterm \"%1$s\" op %2$s." - -#: actions/oembed.php:157 -msgid "content type " -msgstr "inhoudstype " - -#: actions/oembed.php:160 -msgid "Only " -msgstr "Alleen " - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" -"De mededelingenlicentie \"%s\" is niet compatibel met de licentie \"%s\" van " -"deze site." - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Geef een beschrijving van uzelf en uw interesses in %d tekens" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -msgid "Describe yourself and your interests" -msgstr "Beschrijf uzelf en uw interesses" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, php-format -msgid "Bio is too long (max %d chars)." -msgstr "De beschrijving is te lang (maximaal %d tekens)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" -"De URL voor het profiel is niet geldig (het is geen YADIS-document of er is " -"geen of ongeldige XRDS gedefinieerd)." - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "Het was niet mogelijk een verzoektoken te krijgen." - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Antwoordenfeed voor %s (RSS 1.0)" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Antwoordenfeed voor %s (RSS 2.0)" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Antwoordenfeed voor %s (Atom)" - -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Antwoorden aan %1$s op %2$s." - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Favorietenfeed van %s (RSS 1.0)" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Favorietenfeed van %s (RSS 2.0)" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Favorietenfeed van %s (Atom)" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Vriend van een vriend voor de groep %s" - -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "Deze mededeling is verwijderd." - -#: actions/smssettings.php:91 -msgid "SMS is not available." -msgstr "SMS is niet beschikbaar." - -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Mededelingenfeed voor label %s (RSS 2.0)" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Controleer alstublieft deze details om er zeker van te zijn dat u zich wilt " -"abonneren op de mededelingen van deze gebruiker. Als u zojuist niet hebt " -"aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, " -"klik dan op \"Afwijzen\"." - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de site voor informatie over het volledig " -"afwijzen van een abonnement. Uw abonnementstoken is:" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de site voor informatie over het volledig " -"afwijzen van een abonnement." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." - -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"." - -#: lib/action.php:435 -msgid "Connect to services" -msgstr "Met diensten verbinden" - -#: lib/action.php:785 -msgid "Site content license" -msgstr "Licentie voor siteinhoud" +#: lib/userprofile.php:249 +msgid "Edit" +msgstr "Bewerken" -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "De gebruiker %s is niet aangetroffen" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Deze gebruiker een direct bericht zenden" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Bericht" -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "De por naar %s is verzonden" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "een paar seconden geleden" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "ongeveer een minuut geleden" -#: lib/command.php:358 scripts/xmppdaemon.php:321 +#: lib/util.php:848 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" -"Het bericht te is lang. De maximale lengte is %d tekens. De lengte van uw " -"bericht was %d" +msgid "about %d minutes ago" +msgstr "ongeveer %d minuten geleden" -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "ongeveer een uur geleden" -#: lib/command.php:439 +#: lib/util.php:852 #, php-format -msgid "Reply to %s sent" -msgstr "Het antwoord aan %s is verzonden" - -#: lib/command.php:441 -msgid "Error saving notice." -msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." - -#: lib/common.php:191 -msgid "No configuration file found. " -msgstr "Er is geen instellingenbestand aangetroffen. " - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "Naar het installatieprogramma gaan." - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "Selecteer een label om op te filteren" +msgid "about %d hours ago" +msgstr "ongeveer %d uur geleden" -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "Beschrijf de groep of het onderwerp" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "ongeveer een dag geleden" -#: lib/groupeditform.php:170 +#: lib/util.php:856 #, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Beschrijf de groep of het onderwerp in %d tekens" +msgid "about %d days ago" +msgstr "ongeveer %d dagen geleden" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "mededelingennummer: %s" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "ongeveer een maand geleden" -#: lib/mail.php:554 +#: lib/util.php:860 #, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" +msgid "about %d months ago" +msgstr "ongeveer %d maanden geleden" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "ongeveer een jaar geleden" -#: lib/mail.php:611 +#: lib/webcolor.php:82 #, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "%s (@%s) heeft u een mededeling gestuurd" +msgid "%s is not a valid color!" +msgstr "%s is geen geldige kleur." -#: lib/mail.php:613 +#: lib/webcolor.php:123 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "van" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "Met dit bestand wordt het quotum van de gebruiker overschreden!" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Het was niet mogelijk het MIME-type van het bestand te bepalen!" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Kennisgeving van duplicaat" - -#: actions/login.php:110 actions/login.php:120 -msgid "Invalid or expired token." -msgstr "Het token is ongeldig of verlopen." +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." -#: lib/command.php:597 -#, php-format -msgid "Could not create login token for %s" -msgstr "Het was niet mogelijk een aanmeldtoken aan te maken voor %s" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Het was niet mogelijk het bericht te verwerken." -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Geen geregistreerde gebruiker" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Dat bestand is te groot. De maximale bestandsgrootte is %s." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Dit is niet uw inkomende e-mailadres." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Inkomende e-mail is niet toegestaan." diff --git a/locale/nn/LC_MESSAGES/statusnet.mo b/locale/nn/LC_MESSAGES/statusnet.mo index 29d03bd3b..fe675d2f6 100644 Binary files a/locale/nn/LC_MESSAGES/statusnet.mo and b/locale/nn/LC_MESSAGES/statusnet.mo differ diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index c9e7c4063..e9aac3e38 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -5,3105 +5,1997 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:56:54+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58: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.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Søkestraum for «%s»" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " -"telefonnummer." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Dette emneord finst ikkje." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " frå " +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Brukaren finst ikkje." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Oppdateringar som svarar til %2$s" +msgid "%s and friends, page %d" +msgstr "%s med vener, side %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s har invitert deg til %2$s" +msgid "%s and friends" +msgstr "%s med vener" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%$1s har invitert deg til %2$s (%3$s).\n" -"\n" -"%$2s er ei mikrobloggingteneste som let deg halda deg oppdatert på folk du " -"kjenner og/eller som interesserer deg.\n" -"\n" -"Du kan òg dela nyhende om deg sjølv, dine tankar eller livet ditt på nettet " -"med folk som kjenner til deg. Det er supert for å møte nye folk med like " -"interesser.\n" -"\n" -"%1$s sa:\n" -"\n" -"%4$s\n" -"\n" -"Du kan sjå profilsida til %1$s på %2$s her:\n" -"\n" -"%5$s\n" -"\n" -"Viss du vil prøva tenesta, klikk på lenka nedanfor for å akseptera " -"invitasjonen.\n" -"\n" -"Beste helsing, %2$s\n" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Straum for vener av %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s høyrer no på notisane dine på %2$s." +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Straum for vener av %s" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Straum for vener av %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s fylgjer no oppdateringane dine på %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Beste helsing,\n" -"%4$s.\n" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s oppdateringar som svarar på oppdateringar frå %2$s / %3$s." - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s sin status på %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s offentlege straum" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s med vener" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "%s offentleg tidsline" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Oppdateringar frå %1$s og vener på %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s status" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Fann ikkje API-metode." -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidsline" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Dette krev ein POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "%s oppdateringar frå alle saman!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Du mottek ein epost med instruksjonar på korleis du stadfester epostadressa " -"di)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." -"broughtbyurl%%). " +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Brukaren har inga profil." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** er ei mikrobloggingteneste. " +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Blokkering av brukar feila." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Bidrag skal verta fylgd av fullt namn eller kallenamn." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "De-blokkering av brukar feila." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Inga meldingstekst!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom. " -"Kravd." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Det er for langt. Ein notis kan berre være 140 teikn." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 eller fleire teikn" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Kunne ikkje finne mottakar." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 eller fleire teikn, og ikkje gløym dei." +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 eller fleire teikn. Kravd." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direkte meldingar til %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Sendte godkjenningskode til ljonmeldingsadressa du la til. Du må godtaka %s " -"for å senda meldinger til deg." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Sendte godkjenningskode til epostadressa du la til. Sjekk innboksen (og " -"søppelpostboksen) for koden og veiledning på korleis du nyttar han." +msgid "All the direct messages sent from %s" +msgstr "Alle direkte meldingar sendt fra %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " -"koden og veiledning på korleis du nyttar han." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Direkte meldingar til %s" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Fann ikkje API-metode." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Alle direkte meldingar sendt til %s" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API-metoden er ikkje ferdig enno." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Fann ingen status med den ID-en." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Om" +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Denne notisen er alt ein favoritt!" -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Godta" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Kunne ikkje lagre favoritt." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Legg til" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Denne notisen er ikkje ein favoritt!" -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Legg til OpenID" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Kunne ikkje slette favoritt." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Legg/fjern OpenID-er" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Venene sine adresser for invitasjon (ei per line)" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Alle tingingar" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Alle oppdateringar for %s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Alle oppdateringer frå søket «%s»" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "To brukar IDer eller kallenamn er naudsynte." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Allereie logga inn." +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kan ikkje hente offentleg straum." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Allereie tinga!" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kan ikkje finna einkvan status." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Sikker på at du vil sletta notisen?" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Kunne ikkje laga gruppa." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autoriser tinging" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kunne ikkje lagre favoritt." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Logg inn automatisk i framtidi (ikkje for delte maskiner)." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Kunne ikkje bli med i gruppa." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Brukarbilete" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Lasta opp brukarbilete." +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Ikkje eit gyldig brukarnamn." + +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Heimesida er ikkje ei gyldig internettadresse." + +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "skildringa er for lang (maks 140 teikn)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Plassering er for lang (maksimalt 255 teikn)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Too many aliases! Maximum %d." msgstr "" -"Venter på godkjenning. Sjekk din Jabber/GTalk-konto for ei melding med " -"instruksjonar (la du %s til venelista di?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig merkelapp: %s" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Ventar på godkjenning. Sjekk innboksen (og søppelpostboksen) for ei melding " -"med instruksjonar." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Ventar på godkjenning for dette telefonnummeret." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du er allereie medlem av den gruppa" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Før »" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Om meg" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "«Om meg» er for lang (maks 140 " +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du er ikkje medlem av den gruppa." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Kan ikkje sletta notisen." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Kunne ikkje fjerne %s fra %s gruppa " -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Kan ikkje lesa brukarbilete-URL «%s»" +msgid "%s groups" +msgstr "%s grupper" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Klarar ikkje lagra nytt passord." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Gruppe handlingar" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Avbryt" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s grupper" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Klarte ikkje laga OpenID-objekt." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Grupper %s er medlem av" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Klarar ikkje normalisera Jabber-IDen" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Dette krev anten ein POST eller DELETE." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Klarar ikkje normalisera epostadressa" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Du kan ikkje sletta statusen til ein annan brukar." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Endra" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Lasta opp brukarbilete." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Endra eposthandtering" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Fann ingen status med den ID-en." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Endra passord" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Endra passordet ditt" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Fann ikkje" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Endra profilinnstillingane dine" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Godta" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Støttar ikkje bileteformatet." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Stadfest adresse" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favorittar frå %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Stadfesting avbrutt." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s oppdateringar favorisert av %s / %s." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Stadfestingskode" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s tidsline" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Fann ikkje stadfestingskode." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Oppdateringar som svarar til %2$s" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Gratulerer, %s! Og velkomen til %%%%site.name%%%%. Frå her kann det henda du " -"vil...\n" -"\n" -"* Gå til [profilen din](%s) og skriva den fyrste meldinga.\n" -"* Leggja til ei [Jabber/GTalk adresse](%%%%action.imsettings%%%%) so du kann " -"laga nye meldingar ved hjelp av direktemeldingar.\n" -"* [Søkje etter folk](%%%%action.profilesettings%%%%) det kan hende du " -"kjenner, eller som du delar interesser med.\n" -"* Uppdatere dine [profilval] so du kann fortelja andre meir um deg sjølv.* " -"Lesa [hjelpetekstane](%%%%doc.help%%%%) for å finna ut meir um funksjonar du " -"kann ha gådd glipp av.\n" -"\n" -"Takk for at du blei med, og vi håpar du vil lika tenesta!" - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Kopla til" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Kopla til eksisterande konto" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Kontakt" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s oppdateringar som svarar på oppdateringar frå %2$s / %3$s." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Kunne ikkje laga OpenID-form: %s" +msgid "%s public timeline" +msgstr "%s offentleg tidsline" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" +msgid "%s updates from everyone!" +msgstr "%s oppdateringar frå alle saman!" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Klarte ikkje å omdirigera til tenaren: %s" +msgid "Notices tagged with %s" +msgstr "Notisar merka med %s" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Kan ikkje lagra brukarbilete-informasjon" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Kan ikkje lagra ny profilinfo" +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Finst ikkje." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Kan ikkje tinga andre til deg." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Slikt dokument finst ikkje." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Kan ikkje tinga." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Ingen kallenamn." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Ingen storleik." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Ugyldig storleik." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Kan ikkje sletta e-postgodkjenning." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Brukarbilete" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Kan ikkje sletta tinging." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kan laste opp ein personleg avatar." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Kan ikkje finna einkvan status." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Kan ikkje finne brukar" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Fekk ikkje spørjingsbillett (request token)." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Avatar-innstillingar" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Kan ikkje leggja til godkjenningskode." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Original" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Kan ikkje leggja til ny tinging." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Forhandsvis" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Kan ikkje lagra profil." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Slett" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Kan ikkje oppdatera brukar for automatisk tinging." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Last opp" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Kan ikkje oppdatera brukarinformajon." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Skaler" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Kan ikkje oppdatera brukar." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Lag" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Uventa skjemasending." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Lag ei ny brukar med dette kallenamnet." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Velg eit utvalg av bildet som vil blir din avatar." -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Opprett ny konto" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Fant ikkje igjen fil data." -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Oppretter ny konto for OpenID som allereie har ein brukar." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Lasta opp brukarbilete." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Stadfesta Jabber/Gtalk-adresse." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Feil ved oppdatering av brukarbilete." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Godkjent mobiltelefonnummer." +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Lasta opp brukarbilete." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Godkjent epostadresse." +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Ingen kallenamn" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Noverande" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Fann ikkje gruppa" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Brukarprofil" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Databasefeil, kan ikkje lagra svar: %s" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s med vener, side %d" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Slett notis" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Ei liste over brukarane i denne gruppa." -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Skriv om deg og interessene dine med 140 teikn" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "De-blokkering av brukar feila." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Epost" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Lås opp" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Epostadresse" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Lås opp brukaren" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Epostinnstillingar" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Ikkje logga inn" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Epostadressa finst allereie." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Ingen vald profil." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Stadfesting av epostadresse" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Fann ingen profil med den IDen." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Epostadresse («brukarnamn@example.org»)" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Blokker brukaren" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Epostadresser" +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Skriv inn kallenamn eller epostadresse." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Nei" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Skriv inn koden du fekk på telefonen." +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Ei liste over brukarane i denne gruppa." -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Feil ved godkjenning av billett." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Jau" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Feil ved kopling av brukar til OpenID." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ei liste over brukarane i denne gruppa." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Feil ved å kopla til brukar." +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Du har allereie blokkert denne brukaren." -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Feil med innhenting av brukarbilete." +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Lagring av informasjon feila." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Feil med å henta inn ny profil" +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Bilete" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Feil med å henta inn ekstern profil" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Ingen stadfestingskode." -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Feil med lagring av adressestadfesting." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Fann ikkje stadfestingskode." -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Feil med lagring av ekstern profil" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Den godkjenningskoden er ikkje for deg!" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Feil ved lagring av profil" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Ukjend adressetype %s" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Feil ved lagring av brukar" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Den addressa har alt blitt bekrefta." -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Feil ved lagring av brukar; fungerer ikkje." +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Kan ikkje oppdatera brukar." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Feil ved å setja brukar." +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Kan ikkje sletta e-postgodkjenning." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Feil ved oppdatering av profil" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Stadfest adresse" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Feil ved oppdatering av ekstern profil" +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Addressa \"%s\" har blitt bekrefta for din konto." -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Feil med stadfestingskode." +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Stadfestingskode" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Kallenamnet eksisterer" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Notisar" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "OSS" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Denne notisen finst ikkje." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Feil ved oppdatering av brukarbilete." +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Kan ikkje sletta notisen." -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Straum for vener av %s" +#: actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " +"ikkje finne ho att." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Straum for svar til %s" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Slett notis" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Straum for merkelapp %s" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Sikker på at du vil sletta notisen?" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Søk i innhaldet av notisar" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan ikkje sletta notisen." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Finn folk på denne sida" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Slett denne notisen" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Skriv inn brukarnam og passord før du endrar innstillingar (av " -"tryggleiksomsyn)." +#: actions/deletenotice.php:157 +#, fuzzy +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/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Fullt namn" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Denne notisen er ikkje ein favoritt!" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Legg til i favorittar" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Hjelp" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Slikt dokument finst ikkje." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Heim" +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Rediger %s gruppa" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Heimeside" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Du må være logga inn for å lage ei gruppe." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Heimesida er ikkje ei gyldig internettadresse." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Du må være administrator for å redigere gruppa" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Eg vil senda notisar med epost." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Bruk dette skjemaet for å redigere gruppa" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "Ljonmelding" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "skildringa er for lang (maks 140 teikn)." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Ljonmeldingadresse" +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Kann ikkje oppdatera gruppa." -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Ljonmeldinginnstillingar" +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Lagra innstillingar." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Logg inn med brukarnanm/passord for å kopla brukaren til OpenID-en, viss du " -"allereie har ein brukar" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Epostinnstillingar" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Skriv OpenID-en din i boksen nedanfor og trykk «Legg til» om du ynskjer å " -"leggja han til." +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Styr korleis du får epost frå %%site.name%%." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adresse" + +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Godkjent epostadresse." + +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Fjern" + +#: actions/emailsettings.php:113 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Me sender deg eit nytt passord til epostadressa i kontoen din viss du har " -"mista det gamle." +"Ventar på godkjenning. Sjekk innboksen (og søppelpostboksen) for ei melding " +"med instruksjonar." + +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Avbryt" + +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Epostadresse" + +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Epostadresse («brukarnamn@example.org»)" + +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Legg til" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 #: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Innkomande epost" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Fjerna innkomande epostadresse." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Send epost til denne addressa for å legge til nye notisar." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Det gamle passordet stemmer ikkje" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Vel ny epostadresse til å oppdatera med; fjerner den gamle." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Feil brukarnamn eller passord" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Ny" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instruksjonar for å få att passordet ditt er send til epostadressa som er " -"lagra i kontoen din." +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Brukarval" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Ugyldig brukarbilete-nettadresse «%s»" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Send meg ein notis ved nye tingingar på epost." -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Ugyldig epostadresse: «%s»" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" +"Send meg ein epost når nokon legg til ein av mine notisar som favoritt." -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Ugyldig heimeside «%s»" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Send meg ein epost når nokon sender meg ei privat melding." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Ugyldig lisens-netadresse «%s»" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Send meg ein epost når nokon sender meg ei privat melding." -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Ugyldig notisinnhald" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Tillat vennar å sende meg ein epost." -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Ugyldig notis-adresse" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Eg vil senda notisar med epost." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Ugyldig notis-adresse" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publiser ein MicroID for epost addressa mi." -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Ugyldig profil-nettadresse «%s»" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Lagra" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Ugyldig profil-nettadresse (feil format)" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Lagra brukarval." -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Ugyldig profil-nettadresse returnert av tenar." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Ingen epostadresse." -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Ugyldig storleik." - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Ugyldig brukarnamn eller passord." - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Invitasjon(er) sendt" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Invitasjon(er) sendt til fylgjande folk:" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Klarar ikkje normalisera epostadressa" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Invitér" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Ikkje ei gyldig epostadresse" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Invitér nye brukarar" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Det er alt din epost addresse" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Den køyrer [StatusNet](http://status.net) mikroblogging-programvare, versjon " -"%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Den epost addressa er alt registrert hos ein annan brukar." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber-ID tilhøyrer allereie ein annan brukar." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Kan ikkje leggja til godkjenningskode." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format +#: actions/emailsettings.php:358 msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +"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 "" -"Jabber- eller GTalk-adresse, døme «brukarnamn@example.org». Hugs å fyrst " -"leggja %s til venelista di i ljonmeldingsklienten din." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Språk" +"Sendte godkjenningskode til epostadressa du la til. Sjekk innboksen (og " +"søppelpostboksen) for koden og veiledning på korleis du nyttar han." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Språk er for langt (maksimalt 50 teikn)." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Ingen ventande stadfesting å avbryta." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Plassering" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Det er feil lynmeldings addresse." -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Plassering er for lang (maksimalt 255 teikn)." +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Stadfesting avbrutt." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Logg inn" +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Det er ikkje din epost addresse." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Logg inn med ein [OpenID](%%doc.openid%%)-konto." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Addressa blei fjerna." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" -"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" -"%)." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Ingen innkomande epostadresse." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Logg ut" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Kan ikkje oppdatera brukarinformajon." -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Lengre namn, fortrinnsvis ditt «ekte» namn" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Fjerna innkomande epostadresse." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Mista eller gløymd passord?" +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "La til ny innkomande epostadresse." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Vel ny epostadresse til å oppdatera med; fjerner den gamle." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Populære notisar" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 +#: actions/favorited.php:67 #, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Styr korleis du får epost frå %%site.name%%." +msgid "Popular notices, page %d" +msgstr "Populære notisar, side %d" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Medlem sidan" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Viser dei mest populære notisane på sida akkurat no." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Mikroblogg av %s" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 +#: 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 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." +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -"Mobiloperatøren din. Ta kontakt på %s viss du kjenner ein mobiloperatør som " -"aksepterer SMS-over-epost, men ikkje vistast her." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Teksten og filene mine er tilgjengeleg under " +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "%s's favoritt meldingar" -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Ny" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Denne notisen er alt ein favoritt!" + +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Fjern favoritt" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Profilerte folk" + +#: actions/featured.php:71 #, php-format -msgid "New email address for posting to %s" -msgstr "Ny epostadresse for å oppdatera %s" +msgid "Featured users, page %d" +msgstr "Profilerte folk, side %d" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "La til ny innkomande epostadresse." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Eit utval av nokre av dei flotte folka på %s" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nytt kallenamn" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Ny notis" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" msgstr "Ny notis" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nytt passord" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Lagra det nye passordet. Du er logga inn." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Kallenamn" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Venta ikkje dette svaret!" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Brukaren du lyttar til eksisterer ikkje." -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Du kan nytta det lokale abonnementet!" -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Kallenamnet er ikkje gyldig." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Kallenamnet til brukaren du vil fylgja" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Ikkje autorisert." -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Kallenamn eller epostadresse" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Nei" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Ukjend versjon av OMB-protokollen." -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Nei Jabber-ID" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Feil ved oppdatering av ekstern profil" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Ingen autoriserings-spørjing!" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Denne gruppa finst ikkje." -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Ingen mobiloperatør vald." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Denne notisen finst ikkje." -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Ingen innskriven kode" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Ingen stadfestingskode." - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Ingen innhald." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Mista fila vår." -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Ingen epostadresse." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Ingen vald profil." -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Ingen ID." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Ingen innkomande epostadresse." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Brukar har blokkert deg." -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Ingen kallenamn gjeve av den eksterne tenaren." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du er ikkje medlem av den gruppa." -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Ingen kallenamn." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Blokker brukaren" -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Ingen ventande stadfesting å avbryta." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Ingen telefonnummer." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Ingen profil-nettadresse returnert av tenar." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Ingen ID" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Ingen registrert epostadresse for den brukaren." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Du må være logga inn for å lage ei gruppe." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Fann inga spørjing." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grupper" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Ingen resultat" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Ingen storleik." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kan ikkje oppdatera brukar." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Fann ingen status med den ID-en." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Fann ingen status med den ID-en." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synkroniserings innstillingar blei lagra." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Fann ingen slik OpenID." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Logo åt gruppa" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Slikt dokument finst ikkje." +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Du kan lasta opp ein logo for gruppa." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Denne notisen finst ikkje." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Velg eit utvalg av bildet som vil blir din avatar." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Opprettingskoden finst ikkje." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Logo oppdatert." -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Tinginga finst ikkje." - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Brukaren finst ikkje." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Feil ved oppdatering av logo." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Ingen brukar med den epostadressa eller det brukarnamnet." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "%s medlemmar i gruppa" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Ingen å visa!" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "%s medlemmar i gruppa, side %d" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Ikkje ei gjenopprettingskode." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Ei liste over brukarane i denne gruppa." -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Ikkje ein registrert brukar." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Administrator" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Ikkje eit støtta dataformat." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Blokkér" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Ikkje ein gyldig Jabber-ID" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Blokkér denne brukaren" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Ikkje ein gyldig OpenID." +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Du må være administrator for å redigere gruppa" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Ikkje ei gyldig epostadresse" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Administrator" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Ikkje ei gyldig epostadresse." +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Ikkje eit gyldig brukarnamn." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Ikkje ein gyldig profil-netadresse (feil teneste)." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " +"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Ikkje brukande profil-netadresse (ingen XRDS definert)." +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Gruppesøk" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ingen resultat" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Korrupt bilete." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Ikkje autorisert." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Venta ikkje dette svaret!" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Grupper" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Fann ikkje" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Grupper, side %d" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Ikkje logga inn" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Ikkje tinga." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Opprett ei ny gruppe" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Notissøk" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Notisstraum for %s" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Brukar har blokkert deg." -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Notisen har ingen profil" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Feil ved fjerning av blokka." -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Notisar" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Ljonmeldinginnstillingar" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/imsettings.php:70 #, php-format -msgid "Notices tagged with %s" -msgstr "Notisar merka med %s" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Gamalt passord" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID kontooppsett" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID auto-innsending" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID-adresse" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID-adresse" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID-påkopling avbrutt." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID-innlogging gjekk dunken: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID-feil: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "Fjerna OpenID." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID-innstillingar" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Eventuelt legg til ei personleg melding til invitasjonen." - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Hallvegs opplasta." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Passord" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Passord og stadfesting stemmer ikkje." - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Passord må vera 6 tekn eller meir." - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Passord opphenting etterspurt" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Lagra passord." - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Passorda var ikkje like." - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Folk" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Søk etter folk" +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%" +"doc.im%%). Set opp adressa og innstillingar under." -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Søk etter folk" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Denne sida er ikkje tilgjengleg i eit" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Personleg" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Stadfesta Jabber/Gtalk-adresse." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Personleg melding" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Venter på godkjenning. Sjekk din Jabber/GTalk-konto for ei melding med " +"instruksjonar (la du %s til venelista di?)" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Telefonnummer, kun tall, med landskode" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Ljonmeldingadresse" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " -"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" +"Jabber- eller GTalk-adresse, døme «brukarnamn@example.org». Hugs å fyrst " +"leggja %s til venelista di i ljonmeldingsklienten din." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Send meg ein notis via Jabber/GTalk." + +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Legg til ein notis når min Jabber/GTalk status forandrar seg." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Brukarval" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Lagra brukarval." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Foretrukke språk" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Personvern" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Eit problem oppstod ved lagring av notis." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profil" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Profil-adresse" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Profilinnstillingar" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Ukjend profil" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Offentleg straum" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Offentleg tidsline" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "Send meg svar via Jabber/GTalk fra folk eg ikkje abbonnerar på." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 +#: actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser ein MicroID for Jabber/GTalk addressene mine" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publiser ein MicroID for epost addressa mi." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Nei Jabber-ID" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Nylege merkelappar" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Klarar ikkje normalisera Jabber-IDen" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Gjenopprett" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Ikkje ein gyldig Jabber-ID" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Hent fram passord" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Det er alt din Jabber ID." -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Hent fram passord for ukjend brukar." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber-ID tilhøyrer allereie ein annan brukar." -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registrér" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Sendte godkjenningskode til ljonmeldingsadressa du la til. Du må godtaka %s " +"for å senda meldinger til deg." -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Registrering ikkje tillatt." +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Det er ikkje din Jabber ID." -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Registreringa gikk bra" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Innboks for %s - side %d" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Avslå" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Innboks for %s" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Hugs meg" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "Dette er innboksen for dine private meldingar." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Ekstern profil med ingen passande profil" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Eksternt abbonement" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Du må verta logga inn for å invitera andre brukarar til %s" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Fjern" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Ugyldig epostadresse: «%s»" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Fjern OpenID" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Invitasjon(er) sendt" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Ved å fjerne din einaste OpenID vil det ikkje være mulig å logge inn! Vist " -"du treng å fjerne den, legg til ein annan OpenID først." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Invitér nye brukarar" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Svar" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Du tingar allereie oppdatering frå desse brukarane:" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Replies to %s" -msgstr "Svar til %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Avbryt" +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Tilbakestill passord" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Desse er alt brukarar og du var automatisk satt opp med tinging på dei:" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Invitasjon(er) sendt til fylgjande folk:" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS telefon nummer" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Du vil få ein notis når dei du har invitert har akseptert invitasjonen og " +"har registrert seg på sida. Takk for å bidra til fellesskapet her!" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS innstillingar" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Bruk dette skjemaet for å invitera vener og kolleger til å nytta denne " +"tenesta." -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS bekreftelse" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Epostadresser" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Samme passord som over" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Venene sine adresser for invitasjon (ei per line)" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Samme som passord over. Påkrevd." +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Personleg melding" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Lagra" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Eventuelt legg til ei personleg melding til invitasjonen." -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Søk" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Send" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Søk i straum" +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s har invitert deg til %2$s" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:228 #, php-format msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Søk i notisar på %%site.name%% i innhald. Separer nøkkelord med mellomrom; " -"dei må være minimum 3 bokstavar eller meir." - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " -"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." +"%$1s har invitert deg til %2$s (%3$s).\n" +"\n" +"%$2s er ei mikrobloggingteneste som let deg halda deg oppdatert på folk du " +"kjenner og/eller som interesserer deg.\n" +"\n" +"Du kan òg dela nyhende om deg sjølv, dine tankar eller livet ditt på nettet " +"med folk som kjenner til deg. Det er supert for å møte nye folk med like " +"interesser.\n" +"\n" +"%1$s sa:\n" +"\n" +"%4$s\n" +"\n" +"Du kan sjå profilsida til %1$s på %2$s her:\n" +"\n" +"%5$s\n" +"\n" +"Viss du vil prøva tenesta, klikk på lenka nedanfor for å akseptera " +"invitasjonen.\n" +"\n" +"Beste helsing, %2$s\n" -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Velg ein tilbydar" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Du må være logga inn for å bli med i ei gruppe." -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Send" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Du er allereie medlem av den gruppa" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Send epost til denne addressa for å legge til nye notisar." +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Send meg ein notis ved nye tingingar på epost." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s blei medlem av gruppe %s" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Send meg ein notis via Jabber/GTalk." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Du må være innlogga for å melde deg ut av ei gruppe." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Send meg ein notis via SMS; eg forstår at dette kan føre til kostnadar fra " -"min tilbydar." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "Du er ikkje medlem av den gruppa." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Send meg svar via Jabber/GTalk fra folk eg ikkje abbonnerar på." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Kan ikkje finne brukar." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Innstillingar" +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "Kunne ikkje fjerne %s fra %s gruppa " -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Lagra innstillingar." +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s forlot %s gruppa" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Viser dei mest populære merkelappane fra siste veka" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Allereie logga inn." -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Nokon andre har alt registrert den OpenID profilen." +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Ugyldig notisinnhald" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Noko rart skjedde." +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Feil brukarnamn eller passord" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Beklager, inngåande epost er ikkje tillatt." +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Feil ved å setja brukar." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Beklager, det er ikkje di inngåande epost addresse." +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Logg inn" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Kjeldekode" +#: actions/login.php:243 +msgid "Login to site" +msgstr "Logg inn " -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistikk" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Kallenamn" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Fann ikkje lagra OpenID" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Ting" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Passord" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Tingarar" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Hugs meg" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Tinging autorisert" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Logg inn automatisk i framtidi (ikkje for delte maskiner)." -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Tinging avvist" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Mista eller gløymd passord?" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Tingingar" +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Skriv inn brukarnam og passord før du endrar innstillingar (av " +"tryggleiksomsyn)." -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Systemfeil ved opplasting av fil." +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" +"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" +"%)." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Merkelappar" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Tekst" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Tekstsøk" +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Den OpenID addressa tilhøyrer ikkje deg." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Den addressa har alt blitt bekrefta." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Ingen status" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Den godkjenningskoden er ikkje for deg!" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Ny gruppe" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Den epost addressa er alt registrert hos ein annan brukar." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Bruk dette skjemaet for å lage ein ny gruppe." -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Fila er for stor." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Ny melding" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Det er alt din Jabber ID." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Du kan ikkje sende melding til denne brukaren." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Det er alt din epost addresse" +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Ingen innhald." -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Det er alt ditt telefonnummer" +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Ingen mottakar spesifisert." -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Det er ikkje din Jabber ID." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't 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/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Det er ikkje din epost addresse." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Melding" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Det er ikkje ditt telefonnummer" +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Direkte melding til %s sendt" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Det er feil lynmeldings addresse." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Ajax feil" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Det er feil godkjennings nummer." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Ny notis" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Det telefonnummeret er alt registrert hos ein annan brukar." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Melding lagra" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Det er for langt! Ein notis kan berre innehalde 255 teikn." - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/noticesearch.php:68 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Addressa \"%s\" har blitt bekrefta for din konto." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Addressa blei fjerna." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " -"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " -"gjennomførast. Ditt tingings teikn er: " - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " -"med sida sine instruksjonar for korleis ein skal avvise tinginga." +"Søk i notisar på %%site.name%% i innhald. Separer nøkkelord med mellomrom; " +"dei må være minimum 3 bokstavar eller meir." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Dette er folk som lyttar til %s's notisar" +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Tekstsøk" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Dette er folk som lyttar til dine notisar." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Søkestraum for «%s»" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Dette er folka som %s tingar oppdateringar frå." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Dette er dei du lyttar til." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Desse er alt brukarar og du var automatisk satt opp med tinging på dei:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Denne godkjenningskoden er for gammal. Vennligst start på nytt." -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:124 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Skjemaet burde automatisk sendast inn av seg sjølv. Om det ikkje gjer det, " -"kann du klikka på knappen for å gå til OpenID-tilbydaren din." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Dette er den fyrste gongen du hev logga inn på %s, so vi må kopla din OpenID " -"til den lokale kontoen din. Du kann anten laga ein ny konto, eller kopla " -"til ein eksisterande konto, om du hev ein frå før." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Dette krev anten ein POST eller DELETE." +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Oppdateringar frå %1$s på %2$s!" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Dette krev ein POST." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle oppdateringer frå søket «%s»" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Denne sida er ikkje tilgjengeleg i nokon mediatype du aksepterer." +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Denne brukaren tillét ikkje å bli dytta, eller har ikkje stadfasta eller sat " +"e-postadressa si enno." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Tidssone" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Dytta!" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Tidssone er ikkje valt." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Dytta!" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Notisen har ingen profil" + +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"For å tinga kann du [logga inn](%%action.login%%), eller [registrera](%%" -"action.register%%) ein ny konto. Um du allereie hev ein konto på ei " -"[kompatibel mikrobloggingside](%%doc.openmublog%%), kann du oppgje URLen til " -"profilen under." +msgid "%1$s's status on %2$s" +msgstr "%1$s sin status på %2$s" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "To brukar IDer eller kallenamn er naudsynte." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Kopla til" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Ikkje eit støtta dataformat." -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Uventa skjemasending." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Søk etter folk" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Uventa passordnullstilling." +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Notissøk" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Uventa handling." +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Andre innstillingar" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Ukjend versjon av OMB-protokollen." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Velikehald andre innstillingar" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -"Vist anna ikkje er spesifert er innhaldet på denne sida opphavsrettslig " -"beskyttet av bidragsytaren og er tilgjengleg under " - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Ukjend adressetype %s" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Fjern tinging" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Støttar ikkje OMB-versjonen" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Den automatisk forkortingstenesta du vil bruke" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Støttar ikkje bileteformatet." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profilinnstillingar" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Oppdateringar over SMS" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Oppdateringar over direktemeldingar (IM)" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Adressa til forkortingstenesta er for lang (maksimalt 50 teikn)." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Oppdateringar frå %1$s og vener på %2$s!" +msgid "Outbox for %s - page %d" +msgstr "Utboks for %s - side %d" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Oppdateringar frå %1$s på %2$s!" +msgid "Outbox for %s" +msgstr "Utboks for %s" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Last opp" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "Dette er din utboks som syner alle private meldingar du har sendt." -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Last opp ein ny «avatar» (brukarbilete) her. Du kan ikkje redigera bilete " -"etter du har lasta det opp, so sørg for at det er meir eller mindre " -"firkanta. Det må ogso vera under den same lisensen. Nytta eit bilete som " -"tilhøyrer deg, og som du vil dela." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Last opp eit nytt profilbilete" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Bruk dette skjemaet for å invitera vener og kolleger til å nytta denne " -"tenesta." +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Endra passord" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord" +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Endra passordet ditt" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Brukaren du lyttar til eksisterer ikkje." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Endra passord" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Brukaren har inga profil." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Gamalt passord" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Brukaren sitt kallenamn" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nytt passord" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Fant ikkje brukaren." +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 eller fleire teikn" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "Kva tidssone er du vanlegvis i?" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Godta" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Kva skjer, %s?" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "same passord som ovanfor" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Endra" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Feil biletetype for '%s'" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Passord må være minst 6 teikn." -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Feil storleik på biletet, på '%s'" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Passorda var ikkje like." -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Jau" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Det gamle passordet stemmer ikkje" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Du hev denne OpenIDen allereie!" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Feil ved lagring av brukar; fungerer ikkje." -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " -"ikkje finne ho att." +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Klarar ikkje lagra nytt passord." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Du er allereie logga inn!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Du tingar allereie oppdatering frå desse brukarane:" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Lagra passord." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Du er ikkje ven med brukaren." +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " +"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Du kan endra passord her. Vel eit godt passord!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Søk etter folk" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Du kan laga ein ny konto og byrja skriva meldingar." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Ikkje gyldig merkelapp: %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%." +msgid "Users self-tagged with %s - page %d" +msgstr "Brukarar sjølv-merka med %s, side %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Du kan fjerna OpenID frå kontoen din ved å klikka på knappen som seier " -"«Fjern»." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Ugyldig notisinnhald" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%" -"doc.im%%). Set opp adressa og innstillingar under." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Profilinnstillingar" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3111,2888 +2003,2103 @@ msgstr "" "Du kan oppdatera informasjonen i profilen din her, so folk kan vite meir om " "deg." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Du kan nytta det lokale abonnementet!" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Du sende oss ikkje den profilen" +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Profil informasjon" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" -"Du hev ei ny posteadresse på %1½s.\n" -"\n" -"Send e-post til %2$s for å posta nyte meldingar.\n" -"\n" -"Fleiere e-postinstruksjonar finn du på %3½s.\n" -"\n" -"Helsing frå %4$s" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Du kan ikkje sletta statusen til ein annan brukar." +"1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Du må verta logga inn for å invitera andre brukarar til %s" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Fullt namn" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Du vil få ein notis når dei du har invitert har akseptert invitasjonen og " -"har registrert seg på sida. Takk for å bidra til fellesskapet her!" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Heimeside" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Du har blitt identifisert. Skriv inn eit nytt passord under her." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Din OpenID" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Skriv om deg og interessene dine med 140 teikn" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Ditt kallenamn på denne servere, eller din registrerte epost addresse." +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Skildra deg sjølv og din" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, 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%%) lar deg logge inn på mangen sider med den samme " -"brukar kontoen. Velikehold dine OpenID herfra." +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Om meg" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "eit par sekund sidan" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Plassering" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "~%d dagar sidan" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "~%d timar sidan" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Merkelappar" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "~%d minutt sidan" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " +"mellomroms separert." -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "~%d månadar sidan" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Språk" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "omtrent ein dag sidan" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Foretrukke språk" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "omtrent eitt minutt sidan" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Tidssone" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "omtrent ein månad sidan" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "Kva tidssone er du vanlegvis i?" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "omtrent eitt år sidan" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "omtrent ein time sidan" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "«Om meg» er for lang (maks 140 " -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "slett" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "som svar på..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "svar" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "same passord som ovanfor" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Tidssone er ikkje valt." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "ikkje støtta fil type" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Språk er for langt (maksimalt 50 teikn)." -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Etter" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ugyldig merkelapp: %s" -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Kan ikkje oppdatera brukar for automatisk tinging." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Denne notisen er ikkje ein favoritt!" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Kan ikkje lagra profil." -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Kunne ikkje slette favoritt." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Kan ikkje lagra merkelapp." -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Tjeneste" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Lagra innstillingar." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -"Send meg ein epost når nokon legg til ein av mine notisar som favoritt." - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Send meg ein epost når nokon sender meg ei privat melding." - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Denne notisen er alt ein favoritt!" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Kunne ikkje lagre favoritt." -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Fjern favoritt" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Kan ikkje hente offentleg straum." -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/public.php:129 #, php-format -msgid "%s favorite notices" -msgstr "%s sine favorittar" +msgid "Public timeline, page %d" +msgstr "Offentleg tidsline, side %d" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Favoritt straum for %s" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Offentleg tidsline" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Innboks for %s - side %d" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Offentleg straum" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Innboks for %s" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Offentleg straum" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "Dette er innboksen for dine private meldingar." +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Offentleg straum" -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:179 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -"%1$s har invitert deg til å bli med dei på %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Logg inn automatisk i framtida;" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Av åsyn til tryggleiken, skriv inn" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Logg inn med ditt brukarnamn og passord." +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Det er for langt. Ein notis kan berre være 140 teikn." +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Ingen mottakar spesifisert." - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Du kan ikkje sende melding til denne brukaren." - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/public.php:238 +#, fuzzy, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -"Ikkje send ei melding til deg sjølv; berre sei det til deg sjølv stille og " -"fredleg." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Ingen slik brukar" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Ny melding" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Notis utan tiløyrande profil" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) lar deg logge inn til mangen sider" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Vist du ønskjer å legge til ein OpenID til din konto," - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Ved å fjerne din einaste OpenID vil gjere det umuleg å logge inn!" +"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" +"Micro-blogging)-teneste" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Du kan fjerne ein OpenID fra din konto." +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Offentleg emne sky" -#: actions/outbox.php:28 actions/outbox.php:58 +#: actions/publictagcloud.php:63 #, php-format -msgid "Outbox for %s - page %d" -msgstr "Utboks for %s - side %d" +msgid "These are most popular recent tags on %s " +msgstr "Dei mest populære emna på %s" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/publictagcloud.php:69 #, php-format -msgid "Outbox for %s" -msgstr "Utboks for %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "Dette er din utboks som syner alle private meldingar du har sendt." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -"Søk etter folk på %%site.name%% etter deira namn, lokasjon eller interesser." -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Du kan oppdatere din personlege profil her" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Kan ikkje finne brukar" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Emne sky" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Godkjenningskoden er for gammal." +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Du er allereie logga inn!" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Vist du har gløymt eller mista ditt" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Opprettingskoden finst ikkje." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Du har blitt identifisert. Skriv inn" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Ikkje ei gjenopprettingskode." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Ditt kallenamn på denne serveren," +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Hent fram passord for ukjend brukar." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instruksjonar for å hente fram passordet ditt" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Feil med stadfestingskode." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Nytt passord lagra." +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Denne godkjenningskoden er for gammal. Vennligst start på nytt." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Passord må være minst 6 teikn." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"Gratulerer, %s! Og velkomen til %%%%site.name%%%%. Herfrå kann det hende " -"du vil..." - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Du burde motteke ein e-post snart, med" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "For å tinga må du [logga inn](%%action.login%%)," - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Straum for %s sine favorittar" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Kunne ikkje hente fram favorittane." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Kan ikkje finne den meldinga." +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Kun sendaren og mottakaren kan lese denne meldinga." +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Melding til %1$s på %2$s" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Melding fra %1$s på %2$s" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Ditt kallenamn på denne servere, eller din registrerte epost addresse." -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Send ei melding" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Gjenopprett" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Tenestetilbydar for telefonen din." +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Tilbakestill passord" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Direkte meldingar til %s" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Hent fram passord" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Alle direkte meldingar sendt til %s" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Passord opphenting etterspurt" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Alle direkte meldingar du har sendt" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Uventa handling." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Alle direkte meldingar sendt fra %s" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 eller fleire teikn, og ikkje gløym dei." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Inga meldingstekst!" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Samme passord som over" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Kunne ikkje finne mottakar." +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Avbryt" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -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." +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Skriv inn kallenamn eller epostadresse." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favorittar frå %s" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Ingen brukar med den epostadressa eller det brukarnamnet." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s oppdateringar favorisert av %s / %s." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Ingen registrert epostadresse for den brukaren." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s la til di melding som ein favoritt" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Feil med lagring av adressestadfesting." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format +#: actions/recoverpassword.php:325 msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"%1$s la akkurat til di melding frå %2$s som ein av deira favorittar.\n" -"\n" +"Instruksjonar for å få att passordet ditt er send til epostadressa som er " +"lagra i kontoen din." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til " -"Twitter," - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Twitter-innstillingar" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Twitterkonto" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Noverande verifisert Twitterkonto" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Brukarnamn på twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Inga mellomrom." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Passord på Twitter" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Send mine notisar til Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Send lokale «@»-svar til Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Ting mine twitter-vener her." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Brukarnamn må berre ha nummer, understrek (_), store og små bokstavar." -"Maksimalt 15 teikn." +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Uventa passordnullstilling." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Twitter-informasjonen fungerer ikkje mot Twitter." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Passord må vera 6 tekn eller meir." -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Klarte ikkje å hente informasjon fra kontoen din, «%s», frå Twitter." +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Passord og stadfesting stemmer ikkje." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Lagra det nye passordet. Du er logga inn." -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Lagra Twitter-innstillingar." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Det er ikkje Twitter-kontoen din." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Kunne ikkje fjerna Twitter-brukar." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Fjerna Twitter-brukar." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Klarte ikkje å lagra Twitter-innstillingar." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Twitter-innstillingar lagra." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Ver venleg å sjekke denne informasjonen for å forsikra um at" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Abonnementet blei godkjend, men ingen" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Abonnementet blei avslådd, men ingen" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Resultat frå kommandoen" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Beklage, men kun inviterte kan registrere seg." -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Kommandoen utførd" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Feil med stadfestingskode." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Kommandoen feila" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Registreringa gikk bra" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Orsak, men kommandoen er ikkje laga enno." +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registrér" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Tingingar: %1$s\n" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Registrering ikkje tillatt." -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Brukaren har ikkje siste notis" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Notis markert som favoritt." +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Ikkje ei gyldig epostadresse." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Epostadressa finst allereie." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Fullt namn: %s" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Ugyldig brukarnamn eller passord." -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Stad: %s" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Heimeside: %s" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom. " +"Kravd." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Om: %s" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 eller fleire teikn. Kravd." -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Direkte melding til %s sendt" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Ein feil oppstod ved sending av direkte melding." - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Spesifer namnet til brukaren du vil tinge" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Tingar %s" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Spesifer namnet til brukar du vil fjerne tinging på" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Tingar ikkje %s lengre" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Kommando ikkje implementert." - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Notifikasjon av." - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Kan ikkje skru av notifikasjon." +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Samme som passord over. Påkrevd." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Notifikasjon på." +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Epost" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Kan ikkje slå på notifikasjon." +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Komandoar:\n" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Lengre namn, fortrinnsvis ditt «ekte» namn" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Kunne ikkje lagre melding." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Teksten og filene mine er tilgjengeleg under " -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Kunne ikkje oppdatere melding med ny URI." +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Kunne ikkje finne ein brukar med den profilen i systemet." +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " +"telefonnummer." -#: lib/mail.php:147 lib/mail.php:289 +#: actions/register.php:537 #, php-format msgid "" -"You have a new posting address on %1$s.\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Du har ei ny addresse å sende til på %1$s.\n" +"Gratulerer, %s! Og velkomen til %%%%site.name%%%%. Frå her kann det henda du " +"vil...\n" +"\n" +"* Gå til [profilen din](%s) og skriva den fyrste meldinga.\n" +"* Leggja til ei [Jabber/GTalk adresse](%%%%action.imsettings%%%%) so du kann " +"laga nye meldingar ved hjelp av direktemeldingar.\n" +"* [Søkje etter folk](%%%%action.profilesettings%%%%) det kan hende du " +"kjenner, eller som du delar interesser med.\n" +"* Uppdatere dine [profilval] so du kann fortelja andre meir um deg sjølv.* " +"Lesa [hjelpetekstane](%%%%doc.help%%%%) for å finna ut meir um funksjonar du " +"kann ha gådd glipp av.\n" "\n" +"Takk for at du blei med, og vi håpar du vil lika tenesta!" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "Ny privat melding fra %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Du mottek ein epost med instruksjonar på korleis du stadfester epostadressa " +"di)" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/remotesubscribe.php:98 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"%1$s (%2$s) sendte deg ei privat melding: \n" -"\n" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Kun brukaren kan lese sine eigne meldingar." +"For å tinga kann du [logga inn](%%action.login%%), eller [registrera](%%" +"action.register%%) ein ny konto. Um du allereie hev ein konto på ei " +"[kompatibel mikrobloggingside](%%doc.openmublog%%), kann du oppgje URLen til " +"profilen under." -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Dette skjemaet vil automatisk bli sendt." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Eksternt abbonement" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Favorittar" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Lagre tinging for brukar: %s" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "%s's favoritt meldingar" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Brukaren sitt kallenamn" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Brukar" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Kallenamnet til brukaren du vil fylgja" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Innboks" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Profil-adresse" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Dine innkomande meldinger" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Utboks" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Ting" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Dine sende meldingar" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Ugyldig profil-nettadresse (feil format)" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Twitter integrerings-innstillingar" +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "Til" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Fekk ikkje spørjingsbillett (request token)." -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Kunne ikkje prosessera melding." +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Svar til %s" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/replies.php:127 #, php-format -msgid "%s and friends, page %d" -msgstr "%s med vener, side %d" +msgid "Replies to %s, page %d" +msgstr "Svar til %s, side %d" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Du kan laste opp ein personleg avatar." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Notisstraum for %s" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Avatar-innstillingar" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Notisstraum for %s" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Original" +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Notisstraum for %s" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Forhandsvis" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Skaler" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Der var eit problem med sesjonen." - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Velg eit utvalg av bildet som vil blir din avatar." +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Fant ikkje igjen fil data." +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Melding til %1$s på %2$s" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Mista fila vår." +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favoritt meldingar, side %d" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Ukjend fil type" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Kunne ikkje hente fram favorittane." -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Ingen vald profil." +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Straum for vener av %s" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Fann ingen profil med den IDen." +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Straum for vener av %s" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Blokker brukaren" - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Er du sikker på at du vil blokkera denne brukaren?" - -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Du har allereie blokkert denne brukaren." +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Straum for vener av %s" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Lagring av informasjon feila." +#: actions/showfavorites.php:205 +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/confirmaddress.php:159 +#: actions/showfavorites.php:207 #, php-format -msgid "The address \"%s\" has been " -msgstr "Addressa «%s» blei" +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Du er i ferd med å fjerne ein oppdatering for godt." +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Legg til i favorittar" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "Edit %s group" -msgstr "Rediger %s gruppa" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Innboks må være slått på for at grupper skal virke" +msgid "%s group" +msgstr "%s gruppe" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Du må være logga inn for å lage ei gruppe." +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "%s gruppe, side %d" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Ingen kallenamn" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Gruppe profil" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Fann ikkje gruppa" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Du må være administrator for å redigere gruppa" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Merknad" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Bruk dette skjemaet for å redigere gruppa" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Kallenamn kann berre ha små bokstavar" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Gruppe handlingar" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "skildringa er for lang (maks 140 teikn)." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Notisstraum for %s gruppa" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Kann ikkje oppdatera gruppa." +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Notisstraum for %s gruppa" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Lagra innstillingar." +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Notisstraum for %s gruppa" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showgroup.php:345 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Ventar på godkjenning for denne adressa." - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Lag ei ny e-postadresse for å posta til;" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Send meg ein epost når nokon " +msgid "FOAF for %s group" +msgstr "Utboks for %s" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Tillat vennar å sende meg ein epost." +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Medlemmar" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Den e-postadressa er alt registrert hjå" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(Ingen)" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "Sendte konfirmasjonskode til e-postadresse du la til." +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Alle medlemmar" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Server feil - kunne ikkje hente brukar!" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistikk" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Vist du ønskjer at %s applikasjon skal automatisk oppgradere" +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Lag" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showgroup.php:448 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Tillat %s å oppdatere min Facebook status" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Hopp over" +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 "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Ingen innhald." +#: actions/showgroup.php:454 +#, fuzzy, 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** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Paginering" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Administrator" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "« Etter" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Kan ikkje finne den meldinga." -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Før »" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Kun sendaren og mottakaren kan lese denne meldinga." -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/showmessage.php:108 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Takk for at du inviterar vennane dine til å bruke %s" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Invitasjon(er) sendt til fylgjande folk:" +msgid "Message to %1$s on %2$s" +msgstr "Melding til %1$s på %2$s" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/showmessage.php:113 #, php-format -msgid "You have been invited to %s" -msgstr "Du har blitt invitert til %s" +msgid "Message from %1$s on %2$s" +msgstr "Melding fra %1$s på %2$s" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Inviter venane dine til å nytta %s" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Melding lagra" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Vennar som alt brukar %s:" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Notisar merka med %s" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/showstream.php:79 #, php-format -msgid "Send invitations" -msgstr "Send invitasjonar" - -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Kunne ikkje fjerna Facebook-brukar." - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "Der oppstod eit problem med å lagre synkroniserings innstillingane!" +msgid "%s, page %d" +msgstr "%s, side %d" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Synkroniserings innstillingar blei lagra." +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Notisstraum for %s gruppa" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Automatisk uppdater Facebook-statusen min med nye uppdateringar." +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Notisstraum for %s" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Send lokale «@»-svar til Facebook." +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Notisstraum for %s" -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Førestaving" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Notisstraum for %s" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Ein tekst å legge til før alle notisar." +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Utboks for %s" -#: actions/facebooksettings.php:124 +#: actions/showstream.php:191 #, php-format -msgid "If you would like %s to automatically update " -msgstr "Vist du ønskjer at %s skal atuomatisk oppdatere" - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Synkronisering" +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Fjern favoritt" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Populære notisar" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/favorited.php:67 +#: actions/showstream.php:234 #, php-format -msgid "Popular notices, page %d" -msgstr "Populære notisar, side %d" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Viser dei mest populære notisane på sida akkurat no." +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Profilerte folk" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS innstillingar" -#: actions/featured.php:71 +#: actions/smssettings.php:69 #, php-format -msgid "Featured users, page %d" -msgstr "Profilerte folk, side %d" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%." -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Eit utval av nokre av dei flotte folka på %s" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Denne sida er ikkje tilgjengleg i eit" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Godkjent mobiltelefonnummer." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Ingen ID" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Ventar på godkjenning for dette telefonnummeret." -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Logo åt gruppa" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Stadfestingskode" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Du kan lasta opp ein logo for gruppa." +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Skriv inn koden du fekk på telefonen." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Logo oppdatert." +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS telefon nummer" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Feil ved oppdatering av logo." +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Telefonnummer, kun tall, med landskode" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "%s medlemmar i gruppa" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Send meg ein notis via SMS; eg forstår at dette kan føre til kostnadar fra " +"min tilbydar." -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "%s medlemmar i gruppa, side %d" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Ingen telefonnummer." -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Ei liste over brukarane i denne gruppa." +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Ingen mobiloperatør vald." -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Grupper" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Det er alt ditt telefonnummer" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "Grupper, side %d" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Det telefonnummeret er alt registrert hos ein annan brukar." -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%% grupper lar deg finne og snakke med" +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " +"koden og veiledning på korleis du nyttar han." -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Opprett ei ny gruppe" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Det er feil godkjennings nummer." -#: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Søk etter grupper på %%site.name%% etter namn, stad eller skildring." +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Det er ikkje ditt telefonnummer" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Gruppesøk" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Telefontilbydar" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "Du kan sende og motta meldingar gjennom" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Velg ein tilbydar" -#: actions/imsettings.php:120 +#: actions/smssettings.php:476 #, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber eller GTalk addresse," +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 "" +"Mobiloperatøren din. Ta kontakt på %s viss du kjenner ein mobiloperatør som " +"aksepterer SMS-over-epost, men ikkje vistast her." -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Send meg svar på Jabber/GTalk." +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Ingen innskriven kode" -#: actions/imsettings.php:321 -#, php-format -msgid "A confirmation code was sent " -msgstr "Ein stadfestingskode vart sendt" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Du tingar ikkje oppdateringar til den profilen." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "Du må være logga inn for å bli med i ei gruppe." +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Kunne ikkje lagra abonnement." -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Du er allereie medlem av den gruppa" +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Ikkje ein lokal brukar." + +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Abonnent" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/subscribers.php:50 #, php-format -msgid "Could not join user %s to group %s" -msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" +msgid "%s subscribers" +msgstr "%s tingarar" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/subscribers.php:52 #, php-format -msgid "%s joined group %s" -msgstr "%s blei medlem av gruppe %s" +msgid "%s subscribers, page %d" +msgstr "%s tingarar, side %d" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Innboks må være slått på for at grupper skal kunne fungere." +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Dette er folk som lyttar til dine notisar." -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "Du må være innlogga for å melde deg ut av ei gruppe." +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Dette er folk som lyttar til %s's notisar" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Denne gruppa finst ikkje." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "Du er ikkje medlem av den gruppa." +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "Du kan ikkje melde deg ut av ei gruppe når du er administrator i den." +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Kan ikkje finne brukar." +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "%s tingarar" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 +#: actions/subscriptions.php:54 #, php-format -msgid "Could not remove user %s to group %s" -msgstr "Kunne ikkje fjerne %s fra %s gruppa " +msgid "%s subscriptions, page %d" +msgstr "%s tingingar, side %d" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Dette er dei du lyttar til." + +#: actions/subscriptions.php:69 #, php-format -msgid "%s left group %s" -msgstr "%s forlot %s gruppa" +msgid "These are the people whose notices %s listens to." +msgstr "Dette er folka som %s tingar oppdateringar frå." -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Logg inn " +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Ingen status" +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s høyrer no på" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Ny gruppe" +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Bruk dette skjemaet for å lage ein ny gruppe." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Kunne ikkje laga gruppa." +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Ikkje logga inn" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Kunne ikkje bli med i gruppa." +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Manglar argumentet ID." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Det er for langt." +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "Merkelapp %s" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Ikkje send melding til deg sjølv;" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Brukarprofil" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Melding lagra" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Bilete" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Ajax feil" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Merk brukar" -#: actions/nudge.php:85 +#: actions/tagother.php:151 msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -"Denne brukaren tillét ikkje å bli dytta, eller har ikkje stadfasta eller sat " -"e-postadressa si enno." +"Emneord for denne brukaren (bokstavar, tal, -, ., og " +"_, separert med komma eller mellomrom" -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Dytta!" +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som " +"tingar notisar frå deg." -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Dytta!" +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Kunne ikkje lagra emneord." -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "OpenID-innlogging" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Bruk dette skjemaet for å leggje til emneord til dei som tingar notisar frå " +"deg, eller som du tingar notisar frå." -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Fjernar din einaste OpenID" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Notisar merka med %s, side %d" -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Andre innstillingar" +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Notisstraum for %s" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Velikehald andre innstillingar" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Notisstraum for %s" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "URL forkorting" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Notisstraum for %s" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Teneste" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Dette emneord finst ikkje." -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Den automatisk forkortingstenesta du vil bruke" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API-metoden er ikkje ferdig enno." -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Adressa til forkortingstenesta er for lang (maksimalt 50 teikn)." - -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Endra passordet ditt" - -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Endra passord" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Ingen profil-ID i førespurnaden." -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "Ikkje gyldig merkelapp: %s" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Fann ingen profil med den IDen." -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Brukarar sjølv-merka med %s, side %d" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Fjerna tinging" -#: actions/peopletag.php:91 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Desse brukarane har merka seg sjølve med «%s»" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Profil informasjon" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autoriser tinging" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userauthorization.php:110 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -"merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " -"mellomroms separert." +"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " +"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Automatisk tinging av alle som" +#: actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "lisens." -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Ugyldig merkelapp: %s" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Godta" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Kan ikkje lagra merkelapp." +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Lagre tinging for brukar: %s" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "Offentleg tidsline, side %d" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Avslå" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Kan ikkje hente offentleg straum." +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s tingarar" -#: actions/public.php:220 -#, php-format +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Ingen autoriserings-spørjing!" + +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Tinging autorisert" + +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" -"Micro-blogging)-teneste" +"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " +"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " +"gjennomførast. Ditt tingings teikn er: " -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Offentleg emne sky" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Tinging avvist" -#: actions/publictagcloud.php:63 +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " +"med sida sine instruksjonar for korleis ein skal avvise tinginga." + +#: actions/userauthorization.php:296 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "Dei mest populære emna på %s" +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Emne sky" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Beklage, men kun inviterte kan registrere seg." +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "Du kan ikkje registrera om du ikkje" +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Med dette skjemaet kan du laga" +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 små bokstavar eller tal," +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan ikkje lesa brukarbilete-URL «%s»" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Berre nytta for oppdatering, annonseringar," +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Feil biletetype for '%s'" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "URL til heimesida, bloggen," +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Ingen ID." -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Skildra deg sjølv og din" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profilinnstillingar" -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Kvar er du, t.d. «Stad, Fylke, Land»" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " unnateke privat data: passord," +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" -#: actions/register.php:471 +#: actions/usergroups.php:64 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Gratulerer, %s! Og velkomen til %%%%site.name%%%%." +msgid "%s groups, page %d" +msgstr "%s grupper, side %d" -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(Du skal få ein beskjed via epost )" +#: actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Søk etter folk eller innhald" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du er ikkje medlem av den gruppa." -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/usergroups.php:158 #, php-format -msgid "Replies to %s, page %d" -msgstr "Svar til %s, side %d" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/showfavorites.php:79 +#: classes/File.php:137 #, php-format -msgid "%s favorite notices, page %d" -msgstr "%s favoritt meldingar, side %d" +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: classes/File.php:147 #, php-format -msgid "%s group" -msgstr "%s gruppe" +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: classes/File.php:154 #, php-format -msgid "%s group, page %d" -msgstr "%s gruppe, side %d" - -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Gruppe profil" - -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Merknad" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Kunne ikkje lagre melding." -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Gruppe handlingar" +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Kunne ikkje oppdatere melding med ny URI." -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: classes/Notice.php:164 #, php-format -msgid "Notice feed for %s group" -msgstr "Notisstraum for %s gruppa" +msgid "DB error inserting hashtag: %s" +msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Medlemmar" +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Eit problem oppstod ved lagring av notis." -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(Ingen)" +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Feil ved lagring av notis. Ukjend brukar." -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Alle medlemmar" +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: actions/showgroup.php:378 -#, php-format +#: classes/Notice.php:194 +#, fuzzy msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." -"wikipedia.org/wiki/Micro-blogging)-teneste" +"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Berre sendaren og mottakaren" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, side %d" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Eit problem oppstod ved lagring av notis." -#: actions/showstream.php:143 -msgid "'s profile" -msgstr " sin profil" +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "Databasefeil, kan ikkje lagra svar: %s" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Brukarprofil" +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Melding til %1$s på %2$s" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Bilete" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Brukarverkty" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Endra profilinnstillingane dine" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Send ei direktemelding til denne brukaren" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Melding" - -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Tingarar" - -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Alle gruppar" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." -"wikipedia.org/wiki/Micro-blogging)-teneste" - -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Telefonnummer, ingen punktum eller mellomrom," - -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Send meg notisar på SMS;" - -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Ei stadfestingskode vart sendt til telefonnummeret du la til." - -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Telefontilbydar" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Du tingar ikkje oppdateringar til den profilen." - -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Kunne ikkje lagra abonnement." - -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Ikkje ein lokal brukar." - -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Abonnent" - -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "%s tingarar" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "%s tingarar, side %d" - -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Dette er folk som lyttar til" - -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Dette er folk som" - -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "%s tingarar" - -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "%s tingingar, side %d" - -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Dette er dei du lyttar til." - -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "Dette er folk som" - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" - -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Notisar merka med %s, side %d" - -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Meldingar merka med «%s», dei siste fyrst" - -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Ikkje logga inn" - -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Manglar argumentet ID." - -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Merkelapp %s" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Merk brukar" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Emneord for denne brukaren (bokstavar, tal, -, ., og " -"_, separert med komma eller mellomrom" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Det var eit problem med sesjons billetten din." - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som " -"tingar notisar frå deg." - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Kunne ikkje lagra emneord." - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Bruk dette skjemaet for å leggje til emneord til dei som tingar notisar frå " -"deg, eller som du tingar notisar frå." - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Dette emneord finst ikkje." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Mikroblogg merka med emneordet %s" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Blokkering av brukar feila." - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "De-blokkering av brukar feila." - -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Finst ikkje." - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Legg til Twitter-kontoen din for å automatisk sende" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Brukarnamn hjå Twitter" - -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Passord hjå Twitter" - -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Vener på Twitter" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Brukarnamn kan berre innehalde tal," - -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "Klarte ikkje å hente informasjon om kontoen." - -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Feil ved fjerning av blokka." - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Ingen profil-ID i førespurnaden." - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Fann ingen profil med den IDen." - -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Fjerna tinging" - -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "%s grupper" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Last opp ein avatar" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "%s grupper, side %d" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Endra passordet ditt" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Feil ved lagring av notis. Ukjend brukar." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Endra eposthandtering" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Last opp ein avatar" +#: lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Brukarprofil" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 #: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Anna" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 #: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Andre val" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +#: lib/action.php:159 msgid "Untitled page" msgstr "Ingen tittel" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +#: lib/action.php:430 +msgid "Home" +msgstr "Heim" + +#: lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Søk etter folk eller innhald" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: lib/action.php:432 msgid "Account" msgstr "Konto" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Endra e-posten, avataren, passordet eller profilen" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Kopla til IM, SMS, Twitter" +#: lib/action.php:435 +msgid "Connect" +msgstr "Kopla til" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Klarte ikkje å omdirigera til tenaren: %s" + +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Invitér" + +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Inviter vennar og kollega til å bli med deg på %s" + +#: lib/action.php:445 +msgid "Logout" +msgstr "Logg ut" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +#: lib/action.php:445 msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Logg inn or sida" - -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +#: lib/action.php:450 msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Logg inn med OpenID" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Logg inn or sida" + +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Hjelp" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +#: lib/action.php:456 msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +#: lib/action.php:459 +msgid "Search" +msgstr "Søk" + +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Søk etter folk eller innhald" + +#: lib/action.php:480 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +#: lib/action.php:546 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +#: lib/action.php:612 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#: lib/action.php:714 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "StatusNets programvarelisens" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Alle" +#: lib/action.php:721 +msgid "About" +msgstr "Om" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "lisens." +#: lib/action.php:723 +msgid "FAQ" +msgstr "OSS" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Blokkér denne brukaren" +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Blokkér" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Personvern" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Fjern favoriseringsmerket" +#: lib/action.php:732 +msgid "Source" +msgstr "Kjeldekode" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "For å nytta %s Facebook-programmet må du logga inn" +#: lib/action.php:734 +msgid "Contact" +msgstr "Kontakt" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr "ein ny konto." - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Publisert" - -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Favoriser denne notisen" - -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Eksporter data" +#: lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Dult" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Filtrer emneord" +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "StatusNets programvarelisens" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Alle" +#: lib/action.php:767 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." +"broughtbyurl%%). " -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Merkelapp" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** er ei mikrobloggingteneste. " -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Velg ein merkelapp for å begrense lista" +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Den køyrer [StatusNet](http://status.net) mikroblogging-programvare, versjon " +"%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Gå" +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNets programvarelisens" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "URL til heimesida eller bloggen for gruppa eller emnet" +#: lib/action.php:794 +msgid "All " +msgstr "Alle" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Beskriving" +#: lib/action.php:799 +msgid "license." +msgstr "lisens." -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Beskriv gruppa eller emnet med 140 teikn" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Paginering" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" +#: lib/action.php:1062 +msgid "After" +msgstr "« Etter" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Gruppe" +#: lib/action.php:1070 +msgid "Before" +msgstr "Før »" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Administrator" +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Det var eit problem med sesjons billetten din." -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "Rediger %s gruppa sine eigenskapar" +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "Logo" +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "Legg til eller rediger logoen til %s" +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Grupper med flest medlemmar" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "Grupper med flest innlegg" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "Merkelappar i %s gruppa sine notisar" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Resultat frå kommandoen" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "Denne sida er ikkje tilgjengleg i eit" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Kommandoen utførd" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Bli med" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Kommandoen feila" -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "Forlat" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Orsak, men kommandoen er ikkje laga enno." -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "Log inn med brukarnamn og passord." +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "Opprett ny konto" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Login eller registrer med OpenID" +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Dytta!" -#: lib/mail.php:175 +#: lib/command.php:126 #, php-format msgid "" -"Hey, %s.\n" -"\n" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -"Hei, %s\n" -"\n" -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "%1$s høyrer no på" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "Stad: %s\n" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Brukaren har ikkje siste notis" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "Heimeside: %s\n" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Notis markert som favoritt." -#: lib/mail.php:258 lib/mail.php:257 +#: lib/command.php:315 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Bio: %s\n" -"\n" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/command.php:318 #, php-format -msgid "You've been nudged by %s" -msgstr "Du har blitt dulta av %s" +msgid "Fullname: %s" +msgstr "Fullt namn: %s" -#: lib/mail.php:465 +#: lib/command.php:321 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) lurer på kva du gjer på" +msgid "Location: %s" +msgstr "Stad: %s" -#: lib/mail.php:555 +#: lib/command.php:324 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s lyttar no til notisane dine på %2$s" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Frå" +msgid "Homepage: %s" +msgstr "Heimeside: %s" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Send ei direkte melding" +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "Om: %s" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Send ei melding" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Tilgjenglege teikn" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Ein feil oppstod ved sending av direkte melding." -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "som svar på" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" msgstr "Svar på denne notisen" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Svar" - -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Slett denne notisen" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Slett" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Eit problem oppstod ved lagring av notis." -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "Dult denne brukaren" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Spesifer namnet til brukaren du vil tinge" -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "Dult" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Tingar %s" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "Send eit dult til denne brukaren" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Spesifer namnet til brukar du vil fjerne tinging på" -#: lib/personaltagcloudsection.php:56 +#: lib/command.php:530 #, php-format -msgid "Tags in %s's notices" -msgstr "Merkelappar i %s sine notisar" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(ingen)" +msgid "Unsubscribed from %s" +msgstr "Tingar ikkje %s lengre" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Offentleg" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Kommando ikkje implementert." -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Brukar grupper" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Notifikasjon av." -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Nylege emneord" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Framheva" - -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Populære" - -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Notis" - -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Finn grupper på denne sida" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Seksjon utan tittel" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Kan ikkje skru av notifikasjon." -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "Mennesker %s tingar" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Notifikasjon på." -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "Mennesker som tingar %s" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Kan ikkje slå på notifikasjon." -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "Grupper %s er medlem av" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Kunne ikkje laga OpenID-form: %s" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: lib/command.php:602 #, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Inviter vennar og kollega til å bli med deg på %s" - -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "Brukar har blokkert deg." - -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Lagre tinging for brukar: %s" - -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Ingen" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Med flest meldingar" - -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Lås opp brukaren" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Lås opp" +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Fjern tinging fra denne brukaren" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Straum for vener av %s" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ingen stadfestingskode." -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Straum for vener av %s" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Straum for vener av %s" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/common.php:194 #, fuzzy -msgid "You and friends" -msgstr "%s med vener" +msgid "Go to the installer." +msgstr "Logg inn or sida" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Du kan laste opp ein personleg avatar." +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "Ljonmelding" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -#, fuzzy -msgid "Avatar deleted." -msgstr "Lasta opp brukarbilete." +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Oppdateringar over direktemeldingar (IM)" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Oppdateringar over SMS" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " -"ikkje finne ho att." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -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." +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#: lib/designsettings.php:105 #, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Send meg ein epost når nokon sender meg ei privat melding." +msgid "Upload file" +msgstr "Last opp" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format +#: lib/designsettings.php:109 msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Du kan lasta opp ein logo for gruppa." - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Velg eit utvalg av bildet som vil blir din avatar." - -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Mikroblogg av %s" - -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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." +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " -"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/newmessage.php:102 +#: lib/designsettings.php:170 #, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Ein feil oppstod ved sending av direkte melding." - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Søkestraum for «%s»" +msgid "Change colours" +msgstr "Endra passordet ditt" -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -"Skriv inn brukarnam og passord før du endrar innstillingar (av " -"tryggleiksomsyn)." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: lib/designsettings.php:191 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Offentleg straum" +msgid "Content" +msgstr "Kopla til" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#: lib/designsettings.php:204 #, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Offentleg straum" +msgid "Sidebar" +msgstr "Søk" + +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Tekst" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: lib/designsettings.php:230 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Offentleg straum" +msgid "Links" +msgstr "Logg inn" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " -"telefonnummer." -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Lag" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Gruppe profil" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Fjern favoriseringsmerket" -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr " sin profil" +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Favoriser denne notisen" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Notisstraum for %s" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Tjeneste" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Notisstraum for %s" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Eksporter data" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Notisstraum for %s" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Utboks for %s" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Brukarbilete" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Filtrer emneord" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Alle" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 +#: lib/galleryaction.php:139 #, fuzzy -msgid "Edit profile settings" -msgstr "Profilinnstillingar" +msgid "Select tag to filter" +msgstr "Velg ein tilbydar" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Merkelapp" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Velg ein merkelapp for å begrense lista" + +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Gå" + +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL til heimesida eller bloggen for gruppa eller emnet" -#: actions/smssettings.php:335 actions/smssettings.php:347 +#: lib/groupeditform.php:168 #, fuzzy +msgid "Describe the group or topic" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Beskriving" + +#: lib/groupeditform.php:179 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 "" -"Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " -"koden og veiledning på korleis du nyttar han." +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: lib/groupeditform.php:187 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Ingen slik brukar" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Gruppe" -#: actions/twittersettings.php:72 +#: lib/groupnav.php:100 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til " -"Twitter," +msgid "Blocked" +msgstr "Blokkér" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#: lib/groupnav.php:101 #, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Klarte ikkje å hente informasjon fra kontoen din, «%s», frå Twitter." +msgid "%s blocked users" +msgstr "Blokker brukaren" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " -"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "Rediger %s gruppa sine eigenskapar" -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Søk etter folk eller innhald" +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Logo" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." +#: lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "Legg til eller rediger logoen til %s" -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Kopla til IM, SMS, Twitter" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Legg til eller rediger logoen til %s" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Dult" +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Grupper med flest medlemmar" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Grupper med flest innlegg" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +msgid "Tags in %s group's notices" +msgstr "Merkelappar i %s gruppa sine notisar" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Denne sida er ikkje tilgjengeleg i nokon mediatype du aksepterer." -#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/imagefile.php:75 #, fuzzy, 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 "For å nytta %s Facebook-programmet må du logga inn" +msgid "That file is too big. The maximum file size is %s." +msgstr "Du kan lasta opp ein logo for gruppa." -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Hallvegs opplasta." -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Systemfeil ved opplasting av fil." -#: lib/feed.php:89 -msgid "Atom" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Korrupt bilete." -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Støttar ikkje bileteformatet." -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Mista fila vår." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Ukjend fil type" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/jabber.php:192 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" +msgid "notice id: %s" +msgstr "Ny notis" + +#: lib/joinform.php:114 +msgid "Join" +msgstr "Bli med" + +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Forlat" + +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Log inn med brukarnamn og passord." + +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "Opprett ny konto" + +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Kun brukaren kan lese sine eigne meldingar." + +#: lib/mailbox.php:139 +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:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " frå " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Stadfesting av epostadresse" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" "%s\n" msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s høyrer no på notisane dine på %2$s." + +#: lib/mail.php:240 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -6013,6 +4120,64 @@ msgstr "" "Beste helsing,\n" "%4$s.\n" +#: lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "Stad: %s\n" + +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "Heimeside: %s\n" + +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Bio: %s\n" +"\n" + +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Ny epostadresse for å oppdatera %s" + +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Du hev ei ny posteadresse på %1½s.\n" +"\n" +"Send e-post til %2$s for å posta nyte meldingar.\n" +"\n" +"Fleiere e-postinstruksjonar finn du på %3½s.\n" +"\n" +"Helsing frå %4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s status" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS bekreftelse" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "Du har blitt dulta av %s" + #: lib/mail.php:466 #, php-format msgid "" @@ -6023,12 +4188,17 @@ msgid "" "\n" "%3$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%4$s\n" msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Ny privat melding fra %s" + #: lib/mail.php:513 #, php-format msgid "" @@ -6042,1622 +4212,470 @@ msgid "" "\n" "%4$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%5$s\n" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s la til di melding som ein favoritt" -#: lib/mail.php:600 lib/mail.php:602 +#: lib/mail.php:556 #, php-format msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" -"It reads:\n" +"The URL of your notice is:\n" "\n" -"\t%4$s\n" +"%3$s\n" "\n" -"You can reply back here:\n" +"The text of your notice is:\n" "\n" -"\t%5$s\n" +"%4$s\n" "\n" -"The list of all @-replies for you here:\n" +"You can see the list of %1$s's favorites here:\n" "\n" -"%6$s\n" +"%5$s\n" "\n" "Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +"%6$s\n" msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Søk" - -#: lib/section.php:106 -msgid "More..." +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: actions/all.php:80 actions/all.php:127 +#: lib/mail.php:613 #, php-format msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format +#: lib/mediafile.php:147 msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Slikt dokument finst ikkje." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Ei liste over brukarane i denne gruppa." +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Ei liste over brukarane i denne gruppa." +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Brukarprofil" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s med vener, side %d" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Ei liste over brukarane i denne gruppa." +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "De-blokkering av brukar feila." +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Stadfestingskode" +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Kan ikkje hente offentleg straum." -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Kan ikkje sletta notisen." +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/mediafile.php:275 #, php-format -msgid "Too many aliases! Maximum %d." +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Ugyldig merkelapp: %s" +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Send ei direkte melding" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." +#: lib/messageform.php:146 +msgid "To" +msgstr "Til" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Tilgjenglege teikn" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Kunne ikkje lagre favoritt." +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Send ei melding" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Kva skjer, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" 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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/file.php:34 +#: lib/noticelist.php:478 #, fuzzy -msgid "No notice id" -msgstr "Ny notis" +msgid "in context" +msgstr "Ingen innhald." -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Ny notis" +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Svar på denne notisen" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Svar" -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Dult denne brukaren" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Ikkje eit gyldig brukarnamn." +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Dult" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Ingen vald profil." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Send eit dult til denne brukaren" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Feil med å henta inn ny profil" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Brukar har blokkert deg." +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Feil med innhenting av brukarbilete." -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Du er ikkje medlem av den gruppa." +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Feil med å henta inn ekstern profil" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 +#: lib/oauthstore.php:345 #, fuzzy -msgid "Block user from group" -msgstr "Blokker brukaren" +msgid "Duplicate notice" +msgstr "Slett notis" -#: actions/groupblock.php:155 +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Kan ikkje leggja til ny tinging." + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Personleg" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Svar" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favorittar" + +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Brukar" + +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Innboks" + +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Dine innkomande meldinger" + +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Utboks" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Dine sende meldingar" + +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +msgid "Tags in %s's notices" +msgstr "Merkelappar i %s sine notisar" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Tingingar" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Du må være logga inn for å lage ei gruppe." +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Alle tingingar" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Grupper" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Tingarar" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Tingarar" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 +#: lib/profileaction.php:177 #, fuzzy -msgid "Couldn't update your design." -msgstr "Kan ikkje oppdatera brukar." +msgid "User ID" +msgstr "Brukar" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Medlem sidan" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Synkroniserings innstillingar blei lagra." +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Alle gruppar" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "Du må være administrator for å redigere gruppa" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Offentleg" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Administrator" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Brukar grupper" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Nylege emneord" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Framheva" + +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Populære" + +#: lib/searchaction.php:120 #, fuzzy -msgid "No results." -msgstr "Ingen resultat" +msgid "Search site" +msgstr "Søk" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Søk" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Folk" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Finn folk på denne sida" -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "Brukar har blokkert deg." +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Notis" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Søk i innhaldet av notisar" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Finn grupper på denne sida" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Seksjon utan tittel" + +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/makeadmin.php:95 +#: lib/subgroupnav.php:83 #, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" +msgid "People %s subscribes to" +msgstr "Mennesker %s tingar" -#: actions/makeadmin.php:132 +#: lib/subgroupnav.php:91 #, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" +msgid "People subscribed to %s" +msgstr "Mennesker som tingar %s" -#: actions/makeadmin.php:145 +#: lib/subgroupnav.php:99 #, php-format -msgid "Can't make %s an admin for group %s" +msgid "Groups %s is a member of" +msgstr "Grupper %s er medlem av" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Melding" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(ingen)" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "Brukar har blokkert deg." -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Kan ikkje tinga." -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Kan ikkje lagra profil." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Kan ikkje tinga andre til deg." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Ikkje tinga." -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Kan ikkje sletta tinging." -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Ingen" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Med flest meldingar" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Fjern tinging fra denne brukaren" -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Fjern tinging" -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) lar deg logge inn på mangen sider med den samme " -"brukar kontoen. Velikehold dine OpenID herfra." +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "Brukarbilete" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Brukarverkty" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/userprofile.php:248 #, fuzzy -msgid "View profile designs" +msgid "Edit profile settings" msgstr "Profilinnstillingar" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Send ei direktemelding til denne brukaren" -#: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" -"Micro-blogging)-teneste" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Melding" -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "eit par sekund sidan" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "omtrent eitt minutt sidan" -#: actions/publictagcloud.php:75 +#: lib/util.php:848 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Me sender deg eit nytt passord til epostadressa i kontoen din viss du har " -"mista det gamle." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Du har blitt identifisert. Skriv inn eit nytt passord under her." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Passord opphenting etterspurt" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Feil med stadfestingskode." +msgid "about %d minutes ago" +msgstr "~%d minutt sidan" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Lagre tinging for brukar: %s" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "omtrent ein time sidan" -#: actions/replies.php:179 actions/replies.php:198 +#: lib/util.php:852 #, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +msgid "about %d hours ago" +msgstr "~%d timar sidan" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "omtrent ein dag sidan" -#: actions/replies.php:186 actions/replies.php:205 +#: lib/util.php:856 #, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s favoritt meldingar, side %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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 "" +msgid "about %d days ago" +msgstr "~%d dagar sidan" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "omtrent ein månad sidan" -#: actions/showfavorites.php:176 +#: lib/util.php:860 #, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Notisstraum for %s gruppa" +msgid "about %d months ago" +msgstr "~%d månadar sidan" -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Notisstraum for %s gruppa" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "omtrent eitt år sidan" -#: actions/showgroup.php:337 actions/showgroup.php:340 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Notisstraum for %s gruppa" +msgid "%s is not a valid color!" +msgstr "Heimesida er ikkje ei gyldig internettadresse." -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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. " +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." -"wikipedia.org/wiki/Micro-blogging)-teneste" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy -msgid "Admins" -msgstr "Administrator" -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Ikkje ein lokal brukar." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Kunne ikkje prosessera melding." -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Notisar merka med %s" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Ikkje ein registrert brukar." -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Notisstraum for %s gruppa" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Beklager, det er ikkje di inngåande epost addresse." -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." -"wikipedia.org/wiki/Micro-blogging)-teneste" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s høyrer no på" - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Notisstraum for %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Notisstraum for %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Denne notisen er alt ein favoritt!" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Denne notisen er ikkje ein favoritt!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Kan ikkje hente offentleg straum." - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Ingen mottakar spesifisert." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Kan ikkje finna einkvan status." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Oppdateringar som svarar til %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Oppdateringar frå %1$s på %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "lisens." - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "%s tingarar" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Profilinnstillingar" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Du er ikkje medlem av den gruppa." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Eit problem oppstod ved lagring av notis." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Melding til %1$s på %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Brukarprofil" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Profil" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Last opp" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Endra passordet ditt" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Kopla til" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Søk" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Logg inn" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Blokkér" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Blokker brukaren" - -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Legg til eller rediger logoen til %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Ingen innhald." - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Brukar" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Søk" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Heimesida er ikkje ei gyldig internettadresse." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Dette emneord finst ikkje." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Direkte meldingar til %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Det er for langt. Ein notis kan berre være 140 teikn." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "skildringa er for lang (maks 140 teikn)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Du er allereie medlem av den gruppa" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Du er ikkje medlem av den gruppa." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Kunne ikkje fjerne %s fra %s gruppa " - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s grupper" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Grupper %s er medlem av" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Gruppe handlingar" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Lasta opp brukarbilete." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Støttar ikkje bileteformatet." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Bilete" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "skildringa er for lang (maks 140 teikn)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Oppdateringar frå %1$s på %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Brukaren du lyttar til eksisterer ikkje." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Ikkje autorisert." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Ukjend versjon av OMB-protokollen." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Denne notisen finst ikkje." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Mista fila vår." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Oppdateringar frå %1$s på %2$s!" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Denne sida er ikkje tilgjengleg i eit" - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" -"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" -"%)." - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Oppdateringar frå %1$s på %2$s!" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Alle oppdateringer frå søket «%s»" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Kopla til" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Skriv om deg og interessene dine med 140 teikn" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Skildra deg sjølv og din" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "«Om meg» er for lang (maks 140 " - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Fekk ikkje spørjingsbillett (request token)." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Notisstraum for %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Notisstraum for %s" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Notisstraum for %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Melding til %1$s på %2$s" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Straum for vener av %s" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Straum for vener av %s" - -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Straum for vener av %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Utboks for %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Melding lagra" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Denne sida er ikkje tilgjengleg i eit" - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Notisstraum for %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " -"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " -"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " -"gjennomførast. Ditt tingings teikn er: " - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " -"med sida sine instruksjonar for korleis ein skal avvise tinginga." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Kan ikkje lesa brukarbilete-URL «%s»" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Feil biletetype for '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Klarte ikkje å omdirigera til tenaren: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "StatusNets programvarelisens" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Dytta!" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Svar på denne notisen" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Eit problem oppstod ved lagring av notis." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Ingen stadfestingskode." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Logg inn or sida" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Velg ein tilbydar" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Beskriv gruppa eller emnet med 140 teikn" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Beskriv gruppa eller emnet med 140 teikn" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Ny notis" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s la til di melding som ein favoritt" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " frå " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Kan ikkje hente offentleg straum." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Slett notis" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Ugyldig notisinnhald" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Kunne ikkje laga OpenID-form: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Du kan lasta opp ein logo for gruppa." - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Beklager, inngåande epost er ikkje tillatt." diff --git a/locale/pl/LC_MESSAGES/statusnet.mo b/locale/pl/LC_MESSAGES/statusnet.mo index 903a0f383..41e944d17 100644 Binary files a/locale/pl/LC_MESSAGES/statusnet.mo and b/locale/pl/LC_MESSAGES/statusnet.mo differ diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 078a33b6a..e77b821b1 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -5,3121 +5,2013 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:00+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:39+0000\n" "Language-Team: Polish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Znajdź strumień dla \"%s\"" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Nie ma takiego znacznika." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora, numer " -"telefonu." +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Brak takiego użytkownika." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " z " +#: actions/all.php:84 +#, php-format +msgid "%s and friends, page %d" +msgstr "Użytkownik %s i przyjaciele, strona %d" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s/aktualizacje odpowiadające na %2$s" +msgid "%s and friends" +msgstr "Użytkownik %s i przyjaciele" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:99 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s zapraszają Cię, abyś dołączył do nich w %2$s" +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 +#: actions/all.php:107 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"Użytkownik %1$s zapraszają Cię, abyś dołączył do nich w %2$s (%3$s).\n" -"\n" -"%2$s jest usługą mikroblogowania, która umożliwia pozostawanie w kontakcie z " -"osobami, których znasz i z tymi, którzy Cię interesują.\n" -"\n" -"Możesz także dzielić się w sieci nowinkami o sobie, swoimi przemyśleniami, " -"lub swoim życiem z osobami, którzy Cię znają. To także wspaniały sposób na " -"poznawanie nowych osób, którzy dzielą Twoje zainteresowania.\n" -"\n" -"Użytkownik %1$s powiedział:\n" -"\n" -"%4$s\n" -"\n" -"Możesz zobaczyć stronę profilu %1$s na %2$s tutaj:\n" -"\n" -"%5$s\n" -"\n" -"Jeśli chcesz wypróbować usługę, naciśnij na poniższy odnośnik, aby " -"zaakceptować zaproszenie.\n" -"\n" -"%6$s\n" -"\n" -"Jeśli nie, możesz zignorować tę wiadomość. Dziękujemy za Twoją cierpliwość i " -"czas.\n" -"\n" -"Z poważaniem, %2$s\n" +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 +#: actions/all.php:115 #, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s." +msgid "Feed for friends of %s (Atom)" +msgstr "Kanał dla znajomych użytkownika %s (Atom)" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Z poważaniem,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." +"To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " +"wysłał." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "Status użytkownika %1$s na %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" +"Spróbuj zasubskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) " +"lub wysłać coś samemu." -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" +"Możesz spróbować [szturchnąć użytkownika %s](../%s) z jego profilu lub " +"[wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?" +"status_textarea=%s)." -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "Publiczny strumień użytkownika %s" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wtedy " +"szturchniesz użytkownika %s lub wyślesz wpis wymagającego jego uwagi." -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "Użytkownik %s i przyjaciele" +#: actions/all.php:165 +msgid "You and friends" +msgstr "Ty i przyjaciele" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "Publiczna oś czasu użytkownika %s" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Aktualizacje od %1$s i przyjaciół na %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "Status użytkownika %s" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Nie znaleziono metody API!" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Oś czasu użytkownika %s" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Ta metoda wymaga POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "Użytkownik %s aktualizuje od każdego!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Powinieneś właśnie otrzymać wiadomość e-mail, zawierającą instrukcje " -"potwierdzenia adresu e-mail)" +"Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej " +"konfiguracji." -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Użytkownik nie posiada profilu." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** jest usługą mikroblogowania. " +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Zablokowanie użytkownika nie powiodło się." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Współtwórcy powinni być wymienieni z imienia i nazwiska lub pseudonimu." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Odblokowanie użytkownika nie powiodło się." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Brak tekstu wiadomości!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 lub więcej znaków" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Nie znaleziono odbiorcy." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 lub więcej znaków, i nie zapomnij go!" +#: actions/apidirectmessagenew.php:150 +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." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 lub więcej znaków. Wymagane." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Bezpośrednia wiadomość do użytkownika %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Kod potwierdzający został wysłany na dodany adres komunikatora. Musisz " -"zaakceptować otrzymywanie wiadomości od %s." +msgid "All the direct messages sent from %s" +msgstr "Wszystkie bezpośrednie wiadomości wysłane od użytkownika %s" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Kod potwierdzający został wysłany na dodany adres e-mail. Sprawdź w swojej " -"skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś " -"kod i instrukcje dotyczące jego użycia." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Bezpośrednia wiadomość do użytkownika %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź w swojej " -"skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś " -"kod i instrukcje dotyczące jego użycia." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Nie znaleziono metody API!" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Nie znaleziono statusów z tym identyfikatorem." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Metoda API jest w trakcie tworzenia." +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "Ten status jest już ulubiony!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "O usłudze" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Nie można utworzyć ulubionego wpisu." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Zaakceptuj" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "Ten status nie jest ulubiony!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Dodaj" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Nie można usunąć ulubionego wpisu." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Dodaj konto OpenID" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Dodaj lub usuń konta OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adres" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Nie można obserwować użytkownika: %s jest już na Twojej liście." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Adresy przyjaciół, których zapraszasz (jeden na wiersz)" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Wszystkie subskrypcje" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Wszystkie aktualizacje od %s" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Należy dostarczyć dwa identyfikatory lub nazwy użytkowników." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" +#: actions/apifriendshipsshow.php:135 +msgid "Could not determine source user." +msgstr "Nie można określić użytkownika źródłowego." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Jesteś już zalogowany." +#: actions/apifriendshipsshow.php:143 +msgid "Could not find target user." +msgstr "Nie można znaleźć użytkownika docelowego." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Już subskrybowane!" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Nie można utworzyć grupy." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +msgid "Could not create aliases." +msgstr "Nie można utworzyć aliasów." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Upoważnij subskrypcję" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Nie można ustawić członkostwa w grupie." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Automatyczne logowanie. Nie użyj na komputerach używanych przez wiele osób!" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatycznie zasubskrybuj każdego, kto mnie zasubskrybuje (najlepsze dla " -"botów)" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Pseudonim jest już używany. Spróbuj innego." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Awatar" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "To nie jest prawidłowy pseudonim." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Zaktualizowano awatar." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Strona domowa nie jest prawidłowym adresem URL." + +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "opis jest za długi (maksymalnie 140 znaków)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Położenie jest za długie (maksymalnie 255 znaków)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto Jabbera/GTalk, " -"czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy " -"znajomych?)." +msgid "Too many aliases! Maximum %d." +msgstr "Za dużo aliasów! Maksymalnie %d." -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoją skrzynkę odbiorczą " -"(także w wiadomościach niechcianych!), czy otrzymałeś wiadomość z dalszymi " -"instrukcjami." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Nieprawidłowy alias: \"%s\"" -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Oczekiwanie na potwierdzenie tego numeru telefonu." +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Alias \"%s\" jest już używany. Spróbuj innego." -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Wcześniej »" +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "Alias nie może być taki sam jak pseudonim." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "O mnie" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Jesteś już członkiem tej grupy" -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "Zostałeś zablokowany w tej grupie przez administratora." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Nie można usunąć tego wpisu." +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Nie można dołączyć użytkownika %s do grupy %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Nie jesteś członkiem tej grupy." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Nie można usunąć użytkownika %s z grupy %s" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Nie można odczytać adresu URL awatara \"%s\"" +msgid "%s groups" +msgstr "Grupy %s" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Nie można zapisać nowego hasła." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Działania grupy" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Anuluj" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Grupy %s" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Nie można utworzyć instancji obiektu klienta OpenID." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Grupy %s są członkiem" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Nie można znormalizować tego identyfikatora Jabbera" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Ta metoda wymaga POST lub DELETE." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Nie można znormalizować tego adresu e-mail" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Nie można usuwać statusów innych użytkowników." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Zmień" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Usunięto awatar." -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Zmień obsługę adresu e-mail" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Nie znaleziono statusów z tym identyfikatorem." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Zmień hasło" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Wpis jest za długi. Maksymalna długość to 140 znaków." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Zmień hasło" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Nie znaleziono" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Zmień ustawienia profilu" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, fuzzy, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Potwierdź" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Nieobsługiwany format pliku obrazu." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Potwierdź adres" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s/ulubione wpisy od %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Anulowano potwierdzenie." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "Użytkownik %s aktualizuje ulubione według %s/%s." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Kod potwierdzający" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "Oś czasu użytkownika %s" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Nie znaleziono kodu potwierdzającego." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Aktualizacje od %1$s na %2$s!" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:116 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć...\n" -"\n" -"* Przejść do [swojego profilu](%s) i wysłać swoją pierwszą wiadomość.\n" -"* Dodać [adres Jabbera/GTalk](%%%%action.imsettings%%%%), abyś mógł wysyłać " -"wpisy przez komunikatora.\n" -"* [Poszukać osób](%%%%action.peoplesearch%%%%), których możesz znać lub " -"którzy dzielą Twoje zainteresowania. \n" -"* Zaktualizować swoje [ustawienia profilu](%%%%action.profilesettings%%%%), " -"aby powiedzieć innym więcej o sobie. \n" -"* Przeczytać [dokumentację w sieci](%%%%doc.help%%%%), aby dowiedzieć się o " -"funkcjach, które mogłeś pominąć. \n" -"\n" -"Dziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi " -"sprawi Ci przyjemność." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Połącz" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Połącz z istniejącym kontem" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Kontakt" +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s/aktualizacje wspominające %2$s" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinementions.php:126 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Nie można utworzyć formularza OpenID: %s" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Nie można obserwować użytkownika: %s jest już na Twojej liście." +msgid "%s public timeline" +msgstr "Publiczna oś czasu użytkownika %s" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "Użytkownik %s aktualizuje od każdego!" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Nie można przekierować do serwera: %s" +msgid "Notices tagged with %s" +msgstr "Wpisy ze znacznikiem %s" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Nie można zapisać informacji o awatarze" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Nie można zapisać informacji o nowym profilu" +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Nie znaleziono." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Nie można zasubskrybować innych do Ciebie." +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "Nie ma takiego załącznika." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Nie można zasubskrybować." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Brak pseudonimu." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Brak rozmiaru." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Nieprawidłowy rozmiar." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Nie można usunąć potwierdzenia adresu e-mail." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Awatar" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Nie można usunąć subskrypcji." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Można wysłać swój osobisty awatar. Maksymalny rozmiar pliku to %s." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Nie można znaleźć żadnych statusów." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Użytkownik bez odpowiadającego profilu" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Nie można uzyskać tokenu żądana." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Ustawienia awatara" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Nie można wprowadzić kodu potwierdzającego." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Oryginał" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Nie można wprowadzić nowej subskrypcji." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Podgląd" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Nie można zapisać profilu." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Usuń" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Wyślij" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Nie można zaktualizować wpisu użytkownika." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Przytnij" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Nie można zaktualizować użytkownika." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Wystąpił problem z tokenem sesji. Spróbuj ponownie." -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Utwórz" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Nieoczekiwane wysłanie formularza." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Utwórz nowego użytkownika o tym pseudonimie." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Wybierz kwadratowy obszar obrazu do awatara" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Utwórz nowe konto" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Utracono dane pliku." -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "" -"Tworzenie nowego konta dla identyfikatora OpenID, który posiada już " -"użytkownika." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Zaktualizowano awatar." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Obecnie potwierdzone adresy Jabbera/GTalk." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Zaktualizowanie awatara nie powiodło się." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Obecnie potwierdzone numery telefonów z włączoną usługą SMS." +#: actions/avatarsettings.php:387 +msgid "Avatar deleted." +msgstr "Usunięto awatar." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Obecnie potwierdzone adresy e-mail." +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Brak pseudonimu" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Obecnie" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Nie ma takiej grupy" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#: actions/blockedfromgroup.php:90 #, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Błąd bazy danych podczas wprowadzania znacznika hasha: %s" +msgid "%s blocked profiles" +msgstr "%s zablokowane profile" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 +#: actions/blockedfromgroup.php:93 #, php-format -msgid "DB error inserting reply: %s" -msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Usuń wpis" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Opisz się i swoje zainteresowania w 140 znakach" +msgid "%s blocked profiles, page %d" +msgstr "%s zablokowane profile, strona %d" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "E-mail" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "Lista użytkowników zablokowanych w tej grupie." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Adres e-mail" +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "Odblokuj użytkownika w tej grupie" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Ustawienia adresu e-mail" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Odblokuj" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Adres e-mail już istnieje." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Odblokuj tego użytkownika" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Potwierdzenie adresu e-mail" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Niezalogowany." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Adres e-mail, taki jak \"NazwaUżytkownika@przykład.org\"" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Nie podano profilu." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Adresy e-mail" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Brak profilu o tym identyfikatorze." -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Podaj pseudonim lub adres e-mail." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Zablokuj użytkownika" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Podaj kod, który otrzymałeś na telefonie." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Jesteś pewny, że chcesz zablokować tego użytkownika. Po tym jego subskrypcja " +"do Ciebie zostanie usunięta, nie będzie mógł Cię zasubskrybować w " +"przyszłości i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Błąd podczas upoważniania tokena" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Nie" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Błąd podczas łączenia użytkownika z OpenID." +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "Nie blokuj tego użytkownika w tej grupie" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Błąd podczas łączenia użytkownika." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Tak" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Błąd podczas wprowadzania awatara" +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "Zablokuj tego użytkownika w tej grupie" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Błąd podczas wprowadzania nowego profilu" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Ten użytkownik został już zablokowany." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Błąd podczas wprowadzania zdalnego profilu" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Zapisanie informacji o blokadzie nie powiodło się." -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Błąd podczas zapisywania potwierdzenia adresu." +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Zdjęcie" -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Błąd podczas zapisie zdalnego profilu" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Brak kodu potwierdzającego." -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Błąd podczas zapisywania profilu." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Błąd podczas zapisywanie użytkownika." - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Błąd podczas ustawiania użytkownika." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Nie znaleziono kodu potwierdzającego." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Błąd podczas aktualizowania profilu" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Ten kod potwierdzający nie jest przeznaczony dla Ciebie!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Błąd podczas aktualizowania zdalnego profilu" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Nierozpoznany typ adresu %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Błąd kodu potwierdzającego." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Ten adres został już potwierdzony." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Istniejący pseudonim" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Nie można zaktualizować użytkownika." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "FAQ" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Nie można usunąć potwierdzenia adresu e-mail." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Zaktualizowanie awatara nie powiodło się." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Potwierdź adres" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Kanał dla znajomych użytkownika %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Adres \"%s\" został potwierdzony dla Twojego konta." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Kanał dla odpowiedzi do użytkownika %s" +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "Rozmowa" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Kanał dla znaczników %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Wpisy" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Przeszukaj zawartość wpisów" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Nie ma takiego wpisu." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Znajdź osoby na tej stronie" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Nie można usunąć tego wpisu." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Z powodów bezpieczeństwa ponownie podaj nazwę użytkownika i hasło przed " -"zmienianiem ustawień." +"Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, to już się nie " +"odstanie." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Imię i nazwisko" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Usuń wpis" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Pomoc" +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "Nie usuwaj tego wpisu" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Strona główna" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Usuń ten wpis" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Strona domowa" +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Strona domowa nie jest prawidłowym adresem URL." +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Ten wpis nie jest ulubiony!" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Chcę wysyłać wpisy przez e-mail." +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Dodaj do ulubionych" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "Komunikator" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Nie ma takiego dokumentu." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Adres komunikatora" +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Edytuj grupę %s" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Ustawienia komunikatora" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Musisz być zalogowany, aby utworzyć grupę." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Jeśli już masz konto, zaloguj się za pomocą nazwy użytkownika i hasła, aby " -"połączyć je ze swoim identyfikatorem OpenID." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Musisz być administratorem, aby zmodyfikować grupę" -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Jeśli chcesz dodać identyfikator OpenID do swojego konta, podaj go w " -"poniższym polu i naciśnij \"Dodaj\"." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Użyj tego formularza, aby zmodyfikować grupę." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe na adres e-" -"mail, który podałeś." +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "opis jest za długi (maksymalnie 140 znaków)." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Wiadomości przychodzące" +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Nie można zaktualizować grupy." -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Usunięto przychodzący adres e-mail." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Zapisano opcje." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Niepoprawne stare hasło" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Ustawienia adresu e-mail" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Niepoprawna nazwa użytkownika lub hasło." +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Zarządzaj, jak otrzymywać wiadomości e-mail od %%site.name%%." + +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adres" + +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Obecnie potwierdzone adresy e-mail." + +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Usuń" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +#: actions/emailsettings.php:113 msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Instrukcje przywracania hasła zostały wysłane na adres e-mail zarejestrowany " -"z Twoim kontem." +"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoją skrzynkę odbiorczą " +"(także w wiadomościach niechcianych!), czy otrzymałeś wiadomość z dalszymi " +"instrukcjami." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Nieprawidłowy adres URL awatara \"%s\"" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Anuluj" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Nieprawidłowy adres e-mail: %s" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Adres e-mail" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Nieprawidłowa strona domowa \"%s\"" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Adres e-mail, taki jak \"NazwaUżytkownika@przykład.org\"" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Nieprawidłowy adres URL licencji \"%s\"" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Dodaj" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Nieprawidłowa zawartość wpisu" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Wiadomości przychodzące" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Nieprawidłowy adres URI wpisu" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Wyślij wiadomość e-mail na ten adres, aby wysyłać nowe wpisy." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Nieprawidłowy adres URL wpisu" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Używaj nowego adresu e-mail do wysyłania; anuluj stary." -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Nieprawidłowy adres URL profilu \"%s\"." +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Nowe" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Nieprawidłowy adres URL profilu (błędny format)" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Preferencje" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Nieprawidłowy adres URL profilu zwrócony przez serwer." +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Wyślij mi wpisy nowych subskrypcji przez e-mail." -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Nieprawidłowy rozmiar." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś doda mój wpis jako ulubiony." -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Nieprawidłowa nazwa użytkownika lub hasło." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi prywatną wiadomość." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Wysłano zaproszenia" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi odpowiedź \"@\"." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Wysłano zaproszenia do następujących osób:" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Pozwól przyjaciołom na szturchanie mnie i wyślij mi wiadomość e-mail." -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Zaproś" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Chcę wysyłać wpisy przez e-mail." -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Zaproś nowych użytkowników" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Opublikuj MicroID adresu e-mail." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Działa pod kontrolą oprogramowania do mikroblogowania [StatusNet](http://" -"status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " -"Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Identyfikator Jabbera należy już do innego użytkownika." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Zapisz" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Adres Jabbera lub GTalk, taki jak \"NazwaUżytkownika@przykład.org\". " -"Najpierw upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub " -"na GTalk." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Zapisano preferencje." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Język" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Brak adresu e-mail." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Język jest za długi (maksymalnie 50 znaków)." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Nie można znormalizować tego adresu e-mail" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Położenie" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "To nie jest prawidłowy adres e-mail" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Położenie jest za długie (maksymalnie 255 znaków)." +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Ten adres e-mail jest już Twój." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Zaloguj się" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Ten adres e-mail należy już do innego użytkownika." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Zaloguj się za pomocą konta [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Nie można wprowadzić kodu potwierdzającego." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format +#: actions/emailsettings.php:358 msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +"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 "" -"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " -"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." -"openidlogin%%). " - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Wyloguj się" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" nazwisko" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Zgubione lub zapomniane hasło?" +"Kod potwierdzający został wysłany na dodany adres e-mail. Sprawdź w swojej " +"skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś " +"kod i instrukcje dotyczące jego użycia." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Używaj nowego adresu e-mail do wysyłania; anuluj stary." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Brak oczekujących potwierdzeń do anulowania." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Zarządzaj, jak otrzymywać wiadomości e-mail od %%site.name%%." +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "To jest błędny adres komunikatora." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Członek od" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Anulowano potwierdzenie." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Mikroblog użytkownika %s" +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "To nie jest Twój adres e-mail." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Operator komórkowy Twojego telefonu. Jeśli znasz operatora, który akceptuje " -"wiadomości SMS przez e-mail, a nie znajduje się na liście, wyślij wiadomość " -"e-mail na %s (w języku angielskim), aby nam o tym powiedzieć." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Adres został usunięty." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Moje teksty i pliki są dostępne na " +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Brak przychodzącego adresu e-mail." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Nowe" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Nie można zaktualizować wpisu użytkownika." -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Nowy adres e-mail do wysyłania do %s" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Usunięto przychodzący adres e-mail." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Dodano nowy przychodzący adres e-mail." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nowy pseudonim" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nowy wpis" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Popularne wpisy" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nowe hasło" +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Popularne wpisy, strona %d" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Najpopularniejsze wpisy na stronie w te chwili." -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Pseudonim" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" +"Ulubione wpisy są widoczne na tej stronie, ale nikt nie oznaczył jeszcze " +"żadnego jako ulubiony." -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Pseudonim jest już używany. Spróbuj innego." +#: 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 "" +"Bądź pierwszym, który doda wpis do ulubionych naciskając przycisk ulubionego " +"obok wpisu, który Ci się podoba." -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " +"pierwszym, który doda wpis do ulubionych!" -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Niedozwolony pseudonim." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Ulubione wpisy użytkownika %s" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Pseudonim użytkownika którego chcesz obserwować" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Aktualizacje od %1$s na %2$s!" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Pseudonim lub adres e-mail" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Ten wpis jest już ulubiony!" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Nie" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Usuń wpis z ulubionych" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Brak identyfikatora Jabbera." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Znani użytkownicy" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Brak żądania upoważnienia!" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Znani użytkownicy, strona %d" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Nie wybrano operatora." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Wybór znanych użytkowników na %s" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Nie podano kodu" +#: actions/file.php:34 +msgid "No notice id" +msgstr "Brak identyfikatora wpisu" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Brak kodu potwierdzającego." +#: actions/file.php:38 +msgid "No notice" +msgstr "Brak wpisu" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Brak zawartości!" +#: actions/file.php:42 +msgid "No attachments" +msgstr "Brak załączników" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Brak adresu e-mail." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "Nie wysłano załączników" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Brak identyfikatora." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Nieoczekiwana odpowiedź!" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Brak przychodzącego adresu e-mail." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Obserwowany użytkownik nie istnieje." -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Zdalny serwer nie dostarczył pseudonimu." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Można używać lokalnej subskrypcji!" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Brak pseudonimu." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Ten użytkownik zablokował Cię z subskrypcji." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Brak oczekujących potwierdzeń do anulowania." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Brak upoważnienia." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Brak numeru telefonu." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Serwer nie zwrócił adresu URL profilu." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Nieznana wersja protokołu OMB." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Brak zarejestrowanych adresów e-mail dla tego użytkownika." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Błąd podczas aktualizowania zdalnego profilu" -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Nie znaleziono żądania!" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Nie ma takiej grupy." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Brak wyników" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Nie ma takiego wpisu." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Brak rozmiaru." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Utracono plik." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Nie znaleziono statusów z tym identyfikatorem." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "Nie podano grupy." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Nie znaleziono statusów z tym identyfikatorem." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "Tylko administrator może blokować członków grupy." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Nie ma takiego identyfikatora OpenID." +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "Użytkownik został już zablokował w grupie." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Nie ma takiego dokumentu." +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "Użytkownik nie jest członkiem grupy." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Nie ma takiego wpisu." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "Zablokuj użytkownika w grupie" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Nie ma takiego kodu przywracania." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" +"Jesteś pewny, że chcesz zablokować użytkownika \"%s\" w grupie \"%s\"? " +"Zostanie usunięty z grupy, nie będzie mógł wysyłać wpisów i zasubskrybować " +"grupy w przyszłości." -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Nie ma takiej subskrypcji" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Brak takiego użytkownika." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "Błąd bazy danych podczas blokowania użytkownika w grupie." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Brak użytkownika z tym adresem e-mail lub nazwą użytkownika." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Brak identyfikatora" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Nie ma kogo pokazać!" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "Musisz być zalogowany, aby zmodyfikować grupę." -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "To nie jest kod przywracania." +#: actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "Wygląd grupy" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "To nie jest zarejestrowany użytkownik." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety kolorów." -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "To nie jest obsługiwany format danych." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +msgid "Couldn't update your design." +msgstr "Nie można zaktualizować wyglądu." -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "To nie jest prawidłowy identyfikator Jabbera" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" +msgstr "Nie można zapisać ustawień wyglądu!" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "To nie jest prawidłowy identyfikator OpenID." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +msgid "Design preferences saved." +msgstr "Zapisano preferencje wyglądu." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "To nie jest prawidłowy adres e-mail" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Logo grupy" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "To nie jest prawidłowy adres e-mail." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "To nie jest prawidłowy pseudonim." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "Wybierz kwadratowy obszar obrazu, który będzie logo." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "To nie jest prawidłowy adres URL profilu (niepoprawne usługi)." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Zaktualizowano logo." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "To nie jest prawidłowy adres URL profilu (nie podano XRDS)." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Zaktualizowanie logo nie powiodło się." -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "Członkowie grupy %s" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "To nie jest obraz lub lub plik jest uszkodzony." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "Członkowie grupy %s, strona %d" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Brak upoważnienia." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Lista użytkowników znajdujących się w tej grupie." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Nieoczekiwana odpowiedź!" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Administrator" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Nie znaleziono" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Zablokuj" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Niezalogowany." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Zablokuj tego użytkownika" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Nie zasubskrybowane!" +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "Uczyń użytkownika administratorem grupy" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Wyszukiwanie wpisów" +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "Uczyń administratorem" + +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "Uczyń tego użytkownika administratorem" + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Aktualizacje od %1$s na %2$s!" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 +#: actions/groupsearch.php:52 #, php-format -msgid "Notice feed for %s" -msgstr "Kanał wpisów dla %s" +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 "" +"Znajdź grupy na %%site.name%% według ich nazwy, położenia lub opisu. Oddziel " +"terminy spacjami; muszą mieć trzy znaki lub więcej." -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Wpis nie posiada profilu" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Znajdź grupę" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Wpisy" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "Brak wyników." -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/groupsearch.php:82 #, php-format -msgid "Notices tagged with %s" -msgstr "Wpisy ze znacznikiem %s" +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" +"Jeśli nie możesz znaleźć grupy, której szukasz, możesz sam [ją utworzyć](%%" +"action.newgroup%%)." -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Stare hasło" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i sam [utworzysz " +"grupę](%%action.newgroup%%)!" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Ustawienia konta OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Automatyczne wysłanie OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Login OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "Adres URL identyfikatora OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Anulowano uwierzytelnienie OpenID." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Uwierzytelnienie OpenID nie powiodło się: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Niepowodzenie OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "Usunięto identyfikator OpenID." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Ustawienia OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia." +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Grupy" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Częściowo wysłano." +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Grupy, strona %d" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Hasło" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" +"Grupy %%%%site.name%%%% umożliwiają znalezienie i rozmawianie z osobami o " +"podobnych zainteresowaniach. Po dołączeniu do grupy można wysyłać wiadomości " +"do wszystkich członków używając składni \"!nazwagrupy\". Nie widzisz grupy, " +"która Cię interesuje? Spróbuj ją [znaleźć](%%%%action.groupsearch%%%%) lub " +"[założyć własną!](%%%%action.newgroup%%%%)" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Hasło i potwierdzenie nie pasują do siebie." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Utwórz nową grupę" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Hasło musi mieć sześć lub więcej znaków." +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "Tylko administrator może odblokowywać członków grupy." -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Zażądano przywracania hasła" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Zapisano hasło." +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "Użytkownik nie został zablokowany w grupie." -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Hasła nie pasują do siebie." +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Błąd podczas usuwania blokady." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Osoby" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Ustawienia komunikatora" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Wyszukiwanie osób" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. " +"Skonfiguruj adres i ustawienia poniżej." -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Wyszukiwanie osób" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Ta strona nie jest dostępna w " -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Osobiste" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Obecnie potwierdzone adresy Jabbera/GTalk." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Osobista wiadomość" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto Jabbera/GTalk, " +"czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy " +"znajomych?)." -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Adres komunikatora" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Sprawdź te szczegóły, aby upewnić się, czy chcesz subskrybować wpisy tego " -"użytkownika. Jeśli nie chcesz, po prostu naciśnij \"Anuluj\"." +"Adres Jabbera lub GTalk, taki jak \"NazwaUżytkownika@przykład.org\". " +"Najpierw upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub " +"na GTalk." + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Wyślij mi wpisy przez Jabbera/GTalk." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Wyślij wpis, kiedy zmieni się mój status na Jabberze/GTalk." -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Preferencje" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Zapisano preferencje." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Preferowany język" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Prywatność" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Problem podczas zapisywania wpisu." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profil" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Adres URL profilu" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Ustawienia profilu" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Nieznany profil" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Kanał publicznego strumienia" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Publiczna oś czasu" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Wyślij mi odpowiedzi przez Jabbera/GTalk od osób, których nie subskrybuję." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 +#: actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Opublikuj MicroID adresu Jabbera/GTalk." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Opublikuj MicroID adresu e-mail." - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Ostatnie znaczniki" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Przywróć" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Przywróć hasło" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Kod przywracania dla nieznanego użytkownika." - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Zarejestruj się" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Rejestracja nie jest dozwolona." - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Rejestracja powiodła się" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Odrzuć" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Zapamiętaj mnie" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Brak identyfikatora Jabbera." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Zdalny profil bez odpowiadającego profilu" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Nie można znormalizować tego identyfikatora Jabbera" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Zasubskrybuj zdalnie" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "To nie jest prawidłowy identyfikator Jabbera" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Usuń" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Ten identyfikator Jabbera jest już Twój." -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Usuń identyfikator OpenID" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Identyfikator Jabbera należy już do innego użytkownika." -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/imsettings.php:327 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -"Usunięcie jedynego identyfikatora OpenID uniemożliwi zalogowanie się! Jeśli " -"musisz je usunąć, dodaj najpierw inne." +"Kod potwierdzający został wysłany na dodany adres komunikatora. Musisz " +"zaakceptować otrzymywanie wiadomości od %s." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Odpowiedzi" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "To nie jest Twój identyfikator Jabbera." -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/inbox.php:59 #, php-format -msgid "Replies to %s" -msgstr "Odpowiedzi na %s" +msgid "Inbox for %s - page %d" +msgstr "Odebrane wiadomości użytkownika %s - strona %d" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Przywróć" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Odebrane wiadomości użytkownika %s" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Przywróć hasło" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"To jest skrzynka odbiorcza, która wyświetla przychodzące wiadomości prywatne." -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "Zaproszenia zostały wyłączone." -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Numer telefonu SMS" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" +"Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Ustawienia SMS" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Nieprawidłowy adres e-mail: %s" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Potwierdzenie SMS" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Wysłano zaproszenia" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Takie samo jak powyższe hasło" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Zaproś nowych użytkowników" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Takie samo jak powyższe hasło. Wymagane." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Jesteś już zasubskrybowany do tych użytkowników:" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Zapisz" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Znajdź" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Te osoby są już użytkownikami i zostałeś do nich automatycznie " +"zasubskrybowany:" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Znajdź kanał strumienia" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Wysłano zaproszenia do następujących osób:" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format +#: actions/invite.php:150 msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -"Znajdź wpisy na %%site.name%% według ich zawartości. Oddziel wyszukiwane " -"terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." +"Zostaniesz powiadomiony, kiedy ktoś zaakceptuje zaproszenie i zarejestruje " +"się na stronie. Dziękujemy za pomoc w zwiększaniu społeczności!" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/invite.php:162 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub " -"zainteresowań. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy " -"znaki lub więcej." +"Użyj tego formularza, aby zaprosić przyjaciół i kolegów do używania tej " +"usługi." -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Wybierz operatora" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Adresy e-mail" + +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Adresy przyjaciół, których zapraszasz (jeden na wiersz)" + +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Osobista wiadomość" + +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia." -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 msgid "Send" msgstr "Wyślij" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Wyślij wiadomość e-mail na ten adres, aby wysyłać nowe wpisy." - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Wyślij mi wpisy nowych subskrypcji przez e-mail." - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Wyślij mi wpisy przez Jabbera/GTalk." +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s zapraszają Cię, abyś dołączył do nich w %2$s" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 +#: actions/invite.php:228 +#, php-format msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Wyślij mi wpisy przez SMS. Rozumiem, że mogę otrzymywać większe rachunki od " -"swojego operatora." +"Użytkownik %1$s zapraszają Cię, abyś dołączył do nich w %2$s (%3$s).\n" +"\n" +"%2$s jest usługą mikroblogowania, która umożliwia pozostawanie w kontakcie z " +"osobami, których znasz i z tymi, którzy Cię interesują.\n" +"\n" +"Możesz także dzielić się w sieci nowinkami o sobie, swoimi przemyśleniami, " +"lub swoim życiem z osobami, którzy Cię znają. To także wspaniały sposób na " +"poznawanie nowych osób, którzy dzielą Twoje zainteresowania.\n" +"\n" +"Użytkownik %1$s powiedział:\n" +"\n" +"%4$s\n" +"\n" +"Możesz zobaczyć stronę profilu %1$s na %2$s tutaj:\n" +"\n" +"%5$s\n" +"\n" +"Jeśli chcesz wypróbować usługę, naciśnij na poniższy odnośnik, aby " +"zaakceptować zaproszenie.\n" +"\n" +"%6$s\n" +"\n" +"Jeśli nie, możesz zignorować tę wiadomość. Dziękujemy za Twoją cierpliwość i " +"czas.\n" +"\n" +"Z poważaniem, %2$s\n" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Wyślij mi odpowiedzi przez Jabbera/GTalk od osób, których nie subskrybuję." +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Musisz być zalogowany, aby dołączyć do grupy." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Ustawienia" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Jesteś już członkiem tej grupy" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Zapisano ustawienia." +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "Nie można dołączyć użytkownika %s do grupy %s" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Wyświetlanie najpopularniejszych znaczników od ostatniego tygodnia" +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "Użytkownik %s dołączył do grupy %s" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Ktoś inny już posiada ten identyfikator OpenID." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Musisz być zalogowany, aby opuścić grupę." -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Stało się coś dziwnego." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "Nie jesteś członkiem tej grupy." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Przepraszamy, przychodzący e-mail nie jest dozwolony." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Nie można znaleźć wpisu członkostwa." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Przepraszamy, to nie jest twój przychodzący adres e-mail." +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "Nie można usunąć użytkownika %s z grupy %s" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Kod źródłowy" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "Użytkownik %s opuścił grupę %s" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statystyki" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Jesteś już zalogowany." -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Nie znaleziono przechowywanego identyfikatora OpenID." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Zasubskrybuj" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Nieprawidłowa zawartość wpisu" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Subskrybenci" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Niepoprawna nazwa użytkownika lub hasło." -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Upoważniono subskrypcję" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Błąd podczas ustawiania użytkownika." -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Odrzucono subskrypcję" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Zaloguj się" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Subskrypcje" +#: actions/login.php:243 +msgid "Login to site" +msgstr "Zaloguj się na stronie" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Błąd systemu podczas wysyłania pliku." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Pseudonim" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Znaczniki" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Hasło" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Tekst" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Zapamiętaj mnie" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Znajdź tekst" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Automatyczne logowanie. Nie użyj na komputerach używanych przez wiele osób!" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Ten identyfikator OpenID nie należy do Ciebie." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Zgubione lub zapomniane hasło?" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Ten adres został już potwierdzony." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Z powodów bezpieczeństwa ponownie podaj nazwę użytkownika i hasło przed " +"zmienianiem ustawień." -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Ten kod potwierdzający nie jest przeznaczony dla Ciebie!" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " +"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." +"openidlogin%%). " -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Ten adres e-mail należy już do innego użytkownika." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "Tylko administrator może uczynić innego użytkownika administratorem." -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Ten plik jest za duży." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "Użytkownika %s jest już administratorem grupy \"%s\"." -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Ten identyfikator Jabbera jest już Twój." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "Nie można uzyskać wpisu członkostwa użytkownika %s w grupie %s" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Ten adres e-mail jest już Twój." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "Nie można uczynić %s administratorem grupy %s" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Ten numer telefonu jest już Twój." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Brak obecnego statusu" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "To nie jest Twój identyfikator Jabbera." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Nowa grupa" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "To nie jest Twój adres e-mail." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Użyj tego formularza, aby utworzyć nową grupę." -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "To nie jest Twój numer telefonu." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nowa wiadomość" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "To jest błędny adres komunikatora." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Nie można wysłać wiadomości do tego użytkownika." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "To jest błędny numer potwierdzenia." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Brak zawartości!" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Ten numer telefonu należy już do innego użytkownika." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Nie podano odbiorcy." -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Wpis jest za długi. Maksymalna długość to 140 znaków." +#: actions/newmessage.php:164 lib/command.php:370 +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." -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Wpis jest za długi. Maksymalna długość to 255 znaków." +#: actions/newmessage.php:181 +msgid "Message sent" +msgstr "Wysłano wiadomość" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Adres \"%s\" został potwierdzony dla Twojego konta." +msgid "Direct message to %s sent" +msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Adres został usunięty." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Błąd AJAX" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " -"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " -"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Osoby obserwujące wpisy użytkownika %s." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nowy wpis" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Osoby obserwujący Twoje wpisy." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Wysłano wpis" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:68 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Osoby, których wpisy obserwuje użytkownik %s." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Osoby, których wpisy obserwujesz." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"Te osoby są już użytkownikami i zostałeś do nich automatycznie " -"zasubskrybowany:" +"Znajdź wpisy na %%site.name%% według ich zawartości. Oddziel wyszukiwane " +"terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Kod potwierdzający jest za stary. Rozpocznij ponownie." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Znajdź tekst" + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Wyniki wyszukiwania dla \"%s\" na %s" -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:121 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Ten formularz powinien wysłać się automatycznie. Jeśli tak się nie stanie, " -"naciśnij przycisk Wyślij, aby przejść do dostawcy OpenID." +"Zostań pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearch.php:124 #, 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." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Jeżeli logujesz się do %s po raz pierwszy, musimy połączyć identyfikator " -"OpenID z lokalnym kontem. Można utworzyć nowe konto lub połączyć z " -"istniejącym, jeśli je posiadasz." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Ta metoda wymaga POST lub DELETE." - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Ta metoda wymaga POST." - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Ta strona jest niedostępna dla akceptowanego typu medium" +"Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i zostaniesz " +"pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Strefa czasowa" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Nie wybrano strefy czasowej." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format +#: actions/nudge.php:85 msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"Aby zasubskrybować, można [zalogować się](%%action.login%%) lub " -"[zarejestrować](%%action.register%%) nowe konto. Jeśli już posiadasz konto " -"na [zgodnej stronie mikroblogowania](%%doc.openmublog%%), podaj poniżej " -"adres URL profilu." +"Ten użytkownik nie pozwala na szturchnięcia lub nie potwierdził lub nie " +"ustawił jeszcze swojego adresu e-mail." -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Należy dostarczyć dwa identyfikatory lub nazwy użytkowników." +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Wysłano szturchnięcie" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Adres URL strony domowej, bloga lub profilu na innej stronie" +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Wysłano szturchnięcie!" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Wpis nie posiada profilu" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Nieoczekiwane wysłanie formularza." +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Status użytkownika %1$s na %2$s" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Nieoczekiwane przywrócenie hasła." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Zawartość" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Nieznane działanie" +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Nieznana wersja protokołu OMB." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "To nie jest obsługiwany format danych." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Jeśli nie podano inaczej, prawa autorskie do zawartości tej strony należy do " -"współtwórców i jest dostępna na warunkach licencji " +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Wyszukiwanie osób" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Nierozpoznany typ adresu %s" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Wyszukiwanie wpisów" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Zrezygnuj z subskrypcji" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Inne ustawienia" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Nieobsługiwana wersja OMB" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Zarządzaj różnymi innymi opcjami." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Nieobsługiwany format pliku obrazu." +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "Skracaj adresy URL za pomocą" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Aktualizacje przez wiadomości SMS" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Używana automatyczna usługa skracania." -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Aktualizacje przez komunikator" +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "Wyświetl ustawienia wyglądu profilu" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "Wyświetl lub ukryj ustawienia wyglądu profilu." + +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Adres URL usługi skracania jest za długi (maksymalnie 50 znaków)." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Aktualizacje od %1$s i przyjaciół na %2$s!" +msgid "Outbox for %s - page %d" +msgstr "Wysłane wiadomości użytkownika %s - strona %d" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Aktualizacje od %1$s na %2$s!" +msgid "Outbox for %s" +msgstr "Wysłane wiadomości użytkownika %s" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Wyślij" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "To są wiadomości wysłane, czyli prywatne wiadomości, które wysłałeś." -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Tu można wysłać nowego \"awatara\" (obraz użytkownika). Nie można " -"modyfikować obrazu po jego wysłaniu, więc upewnij się, że jest w miarę " -"kwadratowy. Musi być także na licencji strony. Użyj obrazu, który należy do " -"Ciebie, i którym chcesz się dzielić." +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Zmień hasło" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Wyślij nowy obraz profilu" +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Zmień hasło." -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Użyj tego formularza, aby zaprosić przyjaciół i kolegów do używania tej " -"usługi." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Zmiana hasła" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Stare hasło" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Obserwowany użytkownik nie istnieje." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nowe hasło" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Użytkownik nie posiada profilu." +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 lub więcej znaków" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Pseudonim użytkownika" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Potwierdź" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Nie znaleziono użytkownika." +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "takie samo jak hasło powyżej" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "W jakiej strefie czasowej zwykle się znajdujesz?" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Zmień" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Co słychać, %s?" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Hasło musi mieć sześć lub więcej znaków." -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Hasła nie pasują do siebie." -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Błędny typ obrazu dla \"%s\"" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Niepoprawne stare hasło" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Błędny rozmiar obrazu \"%s\"" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Tak" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Nie można zapisać nowego hasła." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Już posiadasz ten identyfikator OpenID!" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Zapisano hasło." -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +#: actions/peoplesearch.php:52 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Wpis zostanie za chwilę trwale usunięty. Kiedy to się stanie, to już się nie " -"odstanie." +"Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub " +"zainteresowań. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy " +"znaki lub więcej." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Jesteś już zalogowany!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Jesteś już zasubskrybowany do tych użytkowników:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Nie jesteś przyjacielem podanego użytkownika." - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Tutaj można zmienić hasło. Wybierz dobre!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Wyszukiwanie osób" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Można utworzyć nowe konto, aby rozpocząć wysyłanie wpisów." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Nieprawidłowy znacznik osób: %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Można otrzymywać wiadomości SMS przez e-mail od %%site.name%%." +msgid "Users self-tagged with %s - page %d" +msgstr "Użytkownicy używający znacznika %s - strona %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Można usunąć identyfikator OpenID ze swojego konta naciskając przycisk \"Usuń" -"\"." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Nieprawidłowa zawartość wpisu" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. " -"Skonfiguruj adres i ustawienia poniżej." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Ustawienia profilu" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3127,2227 +2019,2025 @@ msgstr "" "Tutaj można zaktualizować osobiste informacje w profilu, aby inni mogli " "lepiej Cię poznać." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Można używać lokalnej subskrypcji!" +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Informacje o profilu" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "" -"Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Nie wysłałeś nam tego profilu" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Imię i nazwisko" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Posiadasz nowy adres wysyłania na %1$s.\n" -"\n" -"Wyślij wiadomość e-mail na %2$s, aby wysłać nowe wpisy.\n" -"\n" -"Więcej instrukcji dotyczących poczty e-mail można znaleźć na %3$s.\n" -"\n" -"Z poważaniem,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Strona domowa" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Nie można usuwać statusów innych użytkowników." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "Adres URL strony domowej, bloga lub profilu na innej stronie" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Opisz się i swoje zainteresowania w 140 znakach" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Zostaniesz powiadomiony, kiedy ktoś zaakceptuje zaproszenie i zarejestruje " -"się na stronie. Dziękujemy za pomoc w zwiększaniu społeczności!" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Opisz się i swoje " -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Zostałeś zidentyfikowany. Podaj poniżej nowe hasło. " +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "O mnie" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Twój adres URL OpenID" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Położenie" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Twój pseudonim na tym serwerze lub zarejestrowany adres e-mail." +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Znaczniki" + +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą " -"tego samego konta użytkownika. Tu można zarządzać powiązanymi " -"identyfikatorami OpenID." +"Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " +"spacjami" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "kilka sekund temu" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Język" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "około %d dni temu" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Preferowany język" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "około %d godzin temu" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Strefa czasowa" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "około %d minut temu" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "W jakiej strefie czasowej zwykle się znajdujesz?" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "około %d miesięcy temu" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automatycznie zasubskrybuj każdego, kto mnie zasubskrybuje (najlepsze dla " +"botów)" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "blisko dzień temu" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "około minutę temu" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Nie wybrano strefy czasowej." -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "około miesiąc temu" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Język jest za długi (maksymalnie 50 znaków)." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "około rok temu" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Nieprawidłowy znacznik: \"%s\"" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "około godzinę temu" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "usuń" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "w odpowiedzi na..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "odpowiedz" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "takie samo jak hasło powyżej" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Nie można zapisać profilu." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "nieobsługiwany typ pliku" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Następne" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Nie można zapisać znaczników." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Ten wpis nie jest ulubiony!" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Zapisano ustawienia." -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Nie można usunąć ulubionego wpisu." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "Poza ograniczeniem strony (%s)" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Dodaj do ulubionych" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Nie można pobrać publicznego strumienia." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś doda mój wpis jako ulubiony." +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Publiczna oś czasu, strona %d" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi prywatną wiadomość." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Publiczna oś czasu" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Ten wpis jest już ulubiony!" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Kanał publicznego strumienia (RSS 1.0)" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Nie można utworzyć ulubionego wpisu." +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Kanał publicznego strumienia (RSS 2.0)" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Usuń wpis z ulubionych" +#: actions/public.php:159 +msgid "Public Stream Feed (Atom)" +msgstr "Kanał publicznego strumienia (Atom)" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/public.php:179 #, php-format -msgid "%s favorite notices" -msgstr "Ulubione wpisy użytkownika %s" +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" +"To jest publiczna oś czasu dla %%site.name%%, ale nikt jeszcze nic nie " +"wysłał." -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Kanał ulubionych wpisów użytkownika %s" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "Zostań pierwszym, który coś wyśle!" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/public.php:186 #, php-format -msgid "Inbox for %s - page %d" -msgstr "Odebrane wiadomości użytkownika %s - strona %d" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " +"pierwszym, który coś wyśle!" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/public.php:233 #, php-format -msgid "Inbox for %s" -msgstr "Odebrane wiadomości użytkownika %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"To jest skrzynka odbiorcza, która wyświetla przychodzące wiadomości prywatne." +"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" +"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/). " +"[Dołącz teraz](%%action.register%%), aby dzielić się wpisami o sobie z " +"przyjaciółmi, rodziną i kolegami! ([Przeczytaj więcej](%%doc.help%%))" -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:238 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -"%1$s zaprosił się do dołączenia do %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Automatyczne logowanie; " +"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" +"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)." -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Z powodów bezpieczeństwa ponownie podaj " +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Publiczna chmura znaczników" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła. " - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "To są najpopularniejsze ostatnie znaczniki na %s " -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Nie podano odbiorcy." +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" +"Nikt jeszcze nie wysłał wpisu za pomocą [znacznika hasha](%%doc.tags%%)." -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Nie można wysłać wiadomości do tego użytkownika." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "Zostań pierwszym, który go wyśle!" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/publictagcloud.php:75 +#, php-format 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." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Nie ma takiego użytkownika" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nowa wiadomość" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " +"pierwszym, który go wyśle!" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Wpis bez odpowiadającego profilu" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Chmura znaczników" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) umożliwia logowanie się na wiele stron " +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Jesteś już zalogowany!" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Jeśli chcesz dodać identyfikator OpenID do konta, " +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Nie ma takiego kodu przywracania." -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Usunięcie jedynego identyfikatora OpenID uniemożliwi zalogowanie się! " +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "To nie jest kod przywracania." -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Można usunąć identyfikator OpenID z konta " +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Kod przywracania dla nieznanego użytkownika." -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Wysłane wiadomości użytkownika %s - strona %d" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Błąd kodu potwierdzającego." -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Wysłane wiadomości użytkownika %s" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Kod potwierdzający jest za stary. Rozpocznij ponownie." -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "To są wiadomości wysłane, czyli prywatne wiadomości, które wysłałeś." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub " -"zainteresowań. " -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Można tutaj zaktualizować osobiste informacje profilu " +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Użytkownik bez odpowiadającego profilu" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Ten kod potwierdzający jest za stary. " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Jeśli zapomniałeś lub zgubiłeś" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Twój pseudonim na tym serwerze lub zarejestrowany adres e-mail." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Zostałeś zidentyfikowany. Podaj " +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Przywróć" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Pseudonim na tym serwerze, " +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Przywróć hasło" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instrukcje przywracania hasła " +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Przywróć hasło" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Pomyślnie zapisano nowe hasło. " +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Zażądano przywracania hasła" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Hasło musi mieć sześć lub więcej znaków." +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Nieznane działanie" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć..." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 lub więcej znaków, i nie zapomnij go!" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Powinieneś właśnie otrzymać wiadomość przez e-mail z " +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Takie samo jak powyższe hasło" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Aby zasubskrybować, można [zalogować się](%%action.login%%)," +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Przywróć" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Kanał ulubionych wpisów użytkownika %s" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Podaj pseudonim lub adres e-mail." -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Nie można odebrać ulubionych wpisów." +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Brak użytkownika z tym adresem e-mail lub nazwą użytkownika." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Nie ma takiej wiadomości." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Brak zarejestrowanych adresów e-mail dla tego użytkownika." -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Tylko nadawca i odbiorca mogą przeczytać tę wiadomość." +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Błąd podczas zapisywania potwierdzenia adresu." -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Wiadomość do użytkownika %1$s na %2$s" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Instrukcje przywracania hasła zostały wysłane na adres e-mail zarejestrowany " +"z Twoim kontem." -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Wiadomość od użytkownika %1$s na %2$s" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Nieoczekiwane przywrócenie hasła." -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Wyślij wiadomość" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Hasło musi mieć sześć lub więcej znaków." -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Operator komórkowy Twojego telefonu. " +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Hasło i potwierdzenie nie pasują do siebie." -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Bezpośrednia wiadomość do użytkownika %s" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany." -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Przepraszamy, tylko zaproszone osoby mogą się rejestrować." -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Wysłane bezpośrednie wiadomości" +#: actions/register.php:92 +msgid "Sorry, invalid invitation code." +msgstr "Przepraszamy, nieprawidłowy kod zaproszenia." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Wszystkie bezpośrednie wiadomości wysłane od użytkownika %s" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Rejestracja powiodła się" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Brak tekstu wiadomości!" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Zarejestruj się" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Nie znaleziono odbiorcy." +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Rejestracja nie jest dozwolona." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -"Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są " -"Twoimi przyjaciółmi." +"Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s/ulubione wpisy od %s" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "To nie jest prawidłowy adres e-mail." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "Użytkownik %s aktualizuje ulubione według %s/%s." +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Adres e-mail już istnieje." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Nieprawidłowa nazwa użytkownika lub hasło." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format +#: actions/register.php:342 +#, fuzzy msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -"Użytkownik %1$s właśnie dodał Twój wpis od %2$s jako jeden z jego " -"ulubionych.\n" -"\n" +"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " +"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " +"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." +"openidlogin%%)!)" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Dodaj swoje konto Twittera, aby automatycznie wysyłać wpisy na Twittera, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Ustawienia Twittera" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Konto Twittera" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Obecnie sprawdzone konto Twittera." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Nazwa użytkownika Twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Bez spacji." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Hasło Twittera" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Automatycznie wyślij moje wpisy na Twittera." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Wyślij lokalne odpowiedzi \"@\" na Twittera." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Zasubskrybuj tutaj moich przyjaciół z Twittera." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -"Nazwa użytkownika może zawierać tylko liczby, małe i wielkie litery oraz " -"podkreślnik (_). Maksymalnie 15 znaków." - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Nie można sprawdzić danych uwierzytelniających Twittera!" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Nie można pobrać informacji o koncie \"%s\" z Twittera." - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Nie można zapisać ustawień Twittera!" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Zapisano ustawienia Twittera." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "To nie jest Twoje konto Twittera." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Nie można usunąć użytkownika Twittera." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Usunięto użytkownika Twittera." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Nie można zapisać preferencji Twittera." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Zapisano preferencje Twittera." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Sprawdź te szczegóły, aby upewnić się " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Subskrypcja została upoważniona, ale nie " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Subskrypcja została odrzucona, ale nie " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Wyniki polecenia" +"1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane." -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Zakończono polecenie" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 lub więcej znaków. Wymagane." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Polecenie nie powiodło się" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Takie samo jak powyższe hasło. Wymagane." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Przepraszamy, te polecenie nie zostało jeszcze zaimplementowane." +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "E-mail" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Subskrypcje: %1$s\n" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Użytkownik nie posiada ostatniego wpisu" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" nazwisko" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Zaznaczono wpis jako ulubiony." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Moje teksty i pliki są dostępne na " -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "Creative Commons Uznanie Autorstwa 3.0" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Imię i nazwisko: %s" +#: actions/register.php:496 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i " +"numer telefonu." -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/register.php:537 #, php-format -msgid "Location: %s" -msgstr "Położenie: %s" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć...\n" +"\n" +"* Przejść do [swojego profilu](%s) i wysłać swoją pierwszą wiadomość.\n" +"* Dodać [adres Jabbera/GTalk](%%%%action.imsettings%%%%), abyś mógł wysyłać " +"wpisy przez komunikatora.\n" +"* [Poszukać osób](%%%%action.peoplesearch%%%%), których możesz znać lub " +"którzy dzielą Twoje zainteresowania. \n" +"* Zaktualizować swoje [ustawienia profilu](%%%%action.profilesettings%%%%), " +"aby powiedzieć innym więcej o sobie. \n" +"* Przeczytać [dokumentację w sieci](%%%%doc.help%%%%), aby dowiedzieć się o " +"funkcjach, które mogłeś pominąć. \n" +"\n" +"Dziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi " +"sprawi Ci przyjemność." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Strona domowa: %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Powinieneś właśnie otrzymać wiadomość e-mail, zawierającą instrukcje " +"potwierdzenia adresu e-mail)" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 +#: actions/remotesubscribe.php:98 #, php-format -msgid "About: %s" -msgstr "O mnie: %s" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Aby zasubskrybować, można [zalogować się](%%action.login%%) lub " +"[zarejestrować](%%action.register%%) nowe konto. Jeśli już posiadasz konto " +"na [zgodnej stronie mikroblogowania](%%doc.openmublog%%), podaj poniżej " +"adres URL profilu." -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Zasubskrybuj zdalnie" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s" +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "Zasubskrybuj zdalnego użytkownika" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Pseudonim użytkownika" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Podaj nazwę użytkownika do zasubskrybowania" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Pseudonim użytkownika którego chcesz obserwować" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Zasubskrybowano użytkownika %s" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Adres URL profilu" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Usunięto subskrypcję użytkownika %s" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Zasubskrybuj" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Nie zaimplementowano polecenia." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Nieprawidłowy adres URL profilu (błędny format)" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Wyłączono powiadomienia." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Nie można wyłączyć powiadomień." +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "To jest profil lokalny! Zaloguj się, aby zasubskrybować." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Włączono powiadomienia." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Nie można uzyskać tokenu żądana." -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Nie można włączyć powiadomień." +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Odpowiedzi na %s" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Polecenia:\n" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Odpowiedzi na %s, strona %d" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Nie można wprowadzić wiadomości." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Kanał wpisów dla %s (RSS 1.0)" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Kanał wpisów dla %s (RSS 2.0)" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Użytkownik bez odpowiadającego profilu w systemie." +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Kanał wpisów dla %s (Atom)" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/replies.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"Posiadasz nowy adres wysyłania na %1$s.\n" -"\n" +"To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %s, ale %s " +"nie otrzymał jeszcze wpisów wymagających jego uwagi." -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/replies.php:203 #, php-format -msgid "New private message from %s" -msgstr "Nowa prywatna wiadomość od użytkownika %s" +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" +"Możesz nawiązać rozmowę z innymi użytkownikami, zasubskrybować więcej osób " +"lub [dołączyć do grup](%%action.groups%%)." -#: lib/mail.php:253 lib/mail.php:512 +#: actions/replies.php:205 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n" -"\n" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Tylko użytkownik może czytać swoje skrzynki pocztowe." - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Ten formularz powinien automatycznie się wysłać. " +"Możesz spróbować [szturchnąć użytkownika %s](../%s) lub [wysłać coś " +"wymagającego jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Ulubione" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Wiadomość do użytkownika %1$s na %2$s" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showfavorites.php:79 #, php-format -msgid "%s's favorite notices" -msgstr "Ulubione wpisy użytkownika %s" +msgid "%s's favorite notices, page %d" +msgstr "Ulubione wpisy użytkownika %s, strona %d" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Użytkownik" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Nie można odebrać ulubionych wpisów." -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Odebrane" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Wiadomości przychodzące" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Wysłane" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Kanał dla znajomych użytkownika %s (Atom)" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Wysłane wiadomości" +#: actions/showfavorites.php:205 +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 "" +"Nie wybrałeś jeszcze żadnych ulubionych wpisów. Naciśnij przycisk ulubionego " +"na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie " +"trochę światła." -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" +"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Wyślij coś " +"interesującego, aby chcieli dodać to do swoich ulubionych. :)" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Opcje integracji z Twitterem" +#: actions/showfavorites.php:211 +#, fuzzy, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" +"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " +"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " +"interesującego, aby chcieli dodać to do swoich ulubionych. :)" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "Do" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "To jest sposób na współdzielenie tego, co chcesz." -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Nie można przeanalizować wiadomości." +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "Grupa %s" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showgroup.php:84 #, php-format -msgid "%s and friends, page %d" -msgstr "Użytkownik %s i przyjaciele, strona %d" +msgid "%s group, page %d" +msgstr "Grupa %s, strona %d" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Można wysłać osobisty awatar." +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Profil grupy" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Ustawienia awatara" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "Adres URL" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Oryginał" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Podgląd" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Przytnij" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Wystąpił problem z tokenem sesji. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Wybierz kwadratowy obszar obrazu do awatara" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Utracono dane pliku." - -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Utracono plik." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Nieznany typ pliku" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Nie podano profilu." - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Brak profilu o tym identyfikatorze." - -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Zablokuj użytkownika" - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Na pewno chcesz zablokować tego użytkownika? " +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Wpis" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Ten użytkownik został już zablokowany." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "Aliasy" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Zapisanie informacji o blokadzie nie powiodło się." +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Działania grupy" -#: actions/confirmaddress.php:159 +#: actions/showgroup.php:328 #, php-format -msgid "The address \"%s\" has been " -msgstr "Adres \"%s\" został " - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Za chwilę wpis zostanie trwale usunięty. " - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Dodaj do ulubionych" +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Kanał wpisów dla grupy %s (RSS 1.0)" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:334 #, php-format -msgid "Edit %s group" -msgstr "Edytuj grupę %s" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Skrzynki odbiorcze grup muszą być włączone, aby działały" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Musisz być zalogowany, aby utworzyć grupę." +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Kanał wpisów dla grupy %s (RSS 2.0)" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Brak pseudonimu" +#: actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Kanał wpisów dla grupy %s (Atom)" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Nie ma takiej grupy" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "FOAF dla %s" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Musisz być administratorem, aby zmodyfikować grupę" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Członkowie" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Użyj tego formularza, aby zmodyfikować grupę." +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(Brak)" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Pseudonim może zawierać tylko małe litery " +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Wszyscy członkowie" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "opis jest za długi (maksymalnie 140 znaków)." +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statystyki" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Nie można zaktualizować grupy." +#: actions/showgroup.php:432 +msgid "Created" +msgstr "Utworzono" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Zapisano opcje." +#: actions/showgroup.php:448 +#, 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** jest grupą użytkowników na %%%%site.name%%%%, usłudze " +"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " +"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " +"krótkimi wiadomościami o swoim życiu i zainteresowaniach. [Dołącz teraz](%%%%" +"action.register%%%%), aby stać się częścią tej grupy i wiele więcej! " +"([Przeczytaj więcej](%%%%doc.help%%%%))" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/showgroup.php:454 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Oczekiwanie na potwierdzenie tego adresu. " +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** jest grupą użytkowników na %%%%site.name%%%%, usłudze " +"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " +"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " +"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Utwórz nowy adres e-mail do wysyłania; " +#: actions/showgroup.php:482 +msgid "Admins" +msgstr "Administratorzy" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś " +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Nie ma takiej wiadomości." -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Pozwól przyjaciołom na szturchanie mnie i wyślij mi wiadomość e-mail." +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Tylko nadawca i odbiorca mogą przeczytać tę wiadomość." -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Ten adres e-mail już należy " +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Wiadomość do użytkownika %1$s na %2$s" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "Kod potwierdzający został wysłany na dodany adres e-mail. " +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Wiadomość od użytkownika %1$s na %2$s" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Błąd serwera - nie można uzyskać użytkownika!" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Wysłano wpis" -#: actions/facebookhome.php:196 +#: actions/showstream.php:73 #, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Jeśli chcesz, aby aplikacja %s automatycznie aktualizowała " +msgid " tagged %s" +msgstr " ze znacznikiem %s" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showstream.php:79 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Pozwól %s na aktualizowanie mojego statusu na Facebook" +msgid "%s, page %d" +msgstr "%s, strona %d" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Pomiń" +#: actions/showstream.php:122 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Kanał wpisów dla %s ze znacznikiem %s (RSS 1.0)" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Brak zawartości wpisu!" +#: actions/showstream.php:129 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Kanał wpisów dla %s (RSS 1.0)" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Paginacja" +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Kanał wpisów dla %s (RSS 2.0)" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Następne" +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Kanał wpisów dla %s (Atom)" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Wcześniej" +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "FOAF dla %s" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/showstream.php:191 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Dziękujemy za zaproszenie przyjaciół do używania %s" +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" +"To jest oś czasu dla użytkownika %s, ale %s nie nic jeszcze nie wysłał." -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Zaproszenia zostały wysłane do następujących użytkowników:" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" +"Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, " +"teraz jest dobry czas, aby zacząć. :)" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/showstream.php:198 #, php-format -msgid "You have been invited to %s" -msgstr "Zostałeś zaproszony do %s" +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" +"Możesz spróbować szturchnąć użytkownika %s lub [wysłać coś, co wymaga jego " +"uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 +#: actions/showstream.php:234 #, php-format -msgid "Invite your friends to use %s" -msgstr "Zaproś przyjaciół do używania %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" +"pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" +"(http://status.net/). [Dołącz teraz](%%%%action.register%%%%), aby " +"obserwować wpisy użytkownika **%s** i wiele więcej! ([Przeczytaj więcej](%%%%" +"doc.help%%%%))" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/showstream.php:239 #, php-format -msgid "Friends already using %s:" -msgstr "Przyjaciele już używający %s:" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" +"pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" +"(http://status.net/). " + +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Ustawienia SMS" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/smssettings.php:69 #, php-format -msgid "Send invitations" -msgstr "Wyślij zaproszenia" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Można otrzymywać wiadomości SMS przez e-mail od %%site.name%%." -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Nie można usunąć użytkownika Facebook." +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Ta strona nie jest dostępna w " -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "Wystąpił problem podczas zapisywania preferencji synchronizacji!" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Obecnie potwierdzone numery telefonów z włączoną usługą SMS." -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Zapisano preferencje synchronizacji." +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Oczekiwanie na potwierdzenie tego numeru telefonu." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Automatycznie aktualizuj status na Facebook moimi wpisami." +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Kod potwierdzający" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Wyślij odpowiedzi \"@\" do Facebook." +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Podaj kod, który otrzymałeś na telefonie." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Przedrostek" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Numer telefonu SMS" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Tekst do poprzedzenia wpisów." +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "Jeśli chcesz, aby %s automatycznie aktualizowało " +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Wyślij mi wpisy przez SMS. Rozumiem, że mogę otrzymywać większe rachunki od " +"swojego operatora." -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Zsynchronizuj preferencje" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Brak numeru telefonu." -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Usuń wpis z ulubionych" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Nie wybrano operatora." -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Popularne wpisy" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Ten numer telefonu jest już Twój." -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Popularne wpisy, strona %d" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Ten numer telefonu należy już do innego użytkownika." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Najpopularniejsze wpisy na stronie w te chwili." +#: actions/smssettings.php:347 +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 "" +"Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź telefon, " +"czy otrzymałeś kod i instrukcje jak go użyć." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Znani użytkownicy" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "To jest błędny numer potwierdzenia." -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Znani użytkownicy, strona %d" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "To nie jest Twój numer telefonu." -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Wybór znanych użytkowników na %s" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Operator komórkowy" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Ten użytkownik zablokował Cię z subskrypcji." +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Wybierz operatora" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Brak identyfikatora" +#: actions/smssettings.php:476 +#, php-format +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 "" +"Operator komórkowy Twojego telefonu. Jeśli znasz operatora, który akceptuje " +"wiadomości SMS przez e-mail, a nie znajduje się na liście, wyślij wiadomość " +"e-mail na %s (w języku angielskim), aby nam o tym powiedzieć." -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Logo grupy" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Nie podano kodu" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Można wysłać obraz logo dla grupy." +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Nie jesteś zasubskrybowany do tego profilu." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Zaktualizowano logo." +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Nie można zapisać subskrypcji." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Zaktualizowanie logo nie powiodło się." +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Nie jest lokalnym użytkownikiem." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "Członkowie grupy %s" +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Zasubskrybowano" -#: actions/groupmembers.php:96 +#: actions/subscribers.php:50 #, php-format -msgid "%s group members, page %d" -msgstr "Członkowie grupy %s, strona %d" +msgid "%s subscribers" +msgstr "Subskrybenci użytkownika %s" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Lista użytkowników znajdujących się w tej grupie." +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "Subskrybenci użytkownika %s, strona %d" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Grupy" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Osoby obserwujący Twoje wpisy." -#: actions/groups.php:64 +#: actions/subscribers.php:67 #, php-format -msgid "Groups, page %d" -msgstr "Grupy, strona %d" +msgid "These are the people who listen to %s's notices." +msgstr "Osoby obserwujące wpisy użytkownika %s." -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "Grupy %%%%site.name%%%% pozwalają na szukanie i rozmawianie z " +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" +"Nie masz żadnych subskrybentów. Spróbuj zasubskrybować osoby, które znasz, a " +"oni mogą się odwdzięczyć" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Utwórz nową grupę" +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "Użytkownik %s nie posiada subskrybentów. Chcesz być pierwszym?" -#: actions/groupsearch.php:57 +#: actions/subscribers.php:114 #, php-format msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Znajdź grupy na %%site.name%% według ich nazw, położenia lub opisu. " +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" +"Użytkownik %s nie posiada subskrybentów. Dlaczego nie [zarejestrujesz konta]" +"(%%%%action.register%%%%) i zostaniesz pierwszym?" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Znajdź grupę" +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "Subskrypcje użytkownika %s" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "Można wysyłać i otrzymywać wpisy przez " +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "Subskrypcje użytkownika %s, strona %d" + +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Osoby, których wpisy obserwujesz." -#: actions/imsettings.php:120 +#: actions/subscriptions.php:69 #, php-format -msgid "Jabber or GTalk address, " -msgstr "adres Jabbera lub GTalk, " +msgid "These are the people whose notices %s listens to." +msgstr "Osoby, których wpisy obserwuje użytkownik %s." -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Wyślij mi odpowiedzi przez Jabbera/GTalk " +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" +"Nie obserwujesz teraz wpisów innych użytkowników. Spróbuj zasubskrybować " +"osoby, które znasz. Spróbuj [znaleźć kogoś](%%action.peoplesearch%%), " +"poszukać członków grup, które Cię interesują, a także [znanych użytkowników]" +"(%%action.featured%%). Jeśli jesteś [użytkownikiem Twittera](%%action." +"twittersettings%%), możesz automatycznie zasubskrybowć osoby, które tam już " +"obserwujesz." -#: actions/imsettings.php:321 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, php-format -msgid "A confirmation code was sent " -msgstr "Kod potwierdzający został wysłany " +msgid "%s is not listening to anyone." +msgstr "Użytkownik %s nie obserwuje nikogo." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "Musisz być zalogowany, aby dołączyć do grupy." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Jesteś już członkiem tej grupy" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Nie można dołączyć użytkownika %s do grupy %s" +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Nie zalogowano" + +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Brak parametru identyfikatora." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/tagother.php:65 #, php-format -msgid "%s joined group %s" -msgstr "Użytkownik %s dołączył do grupy %s" +msgid "Tag %s" +msgstr "Znacznik %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Skrzynki odbiorcze dla grup muszą być włączone, aby działały." +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Profil użytkownika" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "Musisz być zalogowany, aby opuścić grupę." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Zdjęcie" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Nie ma takiej grupy." +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Znacznik użytkownika" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "Nie jesteś członkiem tej grupy." +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " +"przecinkami lub spacjami" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "Nie możesz opuścić grupy, kiedy jesteś jej administratorem." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy " +"subskrybują Ciebie." -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Nie można znaleźć wpisu członkostwa." +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Nie można zapisać znaczników." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "Nie można usunąć użytkownika %s z grupy %s" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/tag.php:68 #, php-format -msgid "%s left group %s" -msgstr "Użytkownik %s opuścił grupę %s" +msgid "Notices tagged with %s, page %d" +msgstr "Wpisy ze znacznikiem %s, strona %d" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Zaloguj się na stronie" +#: actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Brak obecnego statusu" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Nowa grupa" +#: actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Kanał wpisów dla znacznika %s (Atom)" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Użyj tego formularza, aby utworzyć nową grupę." +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Nie ma takiego znacznika." -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Nie można utworzyć grupy." +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Metoda API jest w trakcie tworzenia." -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Nie można ustawić członkostwa w grupie." +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Brak identyfikatora profilu w żądaniu." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Wiadomość jest za długa. " +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Brak profilu z tym identyfikatorem." -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Nie wysyłaj wiadomości do siebie; " +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Zrezygnowano z subskrypcji" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Wysłano wpis" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Błąd AJAX" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Upoważnij subskrypcję" -#: actions/nudge.php:85 +#: actions/userauthorization.php:110 +#, fuzzy msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -"Ten użytkownik nie pozwala na szturchnięcia lub nie potwierdził lub nie " -"ustawił jeszcze swojego adresu e-mail." +"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " +"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " +"naciśnij \"Odrzuć\"." -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Wysłano szturchnięcie" +#: actions/userauthorization.php:188 +msgid "License" +msgstr "Licencja" -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Wysłano szturchnięcie!" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Zaakceptuj" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "Login OpenID" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Zasubskrybuj tego użytkownika" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Usuwanie jedynego identyfikatora OpenID " +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Odrzuć" -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Inne ustawienia" +#: actions/userauthorization.php:212 +msgid "Reject this subscription" +msgstr "Odrzuć tę subskrypcję" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Zarządzaj różnymi innymi opcjami." +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Brak żądania upoważnienia!" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Automatyczne skracanie adresów URL" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Upoważniono subskrypcję" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Usługa" +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Używana automatyczna usługa skracania." +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Odrzucono subskrypcję" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Adres URL usługi skracania jest za długi (maksymalnie 50 znaków)." +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Zmień hasło." +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Zmiana hasła" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/userauthorization.php:307 #, php-format -msgid "Not a valid people tag: %s" -msgstr "Nieprawidłowy znacznik osób: %s" +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/userauthorization.php:322 #, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Użytkownicy używający znacznika %s - strona %d" +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" -#: actions/peopletag.php:91 +#: actions/userauthorization.php:338 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "To są użytkownicy którzy nadali sobie znacznik \"%s\" " +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Informacje o profilu" +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Nie można odczytać adresu URL awatara \"%s\"" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Błędny typ obrazu dla \"%s\"" + +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Brak identyfikatora." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "Wygląd profilu" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -"Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " -"spacjami" +"Dostosuj wygląd profilu za pomocą wybranego obrazu tła i palety kolorów." -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Automatycznie zasubskrybuj do każdego " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "Smacznego hot-doga!" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/usergroups.php:64 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Nieprawidłowy znacznik: \"%s\"" +msgid "%s groups, page %d" +msgstr "Grupy %s, strona %d" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Nie można zapisać znaczników." +#: actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "Znajdź więcej grup" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/usergroups.php:153 #, php-format -msgid "Public timeline, page %d" -msgstr "Publiczna oś czasu, strona %d" +msgid "%s is not a member of any group." +msgstr "Użytkownik %s nie jest członkiem żadnej grupy." -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Nie można pobrać publicznego strumienia." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich." -#: actions/public.php:220 +#: classes/File.php:137 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" -"Mikroblog) " - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Publiczna chmura znaczników" +"Żaden plik nie może być większy niż %d bajty, a wysłany plik miał %d bajty. " +"Spróbuj wysłać mniejszą wersję." -#: actions/publictagcloud.php:63 +#: classes/File.php:147 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "To są najpopularniejsze ostatnie znaczniki na %s " +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" +"Plik tej wielkości przekroczyłby przydział użytkownika wynoszący %d bajty." -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Chmura znaczników" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" +"Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %" +"d bajty." -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Przepraszamy, tylko zaproszone osoby mogą się rejestrować." +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Nie można wprowadzić wiadomości." -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "Nie możesz się zarejestrować, jeśli nie " +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Za pomocą tego formularza można utworzyć " +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Błąd bazy danych podczas wprowadzania znacznika hasha: %s" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 małe litery lub liczby, " +#: classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "Problem podczas zapisywania wpisu. Za długi." -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Używane tylko do aktualizacji, ogłoszeń, " +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "Adres URL strony domowej, bloga, " +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Za dużo wpisów w za krótkim czasie, weź głęboki oddech i wyślij ponownie za " +"kilka minut." -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Opisz się i swoje " +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " +"wyślij ponownie za kilka minut." -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Gdzie jesteś, np. \"miasto, " +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Zabroniono Ci wysyłania wpisów na tej stronie." -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " poza tymi prywatnymi danymi: hasło, " +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Problem podczas zapisywania wpisu." -#: actions/register.php:471 +#: classes/Notice.php:1120 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Gratulacje, %s! Witaj na %%%%site.name%%%%. " - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(Powinieneś otrzymać wiadomość przez e-mail " - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "To jest profil lokalny! Zaloguj się, aby zasubskrybować." +msgid "DB error inserting reply: %s" +msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: classes/User.php:333 #, php-format -msgid "Replies to %s, page %d" -msgstr "Odpowiedzi na %s, strona %d" +msgid "Welcome to %1$s, @%2$s!" +msgstr "Witaj w %1$s, @%2$s!" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "Ulubione wpisy użytkownika %s, strona %d" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "Grupa %s" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Zmień ustawienia profilu" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "Grupa %s, strona %d" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Wyślij awatar" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Profil grupy" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Zmień hasło" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "Adres URL" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Zmień obsługę adresu e-mail" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Wpis" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "Wygląd" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Działania grupy" +#: lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "Wygląd profilu" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "Kanał wpisów dla grupy %s" - -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Członkowie" - -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(Brak)" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Inne" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Wszyscy członkowie" +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Inne opcje" -#: actions/showgroup.php:378 +#: lib/action.php:144 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Tylko nadawca i odbiorca " +msgid "%s - %s" +msgstr "%s - %s" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, strona %d" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Strona bez nazwy" -#: actions/showstream.php:143 -msgid "'s profile" -msgstr " - profil" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Główna nawigacja strony" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Profil użytkownika" +#: lib/action.php:430 +msgid "Home" +msgstr "Strona główna" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Zdjęcie" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Profil osobisty i oś czasu przyjaciół" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Działania użytkownika" +#: lib/action.php:432 +msgid "Account" +msgstr "Konto" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Zmień adres e-mail, awatar, hasło, profil" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Wiadomość" +#: lib/action.php:435 +msgid "Connect" +msgstr "Połącz" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Wszyscy subskrybenci" +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Nie można przekierować do serwera: %s" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Wszystkie grupy" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Zaproś" -#: actions/showstream.php:542 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" -"pl.wikipedia.org/wiki/Mikroblog) " - -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Numer telefonu, bez znaków przestankowych i spacji, " +msgid "Invite friends and colleagues to join you on %s" +msgstr "Zaproś przyjaciół i kolegów do dołączenia do Ciebie na %s" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Wyślij mi wpisy przez SMS; " +#: lib/action.php:445 +msgid "Logout" +msgstr "Wyloguj się" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Kod potwierdzający został wysłany na dodany numer telefonu. " +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Wyloguj się ze strony" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Operator komórkowy" +#: lib/action.php:450 +msgid "Create an account" +msgstr "Utwórz konto" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Nie jesteś zasubskrybowany do tego profilu." +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Zaloguj się na stronę" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Nie można zapisać subskrypcji." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Pomoc" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Nie jest lokalnym użytkownikiem." +#: lib/action.php:456 +msgid "Help me!" +msgstr "Pomóż mi!" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Zasubskrybowano" +#: lib/action.php:459 +msgid "Search" +msgstr "Znajdź" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "Subskrybenci użytkownika %s" +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Znajdź osoby lub tekst" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "Subskrybenci użytkownika %s, strona %d" +#: lib/action.php:480 +msgid "Site notice" +msgstr "Wpis strony" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Osoby obserwujące " +#: lib/action.php:546 +msgid "Local views" +msgstr "Lokalne widoki" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Osoby, które " +#: lib/action.php:612 +msgid "Page notice" +msgstr "Wpis strony" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "Subskrypcje użytkownika %s" +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Druga nawigacja strony" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "Subskrypcje użytkownika %s, strona %d" +#: lib/action.php:721 +msgid "About" +msgstr "O usłudze" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Osoby, których wpisy " +#: lib/action.php:723 +msgid "FAQ" +msgstr "FAQ" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "Osoby, których " +#: lib/action.php:727 +msgid "TOS" +msgstr "TOS" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Prywatność" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Wpisy ze znacznikiem %s, strona %d" +#: lib/action.php:732 +msgid "Source" +msgstr "Kod źródłowy" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Wiadomości ze znacznikiem \"%s\", najpierw najnowsze" +#: lib/action.php:734 +msgid "Contact" +msgstr "Kontakt" -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Nie zalogowano" +#: lib/action.php:736 +msgid "Badge" +msgstr "Odznaka" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Brak parametru identyfikatora." +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Licencja oprogramowania StatusNet" -#: actions/tagother.php:65 +#: lib/action.php:767 #, php-format -msgid "Tag %s" -msgstr "Znacznik %s" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Znacznik użytkownika" - -#: actions/tagother.php:149 actions/tagother.php:151 msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " -"przecinkami lub spacjami" +"**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." +"broughtby%%](%%site.broughtbyurl%%). " -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Wystąpił problem z tokenem sesji." +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** jest usługą mikroblogowania. " -#: actions/tagother.php:191 actions/tagother.php:193 +#: lib/action.php:771 +#, php-format msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy " -"subskrybują Ciebie." +"Działa pod kontrolą oprogramowania do mikroblogowania [StatusNet](http://" +"status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " +"Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Nie można zapisać znaczników." +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licencja oprogramowania StatusNet" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." +#: lib/action.php:794 +msgid "All " +msgstr "Wszystko " -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Nie ma takiego znacznika." +#: lib/action.php:799 +msgid "license." +msgstr "licencja." -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Mikroblogi ze znacznikiem %s" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Paginacja" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Zablokowanie użytkownika nie powiodło się." +#: lib/action.php:1062 +msgid "After" +msgstr "Następne" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Odblokowanie użytkownika nie powiodło się." +#: lib/action.php:1070 +msgid "Before" +msgstr "Wcześniej" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nie znaleziono." +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Wystąpił problem z tokenem sesji." -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Dodaj konto Twittera, aby automatycznie wysyłać " +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "Załączniki" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Nazwa użytkownika Twittera" +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "Autor" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Hasło Twittera" +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "Dostawca" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Przyjaciele z Twittera" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "Powiadamia, kiedy pojawia się ten załącznik" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Nazwa użytkownika może zawierać tylko liczby, " +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "Znaczniki dla tego załącznika" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "Nie można pobrać informacji o koncie " +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Wyniki polecenia" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Błąd podczas usuwania blokady." +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Zakończono polecenie" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Brak identyfikatora profilu w żądaniu." +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Polecenie nie powiodło się" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Brak profilu z tym identyfikatorem." - -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Zrezygnowano z subskrypcji" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Przepraszamy, te polecenie nie zostało jeszcze zaimplementowane." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "Grupy %s" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail." -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "Grupy %s, strona %d" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Wysłano szturchnięcie" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: lib/command.php:126 +#, php-format msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -"Za dużo wpisów w za krótkim czasie, weź głęboki oddech i wyślij ponownie za " -"kilka minut." +"Subskrypcje: %1$s\n" +"Subskrybenci: %2$s\n" +"Wpisy: %3$s" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Zabroniono Ci wysyłania wpisów na tej stronie." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Wyślij awatar" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Użytkownik nie posiada ostatniego wpisu" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Inne" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Zaznaczono wpis jako ulubiony." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Inne opcje" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/command.php:318 #, php-format -msgid "%s - %s" -msgstr "%s - %s" +msgid "Fullname: %s" +msgstr "Imię i nazwisko: %s" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Strona bez nazwy" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Położenie: %s" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Główna nawigacja strony" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Strona domowa: %s" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Profil osobisty i oś czasu przyjaciół" +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "O mnie: %s" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Znajdź osoby lub tekst" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Konto" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Zmień adres e-mail, awatar, hasło, profil" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Połącz z komunikatorem, SMS, Twitterem" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Odpowiedz na ten wpis" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Wyloguj się ze strony" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problem podczas zapisywania wpisu." -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Zaloguj się na stronę" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Podaj nazwę użytkownika do zasubskrybowania" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Utwórz konto" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Zasubskrybowano użytkownika %s" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Zaloguj się za pomocą OpenID" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Pomóż mi!" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Usunięto subskrypcję użytkownika %s" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Wpis strony" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Nie zaimplementowano polecenia." -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Lokalne widoki" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Wyłączono powiadomienia." -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "Wpis strony" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Nie można wyłączyć powiadomień." -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Druga nawigacja strony" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Włączono powiadomienia." -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Licencja oprogramowania StatusNet" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Nie można włączyć powiadomień." -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Wszystko " +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Nie można utworzyć formularza OpenID: %s" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "licencja." +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Zablokuj tego użytkownika" +#: lib/command.php:613 +#, fuzzy +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Polecenia:\n" +"on - włącza powiadomienia\n" +"off - wyłącza powiadomienia\n" +"help - wyświetla tę pomoc\n" +"follow - subskrybuje użytkownika\n" +"leave - rezygnuje z subskrypcji użytkownika\n" +"d - bezpośrednia wiadomość do użytkownika\n" +"get - uzyskuje ostatni wpis użytkownika\n" +"whois - uzyskuje informacje o profilu użytkownika\n" +"fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" +"stats - uzyskuje Twoje statystyki\n" +"stop - to samo co \"off\"\n" +"quit - to samo co \"off\"\n" +"sub - to samo co \"follow\"\n" +"unsub - to samo co \"leave\"\n" +"last - to samo co \"get\"\n" +"on - jeszcze nie zaimplementowano.\n" +"off - jeszcze nie zaimplementowano.\n" +"nudge - jeszcze nie zaimplementowano.\n" +"invite - jeszcze nie zaimplementowano.\n" +"track - jeszcze nie zaimplementowano.\n" +"untrack - jeszcze nie zaimplementowano.\n" +"track off - jeszcze nie zaimplementowano.\n" +"untrack all - jeszcze nie zaimplementowano.\n" +"tracks - jeszcze nie zaimplementowano.\n" +"tracking - jeszcze nie zaimplementowano.\n" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Zablokuj" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Brak kodu potwierdzającego." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Usuń ten wpis z ulubionych" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Aby używać aplikacji Facebook %s, musisz się zalogować " +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " nowe konto." +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Zaloguj się na stronę" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Opublikowano" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "Komunikator" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Dodaj ten wpis do ulubionych" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Aktualizacje przez komunikator" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Wyeksportuj dane" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Aktualizacje przez wiadomości SMS" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Filtruj znaczniki" +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "Błąd bazy danych" -#: lib/galleryaction.php:131 -msgid "All" +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "Zmień obraz tłas" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "Wyślij plik" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "Można wysłać swój osobisty obraz. Maksymalny rozmiar pliku to 2 MB." + +#: lib/designsettings.php:139 +msgid "On" +msgstr "Włączone" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "Wyłączone" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "Włącz lub wyłącz obraz tła." + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "Kafelkowy obraz tła" + +#: lib/designsettings.php:170 +msgid "Change colours" +msgstr "Zmień kolory" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "Tło" + +#: lib/designsettings.php:191 +msgid "Content" +msgstr "Zawartość" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Panel boczny" + +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Tekst" + +#: lib/designsettings.php:230 +msgid "Links" +msgstr "Odnośniki" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "Użyj domyślnych" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "Przywróć domyślny wygląd" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "Przywróć domyślne ustawienia" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "Zapisz wygląd" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "Błędne domyślne ustawienia koloru: " + +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "Przywrócono domyślny wygląd." + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Usuń ten wpis z ulubionych" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Dodaj ten wpis do ulubionych" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Dodaj do ulubionych" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Wyeksportuj dane" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "RSS 1.0" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "RSS 2.0" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "Atom" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "FOAF" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Filtruj znaczniki" + +#: lib/galleryaction.php:131 +msgid "All" msgstr "Wszystko" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Wybierz operatora" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Znacznik" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Wybierz znacznik do ograniczonej listy" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" msgstr "Przejdź" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Adres URL strony domowej lub bloga grupy, albo temat" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Opisz grupę lub temat w 140 znakach" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Opisz grupę lub temat w 140 znakach" + #: lib/groupeditform.php:172 msgid "Description" msgstr "Opis" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Opisz grupę lub temat w 140 znakach" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -5355,28 +4045,45 @@ msgstr "" "Położenie grupy, jeśli istnieje, np. \"miasto, województwo (lub region), kraj" "\"" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" +"Dodatkowe pseudonimy grupy, oddzielone przecinkami lub spacjami, maksymalnie " +"%d" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Grupa" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Administrator" +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "Zablokowano" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "%s zablokowani użytkownicy" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Edytuj właściwości grupy %s" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Dodaj lub edytuj logo grupy %s" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "Dodaj lub edytuj wygląd %s" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupy z największą liczbą członków" @@ -5391,8 +4098,42 @@ msgid "Tags in %s group's notices" msgstr "Znaczniki we wpisach grupy %s" #: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "Ta strona nie jest dostępna w " +msgid "This page is not available in a media type you accept" +msgstr "Ta strona jest niedostępna dla akceptowanego typu medium" + +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Ten plik jest za duży. Maksymalny rozmiar pliku to %d." + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Częściowo wysłano." + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Błąd systemu podczas wysyłania pliku." + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "To nie jest obraz lub lub plik jest uszkodzony." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Nieobsługiwany format pliku obrazu." + +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Utracono plik." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Nieznany typ pliku" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Brak identyfikatora wpisu" #: lib/joinform.php:114 msgid "Join" @@ -5402,43 +4143,107 @@ msgstr "Dołącz" msgid "Leave" msgstr "Opuść" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Załóż nowe konto" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Zaloguj się lub zarejestruj za pomocą OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Tylko użytkownik może czytać swoje skrzynki pocztowe." + +#: lib/mailbox.php:139 +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 "" +"Brak prywatnych wiadomości. Można wysłać prywatną wiadomość, aby nawiązać " +"rozmowę z innymi użytkownikami. Inni mogą wysyłać Ci wiadomości tylko dla " +"Twoich oczu." + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " z " -#: lib/mail.php:175 +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Potwierdzenie adresu e-mail" + +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" "Cześć, %s.\n" "\n" +"Ktoś właśnie podał ten adres e-mail na %s.\n" +"\n" +"Jeśli to byłeś Ty, i chcesz potwierdzić swoje wejście, użyj poniższego " +"adresu URL:\n" +"\n" +"\t%s\n" +"\n" +"Jeśli to nie ty, po prostu zignoruj tę wiadomość.\n" +"\n" +"Dziękujemy za Twój czas, \n" +"%s\n" + +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s." -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format -msgid "%1$s is now listening to " -msgstr "%1$s obserwuje teraz " +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Z poważaniem,\n" +"%7$s.\n" +"\n" +"----\n" +"Zmień adres e-mail lub opcje powiadamiania na %8$s\n" -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Położenie: %s\n" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Strona domowa: %s\n" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -5447,65 +4252,243 @@ msgstr "" "O mnie: %s\n" "\n" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 #, php-format -msgid "You've been nudged by %s" -msgstr "Zostałeś szturchnięty przez %s" +msgid "New email address for posting to %s" +msgstr "Nowy adres e-mail do wysyłania do %s" + +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Posiadasz nowy adres wysyłania na %1$s.\n" +"\n" +"Wyślij wiadomość e-mail na %2$s, aby wysłać nowe wpisy.\n" +"\n" +"Więcej instrukcji dotyczących poczty e-mail można znaleźć na %3$s.\n" +"\n" +"Z poważaniem,\n" +"%4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "Status użytkownika %s" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Potwierdzenie SMS" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "Zostałeś szturchnięty przez %s" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Nowa prywatna wiadomość od użytkownika %s" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" +"\n" +"Adres URL Twojego wpisu:\n" +"\n" +"%3$s\n" +"\n" +"Tekst Twojego wpisu:\n" +"\n" +"%4$s\n" +"\n" +"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" +"\n" +"%5$s\n" +"\n" +"Z poważaniem,\n" +"%6$s\n" -#: lib/mail.php:465 +#: lib/mail.php:611 +#, fuzzy, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" + +#: lib/mail.php:613 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) zastanawia się, co zamierzasz " +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "Wystąpił błąd bazy danych podczas zapisywania pliku. Spróbuj ponownie." + +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini." + +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" +"Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." + +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "Plik został tylko częściowo wysłany." + +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "Brak folderu tymczasowego." + +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "Zapisanie pliku na dysku nie powiodło się." + +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "Wysłanie pliku zostało zatrzymane przez rozszerzenie." + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "Nie można przenieść pliku do katalogu docelowego." + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Nie można określić użytkownika źródłowego." -#: lib/mail.php:555 +#: lib/mediafile.php:270 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s właśnie dodał Twój wpis z %2$s" +msgid " Try using another %s format." +msgstr " Spróbuj innego formatu %s." -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Od" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "%s nie jest obsługiwanym typem pliku na tym serwerze." -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +#: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Wyślij bezpośredni wpis" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Wyślij wpis" +#: lib/messageform.php:146 +msgid "To" +msgstr "Do" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 +#: lib/messageform.php:162 lib/noticeform.php:173 msgid "Available characters" msgstr "Dostępne znaki" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "w odpowiedzi na" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Wyślij wpis" + +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Co słychać, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "Załącz" + +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "Załącz plik" + +#: lib/noticelist.php:478 +msgid "in context" +msgstr "w rozmowie" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 msgid "Reply" msgstr "Odpowiedz" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Usuń ten wpis" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Usuń" - #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "Szturchnij tego użytkownika" @@ -5518,78 +4501,200 @@ msgstr "Szturchnij" msgid "Send a nudge to this user" msgstr "Wyślij szturchnięcie do tego użytkownika" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "Znaczniki we wpisach użytkownika %s" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Błąd podczas wprowadzania nowego profilu" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(brak)" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Błąd podczas wprowadzania awatara" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Publiczny" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Błąd podczas wprowadzania zdalnego profilu" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Grupy użytkowników" +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Usuń wpis" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Ostatnie znaczniki" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Nie można wprowadzić nowej subskrypcji." -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Znane" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Osobiste" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Popularne" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Odpowiedzi" -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Wpis" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Ulubione" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Znajdź grupy na tej stronie" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Użytkownik" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Sekcja bez nazwy" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Odebrane" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Wiadomości przychodzące" + +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Wysłane" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Wysłane wiadomości" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Znaczniki we wpisach użytkownika %s" + +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Subskrypcje" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Wszystkie subskrypcje" + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Subskrybenci" + +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Wszyscy subskrybenci" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "Identyfikator użytkownika" + +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Członek od" + +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Wszystkie grupy" + +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Publiczny" + +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Grupy użytkowników" + +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Ostatnie znaczniki" + +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Znane" + +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Popularne" + +#: lib/searchaction.php:120 +msgid "Search site" +msgstr "Znajdź stronę" + +#: lib/searchaction.php:162 +msgid "Search help" +msgstr "Znajdź w pomocy" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Osoby" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Znajdź osoby na tej stronie" + +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Wpis" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Przeszukaj zawartość wpisów" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Znajdź grupy na tej stronie" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Sekcja bez nazwy" + +#: lib/section.php:106 +msgid "More..." +msgstr "Więcej..." + +#: lib/subgroupnav.php:83 +#, php-format msgid "People %s subscribes to" msgstr "Osoby %s zasubskrybowane do" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Osoby zasubskrybowane do %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Grupy %s są członkiem" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Zaproś przyjaciół i kolegów do dołączenia do Ciebie na %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "Chmura znaczników osób, które same sobie nadały znaczniki" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "Chmura znaczników osób ze znacznikami" + +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(brak)" + +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/subs.php:53 lib/subs.php:52 +#: lib/subs.php:52 msgid "User has blocked you." msgstr "Użytkownik zablokował Cię." -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Zasubskrybuj tego użytkownika" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Nie można zasubskrybować." + +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Nie można zasubskrybować innych do Ciebie." + +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Nie zasubskrybowane!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Nie można usunąć subskrypcji." #: lib/tagcloudsection.php:56 msgid "None" @@ -5599,2412 +4704,106 @@ msgstr "Brak" msgid "Top posters" msgstr "Najczęściej wysyłający wpisy" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Odblokuj tego użytkownika" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Odblokuj" - #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Zrezygnuj z subskrypcji tego użytkownika" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Kanał dla znajomych użytkownika %s (Atom)" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Zrezygnuj z subskrypcji" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -msgid "You and friends" -msgstr "Ty i przyjaciele" +#: lib/userprofile.php:116 +msgid "Edit Avatar" +msgstr "Edytuj awatar" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Można wysłać swój osobisty awatar. Maksymalny rozmiar pliku to %s." +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Działania użytkownika" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -msgid "Avatar deleted." -msgstr "Usunięto awatar." +#: lib/userprofile.php:248 +msgid "Edit profile settings" +msgstr "Edytuj ustawienia profilu" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" -"Jesteś pewny, że chcesz zablokować tego użytkownika. Po tym jego subskrypcja " -"do Ciebie zostanie usunięta, nie będzie mógł Cię zasubskrybować w " -"przyszłości i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." +#: lib/userprofile.php:249 +msgid "Edit" +msgstr "Edytuj" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, to już się nie " -"odstanie." +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Wiadomość" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi odpowiedź \"@\"." +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "kilka sekund temu" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" -"Jeśli chcesz, aby aplikacja %s automatycznie aktualizowała status na " -"Facebook najnowszym wpisem, musisz dać jej pozwolenie." +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "około minutę temu" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: lib/util.php:848 #, php-format -msgid "Okay, do it!" -msgstr "OK, zrób to!" +msgid "about %d minutes ago" +msgstr "około %d minut temu" -#: actions/facebooksettings.php:124 -#, 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 "" -"Jeśli chcesz, aby %s automatycznie aktualizowało status na Facebook " -"najnowszym wpisem, musisz dać mu pozwolenie." +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "około godzinę temu" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: lib/util.php:852 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." +msgid "about %d hours ago" +msgstr "około %d godzin temu" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "Wybierz kwadratowy obszar obrazu, który będzie logo." +#: lib/util.php:854 +msgid "about a day ago" +msgstr "blisko dzień temu" -#: actions/grouprss.php:136 actions/grouprss.php:137 +#: lib/util.php:856 #, php-format -msgid "Microblog by %s group" -msgstr "Mikroblog grupy %s" +msgid "about %d days ago" +msgstr "około %d dni temu" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -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 "" -"Znajdź grupy na %%site.name%% według ich nazwy, położenia lub opisu. Oddziel " -"terminy spacjami; muszą mieć trzy znaki lub więcej." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "około miesiąc temu" -#: actions/groups.php:90 +#: lib/util.php:860 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" -"Grupy %%%%site.name%%%% umożliwiają znalezienie i rozmawianie z osobami o " -"podobnych zainteresowaniach. Po dołączeniu do grupy można wysyłać wiadomości " -"do wszystkich członków używając składni \"!nazwagrupy\". Nie widzisz grupy, " -"która Cię interesuje? Spróbuj ją [znaleźć](%%%%action.groupsearch%%%%) lub " -"[założyć własną!](%%%%action.newgroup%%%%)" +msgid "about %d months ago" +msgstr "około %d miesięcy temu" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "Tylko zalogowani użytkownicy mogą wysyłać bezpośrednie wiadomości." +#: lib/util.php:862 +msgid "about a year ago" +msgstr "około rok temu" -#: actions/noticesearch.php:91 +#: lib/webcolor.php:82 #, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Wyniki wyszukiwania dla \"%s\" na %s" +msgid "%s is not a valid color!" +msgstr "%s nie jest prawidłowym kolorem!" -#: actions/openidlogin.php:66 +#: lib/webcolor.php:123 #, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -"Z powodów bezpieczeństwa przed zmienianiem ustawień zaloguj się ponownie za " -"pomocą identyfikatora [OpenID](%%doc.openid%%)." +"%s nie jest prawidłowym kolorem! Użyj trzech lub sześciu znaków " +"szesnastkowych." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Kanał publicznego strumienia (RSS 1.0)" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Nie można przeanalizować wiadomości." -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Kanał publicznego strumienia (RSS 2.0)" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "To nie jest zarejestrowany użytkownik." -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -msgid "Public Stream Feed (Atom)" -msgstr "Kanał publicznego strumienia (Atom)" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Przepraszamy, to nie jest twój przychodzący adres e-mail." -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" -"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" -"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/). " -"[Dołącz teraz](%%action.register%%), aby dzielić się wpisami o sobie z " -"przyjaciółmi, rodziną i kolegami! ([Przeczytaj więcej](%%doc.help%%))" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" -"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " -"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " -"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." -"openidlogin%%)!)" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Uznanie Autorstwa 3.0" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i " -"numer telefonu." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -msgid "Created" -msgstr "Utworzono" - -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " -"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. [Dołącz teraz](%%%%" -"action.register%%%%), aby stać się częścią tej grupy i wiele więcej! " -"([Przeczytaj więcej](%%%%doc.help%%%%))" - -#: actions/showstream.php:147 -msgid "Your profile" -msgstr "Twój profil" - -#: actions/showstream.php:149 -#, php-format -msgid "%s's profile" -msgstr "Profil użytkownika %s" - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Kanał wpisów dla %s (RSS 1.0)" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Kanał wpisów dla %s (RSS 2.0)" - -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Kanał wpisów dla %s (Atom)" - -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, php-format -msgid "FOAF for %s" -msgstr "FOAF dla %s" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -msgid "Edit Avatar" -msgstr "Edytuj awatar" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -msgid "Edit profile settings" -msgstr "Edytuj ustawienia profilu" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "Edytuj" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" -"pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" -"(http://status.net/). [Dołącz teraz](%%%%action.register%%%%), aby " -"obserwować wpisy użytkownika **%s** i wiele więcej! ([Przeczytaj więcej](%%%%" -"doc.help%%%%))" - -#: actions/smssettings.php:335 actions/smssettings.php:347 -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 "" -"Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź telefon, " -"czy otrzymałeś kod i instrukcje jak go użyć." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" -"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" -"\n" -"Jeśli go zapomniałeś, tutaj możesz zobaczyć tekst wpisu:\n" -"\n" -"%3$s\n" -"\n" -"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" -"\n" -"%4$s\n" -"\n" -"Z poważaniem,\n" -"%5$s\n" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -msgid "No such user!" -msgstr "Nie ma takiego użytkownika!" - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Dodaj konto Twittera, aby automatycznie wysyłać wpisy do Twittera i " -"zasubskrybować przyjaciół z Twittera, którzy już tu są." - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Nie można pobrać informacji o koncie dla \"%s\" z Twittera." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " -"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " -"naciśnij \"Odrzuć\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "Znajdź więcej grup" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " -"wyślij ponownie za kilka minut." - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "Połącz z SMS, Twitterem" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "Odznaka" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" -"Subskrypcje: %1$s\n" -"Subskrybenci: %2$s\n" -"Wpisy: %3$s" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "Błąd bazy danych" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, 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 "" -"Aby użyć aplikacji Facebook %s, musisz się zalogować za pomocą nazwy " -"użytkownika i hasła. Nie masz jeszcze nazwy użytkownika? " - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "RSS 1.0" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "RSS 2.0" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "Atom" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "FOAF" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "Ten plik jest za duży. Maksymalny rozmiar pliku to %d." - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" -"Cześć, %s.\n" -"\n" -"Ktoś właśnie podał ten adres e-mail na %s.\n" -"\n" -"Jeśli to byłeś Ty, i chcesz potwierdzić swoje wejście, użyj poniższego " -"adresu URL:\n" -"\n" -"\t%s\n" -"\n" -"Jeśli to nie ty, po prostu zignoruj tę wiadomość.\n" -"\n" -"Dziękujemy za Twój czas, \n" -"%s\n" - -#: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Z poważaniem,\n" -"%7$s.\n" -"\n" -"----\n" -"Zmień adres e-mail lub opcje powiadamiania na %8$s\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" -"Użytkownik %1$s (%2$s) zastanawia się, co się z Tobą dzieje w ostatnich " -"dniach i zaprasza Cię do wysłania jakichś aktualności.\n" -"\n" -"Tak więc do usłyszenia. :)\n" -"\n" -"%3$s\n" -"\n" -"Nie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n" -"\n" -"Z poważaniem,\n" -"%4$s\n" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" -"Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"Tutaj możesz na nią odpowiedzieć:\n" -"\n" -"%4$s\n" -"\n" -"Nie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n" -"\n" -"Z poważaniem,\n" -"%5$s\n" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" -"Użytkownik %1$s właśnie wysłał wpis wymagający Twojej uwagi (odpowiedź \"@" -"\") na %2$s.\n" -"\n" -"Twój wpis znajduje się tutaj:\n" -"\n" -"\t%3$s\n" -"\n" -"Zawiera tekst:\n" -"\n" -"\t%4$s\n" -"\n" -"Tutaj możesz odpowiedzieć:\n" -"\n" -"\t%5$s\n" -"\n" -"Lista wszystkich odpowiedzi \"@\" do Ciebie znajduje się tutaj:\n" -"\n" -"%6$s\n" -"\n" -"Z poważaniem,\n" -"%2$s\n" -"\n" -"PS Tutaj możesz wyłączyć te powiadomienia przez e-mail: %7$s\n" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "Znajdź stronę" - -#: lib/section.php:106 -msgid "More..." -msgstr "Więcej..." - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" -"To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " -"wysłał." - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" -"Spróbuj zasubskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) " -"lub wysłać coś samemu." - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" -"Możesz spróbować [szturchnąć użytkownika %s](../%s) z jego profilu lub " -"[wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?" -"status_textarea=%s)." - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wtedy " -"szturchniesz użytkownika %s lub wyślesz wpis wymagającego jego uwagi." - -#: actions/attachment.php:73 -msgid "No such attachment." -msgstr "Nie ma takiego załącznika." - -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "Nie blokuj tego użytkownika w tej grupie" - -#: actions/block.php:150 -msgid "Block this user from this group" -msgstr "Zablokuj tego użytkownika w tej grupie" - -#: actions/blockedfromgroup.php:90 -#, php-format -msgid "%s blocked profiles" -msgstr "%s zablokowane profile" - -#: actions/blockedfromgroup.php:93 -#, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s zablokowane profile, strona %d" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "Lista użytkowników zablokowanych w tej grupie." - -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" -msgstr "Odblokuj użytkownika w tej grupie" - -#: actions/conversation.php:99 -msgid "Conversation" -msgstr "Rozmowa" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -msgid "Do not delete this notice" -msgstr "Nie usuwaj tego wpisu" - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Za dużo aliasów! Maksymalnie %d." - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Nieprawidłowy alias: \"%s\"" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Alias \"%s\" jest już używany. Spróbuj innego." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "Alias nie może być taki sam jak pseudonim." - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -msgid "Could not create aliases." -msgstr "Nie można utworzyć aliasów." - -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" -"Ulubione wpisy są widoczne na tej stronie, ale nikt nie oznaczył jeszcze " -"żadnego jako ulubiony." - -#: 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 "" -"Bądź pierwszym, który doda wpis do ulubionych naciskając przycisk ulubionego " -"obok wpisu, który Ci się podoba." - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " -"pierwszym, który doda wpis do ulubionych!" - -#: actions/file.php:34 -msgid "No notice id" -msgstr "Brak identyfikatora wpisu" - -#: actions/file.php:38 -msgid "No notice" -msgstr "Brak wpisu" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "Brak załączników" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "Nie wysłano załączników" - -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "To nie jest prawidłowy kod zaproszenia." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "Nie podano grupy." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "Tylko administrator może blokować członków grupy." - -#: actions/groupblock.php:95 -msgid "User is already blocked from group." -msgstr "Użytkownik został już zablokował w grupie." - -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "Użytkownik nie jest członkiem grupy." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "Zablokuj użytkownika w grupie" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" -"Jesteś pewny, że chcesz zablokować użytkownika \"%s\" w grupie \"%s\"? " -"Zostanie usunięty z grupy, nie będzie mógł wysyłać wpisów i zasubskrybować " -"grupy w przyszłości." - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "Błąd bazy danych podczas blokowania użytkownika w grupie." - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "Musisz być zalogowany, aby zmodyfikować grupę." - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "Wygląd grupy" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety kolorów." - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -msgid "Couldn't update your design." -msgstr "Nie można zaktualizować wyglądu." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "Nie można zapisać ustawień wyglądu!" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." -msgstr "Zapisano preferencje wyglądu." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "Uczyń użytkownika administratorem grupy" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "Uczyń administratorem" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "Uczyń tego użytkownika administratorem" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "Brak wyników." - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" -"Jeśli nie możesz znaleźć grupy, której szukasz, możesz sam [ją utworzyć](%%" -"action.newgroup%%)." - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i sam [utworzysz " -"grupę](%%action.newgroup%%)!" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "Tylko administrator może odblokowywać członków grupy." - -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "Użytkownik nie został zablokowany w grupie." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "Zaproszenia zostały wyłączone." - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "Zostałeś zablokowany w tej grupie przez administratora." - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "Tylko administrator może uczynić innego użytkownika administratorem." - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "Użytkownika %s jest już administratorem grupy \"%s\"." - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "Nie można uzyskać wpisu członkostwa użytkownika %s w grupie %s" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "Nie można uczynić %s administratorem grupy %s" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "Wysłano wiadomość" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" -"Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej " -"konfiguracji." - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr " Spróbuj innego formatu %s." - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "%s nie jest obsługiwanym typem pliku na tym serwerze." - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini." - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" -"Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "Plik został tylko częściowo wysłany." - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "Brak folderu tymczasowego." - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "Zapisanie pliku na dysku nie powiodło się." - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "Wysłanie pliku zostało zatrzymane przez rozszerzenie." - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -msgid "Couldn't save file." -msgstr "Nie można zapisać pliku." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "W jakiś sposób zgubiono login w saveFile" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "Nie można przenieść pliku do katalogu docelowego." - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "Wystąpił błąd bazy danych podczas zapisywania pliku. Spróbuj ponownie." - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" -"Zostań pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i zostaniesz " -"pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" - -#: actions/openidsettings.php:70 -#, 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%%) umożliwia logowanie się do wielu stron za pomocą " -"tego samego konta użytkownika. Tu można zarządzać powiązanymi " -"identyfikatorami OpenID." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "Skracaj adresy URL za pomocą" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "Wyświetl ustawienia wyglądu profilu" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "Wyświetl lub ukryj ustawienia wyglądu profilu." - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "Poza ograniczeniem strony (%s)" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" -"To jest publiczna oś czasu dla %%site.name%%, ale nikt jeszcze nic nie " -"wysłał." - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "Zostań pierwszym, który coś wyśle!" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " -"pierwszym, który coś wyśle!" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" -"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)." - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" -"Nikt jeszcze nie wysłał wpisu za pomocą [znacznika hasha](%%doc.tags%%)." - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "Zostań pierwszym, który go wyśle!" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " -"pierwszym, który go wyśle!" - -#: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe, wysłane na " -"adres e-mail, który podałeś." - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Zostałeś zidentyfikowany. Podaj poniżej nowe hasło. " - -#: actions/recoverpassword.php:188 -msgid "Password recover" -msgstr "Przywrócenie hasła" - -#: actions/register.php:86 actions/register.php:92 -msgid "Sorry, invalid invitation code." -msgstr "Przepraszamy, nieprawidłowy kod zaproszenia." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" -msgstr "Zasubskrybuj zdalnego użytkownika" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" -"To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %s, ale %s " -"nie otrzymał jeszcze wpisów wymagających jego uwagi." - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" -"Możesz nawiązać rozmowę z innymi użytkownikami, zasubskrybować więcej osób " -"lub [dołączyć do grup](%%action.groups%%)." - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" -"Możesz spróbować [szturchnąć użytkownika %s](../%s) lub [wysłać coś " -"wymagającego jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." - -#: actions/showfavorites.php:79 -#, php-format -msgid "%s's favorite notices, page %d" -msgstr "Ulubione wpisy użytkownika %s, strona %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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 "" -"Nie wybrałeś jeszcze żadnych ulubionych wpisów. Naciśnij przycisk ulubionego " -"na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie " -"trochę światła." - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" -"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Wyślij coś " -"interesującego, aby chcieli dodać to do swoich ulubionych. :)" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" -"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " -"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " -"interesującego, aby chcieli dodać to do swoich ulubionych. :)" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "To jest sposób na współdzielenie tego, co chcesz." - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "Aliasy" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Kanał wpisów dla grupy %s (RSS 1.0)" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Kanał wpisów dla grupy %s (RSS 2.0)" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Kanał wpisów dla grupy %s (Atom)" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " -"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "Administratorzy" - -#: actions/shownotice.php:101 -msgid "Not a local notice" -msgstr "Nie jest lokalnym wpisem" - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr " ze znacznikiem %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Kanał wpisów dla %s ze znacznikiem %s (RSS 1.0)" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" -"To jest oś czasu dla użytkownika %s, ale %s nie nic jeszcze nie wysłał." - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" -"Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, " -"teraz jest dobry czas, aby zacząć. :)" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" -"Możesz spróbować szturchnąć użytkownika %s lub [wysłać coś, co wymaga jego " -"uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" -"pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" -"(http://status.net/). " - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" -"Nie masz żadnych subskrybentów. Spróbuj zasubskrybować osoby, które znasz, a " -"oni mogą się odwdzięczyć" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "Użytkownik %s nie posiada subskrybentów. Chcesz być pierwszym?" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" -"Użytkownik %s nie posiada subskrybentów. Dlaczego nie [zarejestrujesz konta]" -"(%%%%action.register%%%%) i zostaniesz pierwszym?" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" -"Nie obserwujesz teraz wpisów innych użytkowników. Spróbuj zasubskrybować " -"osoby, które znasz. Spróbuj [znaleźć kogoś](%%action.peoplesearch%%), " -"poszukać członków grup, które Cię interesują, a także [znanych użytkowników]" -"(%%action.featured%%). Jeśli jesteś [użytkownikiem Twittera](%%action." -"twittersettings%%), możesz automatycznie zasubskrybowć osoby, które tam już " -"obserwujesz." - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "Użytkownik %s nie obserwuje nikogo." - -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" - -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Kanał wpisów dla znacznika %s (Atom)" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "Ten status jest już ulubiony!" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "Ten status nie jest ulubiony!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -msgid "Could not determine source user." -msgstr "Nie można określić użytkownika źródłowego." - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "Nie podano użytkownika docelowego." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -msgid "Could not find target user." -msgstr "Nie można znaleźć użytkownika docelowego." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s/aktualizacje wspominające %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "Zaimportuj oś czasu przyjaciół." - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "Licencja" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -msgid "Reject this subscription" -msgstr "Odrzuć tę subskrypcję" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "Wygląd profilu" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Dostosuj wygląd profilu za pomocą wybranego obrazu tła i palety kolorów." - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "Smacznego hot-doga!" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "Użytkownik %s nie jest członkiem żadnej grupy." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich." - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" -"Żaden plik nie może być większy niż %d bajty, a wysłany plik miał %d bajty. " -"Spróbuj wysłać mniejszą wersję." - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" -"Plik tej wielkości przekroczyłby przydział użytkownika wynoszący %d bajty." - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" -"Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %" -"d bajty." - -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." -msgstr "Problem podczas zapisywania wpisu. Za długi." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Witaj w %1$s, @%2$s!" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "Wygląd" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -msgid "Design your profile" -msgstr "Wygląd profilu" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "TOS" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "Załączniki" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "Autor" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "Dostawca" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "Powiadamia, kiedy pojawia się ten załącznik" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "Znaczniki dla tego załącznika" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "Zmień obraz tłas" - -#: lib/designsettings.php:105 -msgid "Upload file" -msgstr "Wyślij plik" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "Można wysłać swój osobisty obraz. Maksymalny rozmiar pliku to 2 MB." - -#: lib/designsettings.php:139 -msgid "On" -msgstr "Włączone" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "Wyłączone" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "Włącz lub wyłącz obraz tła." - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "Kafelkowy obraz tła" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "Zmień kolory" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "Tło" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "Zawartość" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "Panel boczny" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "Odnośniki" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "Użyj domyślnych" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "Przywróć domyślny wygląd" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "Przywróć domyślne ustawienia" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "Zapisz wygląd" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "Błędne domyślne ustawienia koloru: " - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "Przywrócono domyślny wygląd." - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" -"Dodatkowe pseudonimy grupy, oddzielone przecinkami lub spacjami, maksymalnie " -"%d" - -#: lib/groupnav.php:100 -msgid "Blocked" -msgstr "Zablokowano" - -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" -msgstr "%s zablokowani użytkownicy" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "Dodaj lub edytuj wygląd %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" -"\n" -"Adres URL Twojego wpisu:\n" -"\n" -"%3$s\n" -"\n" -"Tekst Twojego wpisu:\n" -"\n" -"%4$s\n" -"\n" -"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" -"\n" -"%5$s\n" -"\n" -"Z poważaniem,\n" -"%6$s\n" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "Mostek Twittera został wyłączony." - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" -"Witaj, %1$s. Przykro nam poinformować, że Twój odnośnik do Twittera został " -"wyłączony. Albo zmieniłeś dane uwierzytelniające Twittera (zmieniałeś " -"ostatnio hasło?), albo w inny sposób zablokowałeś nam dostęp do swojego " -"konta.\n" -"\n" -"Można ponownie włączyć mostek Twittera odwiedzając stronę ustawień " -"Twittera:\n" -"\n" -"\t%2$s\n" -"\n" -"Z poważaniem,\n" -"%3$s\n" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "Dostęp do aplikacji Facebooka %s został wyłączony." - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" -"Witaj, %1$s. Przykro nam poinformować, że nie możemy zaktualizować Twojego " -"statusu Facebook z %s i wyłączyliśmy aplikację Facebooka dla Twojego konta. " -"Mogło to być spowodowane usunięciem przez Ciebie upoważnienia aplikacji " -"Facebook lub usunięciem Twojego konta Facebook. Można ponownie włączyć " -"aplikację Facebook i automatyczne aktualizowanie statusu przez ponowne " -"zainstalowanie aplikacji Facebooka %1$s.\n" -"\n" -"Z poważaniem,\n" -"\n" -"%1$s" - -#: lib/mailbox.php:139 -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 "" -"Brak prywatnych wiadomości. Można wysłać prywatną wiadomość, aby nawiązać " -"rozmowę z innymi użytkownikami. Inni mogą wysyłać Ci wiadomości tylko dla " -"Twoich oczu." - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "Załącz" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "Załącz plik" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "w rozmowie" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "Identyfikator użytkownika" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "Znajdź w pomocy" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "Chmura znaczników osób, które same sobie nadały znaczniki" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "Chmura znaczników osób ze znacznikami" - -#: lib/webcolor.php:82 -#, php-format -msgid "%s is not a valid color!" -msgstr "%s nie jest prawidłowym kolorem!" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" -"%s nie jest prawidłowym kolorem! Użyj trzech lub sześciu znaków " -"szesnastkowych." - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Nie ma takiego znacznika." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Bezpośrednia wiadomość do użytkownika %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "opis jest za długi (maksymalnie 140 znaków)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Jesteś już członkiem tej grupy" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Nie można dołączyć użytkownika %s do grupy %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Nie jesteś członkiem tej grupy." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Nie można usunąć użytkownika %s z grupy %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Grupy %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Grupy %s są członkiem" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Działania grupy" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Usunięto awatar." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Wpis jest za długi. Maksymalna długość to 140 znaków." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, fuzzy, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Nieobsługiwany format pliku obrazu." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Zdjęcie" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "opis jest za długi (maksymalnie 140 znaków)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Aktualizacje od %1$s na %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Obserwowany użytkownik nie istnieje." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Brak upoważnienia." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Nieznana wersja protokołu OMB." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Nie ma takiego wpisu." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Utracono plik." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Aktualizacje od %1$s na %2$s!" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Ta strona nie jest dostępna w " - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " -"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." -"openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Zawartość" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Opisz się i swoje zainteresowania w 140 znakach" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Opisz się i swoje " - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." - -#: actions/register.php:336 actions/register.php:342 -#, fuzzy -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" -"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " -"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " -"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." -"openidlogin%%)!)" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "To jest profil lokalny! Zaloguj się, aby zasubskrybować." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Nie można uzyskać tokenu żądana." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Kanał wpisów dla %s (RSS 1.0)" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Kanał wpisów dla %s (RSS 2.0)" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Kanał wpisów dla %s (Atom)" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Wiadomość do użytkownika %1$s na %2$s" - -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" - -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Kanał dla znajomych użytkownika %s (Atom)" - -#: actions/showfavorites.php:211 -#, fuzzy, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" -"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " -"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " -"interesującego, aby chcieli dodać to do swoich ulubionych. :)" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "FOAF dla %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Wysłano wpis" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Ta strona nie jest dostępna w " - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " -"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " -"naciśnij \"Odrzuć\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " -"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " -"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Nie można odczytać adresu URL awatara \"%s\"" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Błędny typ obrazu dla \"%s\"" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Nie można przekierować do serwera: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Licencja oprogramowania StatusNet" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Wysłano szturchnięcie" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Odpowiedz na ten wpis" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Problem podczas zapisywania wpisu." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Brak kodu potwierdzającego." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Zaloguj się na stronę" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Wybierz operatora" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Opisz grupę lub temat w 140 znakach" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Opisz grupę lub temat w 140 znakach" - -#: lib/jabber.php:192 -#, fuzzy, php-format -msgid "notice id: %s" -msgstr "Brak identyfikatora wpisu" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" - -#: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" -"\n" -"Adres URL Twojego wpisu:\n" -"\n" -"%3$s\n" -"\n" -"Tekst Twojego wpisu:\n" -"\n" -"%4$s\n" -"\n" -"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" -"\n" -"%5$s\n" -"\n" -"Z poważaniem,\n" -"%6$s\n" - -#: lib/mail.php:611 -#, fuzzy, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " z " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Nie można określić użytkownika źródłowego." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Usuń wpis" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Nieprawidłowa zawartość wpisu" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Nie można utworzyć formularza OpenID: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Ten plik jest za duży. Maksymalny rozmiar pliku to %d." - -#: lib/command.php:613 -#, fuzzy -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" -"Polecenia:\n" -"on - włącza powiadomienia\n" -"off - wyłącza powiadomienia\n" -"help - wyświetla tę pomoc\n" -"follow - subskrybuje użytkownika\n" -"leave - rezygnuje z subskrypcji użytkownika\n" -"d - bezpośrednia wiadomość do użytkownika\n" -"get - uzyskuje ostatni wpis użytkownika\n" -"whois - uzyskuje informacje o profilu użytkownika\n" -"fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" -"stats - uzyskuje Twoje statystyki\n" -"stop - to samo co \"off\"\n" -"quit - to samo co \"off\"\n" -"sub - to samo co \"follow\"\n" -"unsub - to samo co \"leave\"\n" -"last - to samo co \"get\"\n" -"on - jeszcze nie zaimplementowano.\n" -"off - jeszcze nie zaimplementowano.\n" -"nudge - jeszcze nie zaimplementowano.\n" -"invite - jeszcze nie zaimplementowano.\n" -"track - jeszcze nie zaimplementowano.\n" -"untrack - jeszcze nie zaimplementowano.\n" -"track off - jeszcze nie zaimplementowano.\n" -"untrack all - jeszcze nie zaimplementowano.\n" -"tracks - jeszcze nie zaimplementowano.\n" -"tracking - jeszcze nie zaimplementowano.\n" - -#~ msgid "" -#~ "Commands:\n" -#~ "on - turn on notifications\n" -#~ "off - turn off notifications\n" -#~ "help - show this help\n" -#~ "follow - subscribe to user\n" -#~ "leave - unsubscribe from user\n" -#~ "d - direct message to user\n" -#~ "get - get last notice from user\n" -#~ "whois - get profile info on user\n" -#~ "fav - add user's last notice as a 'fave'\n" -#~ "stats - get your stats\n" -#~ "stop - same as 'off'\n" -#~ "quit - same as 'off'\n" -#~ "sub - same as 'follow'\n" -#~ "unsub - same as 'leave'\n" -#~ "last - same as 'get'\n" -#~ "on - not yet implemented.\n" -#~ "off - not yet implemented.\n" -#~ "nudge - not yet implemented.\n" -#~ "invite - not yet implemented.\n" -#~ "track - not yet implemented.\n" -#~ "untrack - not yet implemented.\n" -#~ "track off - not yet implemented.\n" -#~ "untrack all - not yet implemented.\n" -#~ "tracks - not yet implemented.\n" -#~ "tracking - not yet implemented.\n" -#~ msgstr "" -#~ "Polecenia:\n" -#~ "on - włącza powiadomienia\n" -#~ "off - wyłącza powiadomienia\n" -#~ "help - wyświetla tę pomoc\n" -#~ "follow - subskrybuje użytkownika\n" -#~ "leave - rezygnuje z subskrypcji użytkownika\n" -#~ "d - bezpośrednia wiadomość do użytkownika\n" -#~ "get - uzyskuje ostatni wpis użytkownika\n" -#~ "whois - uzyskuje informacje o profilu użytkownika\n" -#~ "fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" -#~ "stats - uzyskuje Twoje statystyki\n" -#~ "stop - to samo co \"off\"\n" -#~ "quit - to samo co \"off\"\n" -#~ "sub - to samo co \"follow\"\n" -#~ "unsub - to samo co \"leave\"\n" -#~ "last - to samo co \"get\"\n" -#~ "on - jeszcze nie zaimplementowano.\n" -#~ "off - jeszcze nie zaimplementowano.\n" -#~ "nudge - jeszcze nie zaimplementowano.\n" -#~ "invite - jeszcze nie zaimplementowano.\n" -#~ "track - jeszcze nie zaimplementowano.\n" -#~ "untrack - jeszcze nie zaimplementowano.\n" -#~ "track off - jeszcze nie zaimplementowano.\n" -#~ "untrack all - jeszcze nie zaimplementowano.\n" -#~ "tracks - jeszcze nie zaimplementowano.\n" -#~ "tracking - jeszcze nie zaimplementowano.\n" - -#, fuzzy -#~ msgid "" -#~ "Commands:\n" -#~ "on - turn on notifications\n" -#~ "off - turn off notifications\n" -#~ "help - show this help\n" -#~ "follow - subscribe to user\n" -#~ "leave - unsubscribe from user\n" -#~ "d - direct message to user\n" -#~ "get - get last notice from user\n" -#~ "whois - get profile info on user\n" -#~ "fav - add user's last notice as a 'fave'\n" -#~ "fav # - add notice with the given id as a 'fave'\n" -#~ "reply # - reply to notice with a given id\n" -#~ "reply - reply to the last notice from user\n" -#~ "join - join group\n" -#~ "drop - leave group\n" -#~ "stats - get your stats\n" -#~ "stop - same as 'off'\n" -#~ "quit - same as 'off'\n" -#~ "sub - same as 'follow'\n" -#~ "unsub - same as 'leave'\n" -#~ "last - same as 'get'\n" -#~ "on - not yet implemented.\n" -#~ "off - not yet implemented.\n" -#~ "nudge - remind a user to update.\n" -#~ "invite - not yet implemented.\n" -#~ "track - not yet implemented.\n" -#~ "untrack - not yet implemented.\n" -#~ "track off - not yet implemented.\n" -#~ "untrack all - not yet implemented.\n" -#~ "tracks - not yet implemented.\n" -#~ "tracking - not yet implemented.\n" -#~ msgstr "" -#~ "Polecenia:\n" -#~ "on - włącza powiadomienia\n" -#~ "off - wyłącza powiadomienia\n" -#~ "help - wyświetla tę pomoc\n" -#~ "follow - subskrybuje użytkownika\n" -#~ "leave - rezygnuje z subskrypcji użytkownika\n" -#~ "d - bezpośrednia wiadomość do użytkownika\n" -#~ "get - uzyskuje ostatni wpis użytkownika\n" -#~ "whois - uzyskuje informacje o profilu użytkownika\n" -#~ "fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" -#~ "stats - uzyskuje Twoje statystyki\n" -#~ "stop - to samo co \"off\"\n" -#~ "quit - to samo co \"off\"\n" -#~ "sub - to samo co \"follow\"\n" -#~ "unsub - to samo co \"leave\"\n" -#~ "last - to samo co \"get\"\n" -#~ "on - jeszcze nie zaimplementowano.\n" -#~ "off - jeszcze nie zaimplementowano.\n" -#~ "nudge - jeszcze nie zaimplementowano.\n" -#~ "invite - jeszcze nie zaimplementowano.\n" -#~ "track - jeszcze nie zaimplementowano.\n" -#~ "untrack - jeszcze nie zaimplementowano.\n" -#~ "track off - jeszcze nie zaimplementowano.\n" -#~ "untrack all - jeszcze nie zaimplementowano.\n" -#~ "tracks - jeszcze nie zaimplementowano.\n" -#~ "tracking - jeszcze nie zaimplementowano.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Przepraszamy, przychodzący e-mail nie jest dozwolony." diff --git a/locale/pt/LC_MESSAGES/statusnet.mo b/locale/pt/LC_MESSAGES/statusnet.mo index b858cc158..a6a789632 100644 Binary files a/locale/pt/LC_MESSAGES/statusnet.mo and b/locale/pt/LC_MESSAGES/statusnet.mo differ diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index f7714b71e..f7c53b719 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -10,7511 +10,4573 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:03+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:42+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Procurar por \"%s\" no fluxo de mensagens" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"excepto estes dados privados: palavra chave, endereço de email, endereço de " -"mensageiro instantâneo, número de telefone." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "de" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Actualizações em resposta a %2$s" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s convidou-o a juntar-se a ele no %2$s" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s convidou-o a juntar-se a ele no %2$s (%3$s).\n" -"\n" -"%2$s é um serviço de micro-blogging que o deixa actualizado com pessoas que " -"conhece e que lhe interessam.\n" -"\n" -"Também pode partilhar notícias suas, pensamentos, ou a sua vida online com " -"pessoas que o conheça. É também ideal para conhecer pessoas com interesses " -"semelhantes aos seus.\n" -"\n" -"%1$s disse:\n" -"\n" -"%4$s\n" -"\n" -"Pode ver o perfil de %1$s no %2$s aqui:\n" -"\n" -"%5$s\n" -"\n" -"Se gostaria de experimentar este serviço visite o endereço a baixo para " -"aceitar este convite.\n" -"\n" -"%6$s\n" -"\n" -"Se não, pode ignorar esta mensagem. Obrigado pelo seu tempo e paciência.\n" -"\n" -"Sinceramente, %2$s\n" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s está agora a ouvir os seus comunicados em %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Sinceramente,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "Updates de %1$s como resposta às actualizações de %2$s / %3$s." - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s's estado em %2$s" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" - -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "Fluxo Público de %s" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s e amigos" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "Mensagens públicas de %s" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "Estado de %s" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Mensagens de %s" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "%s actualizações de todos!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Deverá receber uma mensagem por email dentro de momentos, com instrucções " -"sobre como confirmar o seu endereço de email.)" - -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%*** é um serviço de microblogging trazido até sí por [%%site." -"broughtby%%](%%site.broughtbyurl%%)." - -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** é um serviço de microblogging. " - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Os colaboradores devem ser citados usando nome completo ou apelido." - -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" - -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 letras ou números, sem pontuação ou espaços. Obrigatório." - -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 ou mais caracteres" - -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 ou mais caracteres, e não a esqueça!" - -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 ou mais caracteres. Obrigatório." - -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 -#, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Um código de confirmação foi enviado para o endereço fornecido. Tem que " -"aprovar que %s envie mensagens para sí." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Um código de confirmação foi enviado para o endereço de email fornecido. " -"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " -"e instrucções de utilização." - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Um código de confirmação foi enviado para o número de telefone fornecido. " -"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " -"e instrucções de utilização." - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Método da API não encontrado!" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Método da API em construcção." - -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Sobre" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Aceitar" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Adicionar" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Adicionar OpenID" - -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Adicionar ou remover OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Endereço" - -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Endereços dos amigos a convidar (um por linha)" - -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Todas as subscrições" - -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Todas as actualizações de %s" - -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Todas as actualizações com o termo \"%s\"" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Login já efectuado." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Já subscrito!." - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Tem a certeza que permite remover esta mensagem?" - -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autorizar subscrição" - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Efectuar login automático; não utilizar em computadores de uso partilhado!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Subscrever automaticamente a quem se subscrever a mim (recomendado para não-" -"humanos)" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Avatar actualizado." - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"A aguardar confirmação deste endereço. Verifique as instrucções enviadas " -"para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de amigos?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"A aguardar confirmação deste endereço. Procure na sua 'Caixa de Entrada' (e " -"caixa de spam) pela mensagem com as instrucções." - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "A aguardar confirmação deste número de telefone." - -#: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy -msgid "Before »" -msgstr "Antes »" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Bio" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Bio é demasiada extensa (máx 140 car)." - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Não é possível remover a mensagem." - -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Não é possível ler o URL do avatar '%s'" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Não é possível guardar a nova password." - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Cancelar" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Não é possível instanciar um objecto do OpenID." - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Não é possível normalizar esse ID de Jabber" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Não é possível normalizar esse endereço de email" - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Modificar" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Alterar email handling" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Modificar palavra-passe" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Modificar a sua palavra-passe" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Modificar as suas definições de perfil" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Confirmar" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Confirmar Endereço" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Confirmação cancelada." - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Código de confirmação" - -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Código de confirmação não encontrado" - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Parabéns, %s! Bemvindo ao %%%%site.name%%%%. A partir de agora deverá...\n" -"\n" -"* Ir ao [seu perfil](%s) e enviar a primeira mensagem.\n" -"* Adicionar uma [Endereço Jabber/GTalk](%%%%action.imsettings%%%%) de forma " -"a poder enviar notações através de mensagens instantâneas.\n" -"* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que conheça ou " -"partilhem os seus interesses. \n" -"* Actualizar o seu perfil [Opções de perfil](%%%%action.profilesettings%%%%) " -"para contar mais acerca de si aos outros. \n" -"* Ler os [documentos online](%%%%doc.help%%%%) para conhecer todas as " -"funcionalidades que tenha perdido. \n" -"\n" -"Obrigado por se registar e esperamos que se divirta usando este serviço." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Ligar" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Ligar conta existente" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Contacto" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "Não foi possível criar o formulário de OpenID: %s" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Não foi possível seguir utilizador: %s já está na sua lista." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "Não foi possível redireccionar para o servidor: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Não foi possível guardar a info do avatar " - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Não foi possível guardar a nova info do perfil" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Não foi possível subscrever outros a si." - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Não foi possível subscrever. " - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" -"Não foi possivel actualizar utilizador com endereço de email confirmado." - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "" -"Não foi possível converter os tokens de requisição em tokens de acesso." - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Não foi possível apagar a confirmação do email." - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Não foi possível apagar a subscrição." - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Não foi possivel encontrar algum estado." - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Não foi possível obter um token de requisição." - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Não foi possível inserir o código de confirmação." - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Não foi possível inserir nova subscrição." - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Não foi possível salvar o perfil." - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Não foi possível actualizar o utilizador para auto-subscrição." - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Não foi possível actualizar o registo do utilizador." - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Não foi possível actualizar o utilizador." - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Criar" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Criar um novo utilizador com esta alcunha." - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Criar nova conta" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Criar nova conta para OpenID que já possui um utilizador." - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Endereço do Jabber/GTalk já confirmado." - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Número de telefone com serviço SMS activo já confirmado." - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Endereço de email já confirmado." - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Actualmente" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Ocorreu um erro na base de dados ao inserir a hashtag: %s" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Apagar mensagem" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Descreva-se e aos seus interesses em 140 caracteres" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Email" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Endereço de Email" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Definições do Email" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Endereço de Email já existe." - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Confirmação do Endereço de Email" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Endereço de Email, como \"nomedeutilizador@exemplo.org\"" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Endereços de Email" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Introduza uma alcunha ou um endereço de email" - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Introduza o código que recebeu no seu telefone." - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Erro ao autorizar token" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Erro ao ligar utilizador ao OpenID." - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Erro ao ligar utilizador." - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Erro ao inserir avatar" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Erro ao inserir novo perfil" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Erro ao inserir perfil remoto" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Erro ao guardar confirmação do endereço." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Erro ao guardar perfil remoto" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Erro ao guardar o perfil." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Erro ao guardar o utilizador." - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Erro ao guardar utilizador; inválido." - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Erro ao configurar utilizador." - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Erro ao actualizar o perfil." - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Erro ao actualizar o perfil remoto" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Erro no código de confirmação." - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Alcunha já existente" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "FAQ" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Falha ao actualizar avatar." - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Feed para os amigos de %s" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed para as respostas a %s" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed para a tag %s" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Encontrar conteúdo dos mensagens" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Encontrar pessoas neste site" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " -"palavra-passe antes de alterar as suas configurações." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Nome Completo" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Nome completo é demasiado longo (máx. 255 caracteres)." - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Ajuda" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Início" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Página Principal" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "A Homepage inserida não é um URL válido." - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Quero postar mensagens por email." - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Endereço IM" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Definições de IM" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" -"passe para a ligar ao seu OpenID." - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Se quiser adicionar um OpenID à sua conta, introduza-o na caixa a baixo e " -"clique em \"Adicionar\"." - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma " -"nova que será enviada para o endereço de email que tem configurado na sua " -"conta." - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Email a receber" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "O endereço de email de recepção removido." - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Palavra-passe antiga incorrecta" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Nome de utilizador ou palavra-passe incorrecta" - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"As instruções para a recuperação da palavra-passe foram enviadas para o " -"endereço de email registado na sua conta." - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "URL do avatar inválido '%s'" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Endereço de email inválido: %s" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Página principal inválida '%s'" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "URL de licença inválido '%s'" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Conteúdo da mensagem inválido" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "URI da mensagem inválido" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "URL da mensagem inválido" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "URL do perfil inválido '%s'." - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "URL de perfil inválido (formato incorrecto)" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "URL do perfil devolvido pelo servidor inválido." - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Tamanho inválido." - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Nome de utilizador ou palavra-passe inválido." - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Contive(s) enviado(s)" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Convite(s) enviado(s) para as seguintes pessoas:" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Convidar" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Convidar novos utilizadores" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "O Jabber ID introduzido já pertence a outro utilizador." - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Linguagem" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Linguagem introduzida é muito longa (máx. 50 caracteres)." - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Localidade" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Localidade é muito longa (máx. 255 caracteres)." - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Entrar" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Entrar com conta [OpenID](%%doc.openid%%)" - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Entrar com o seu nome de utilizador e palavra passe. Não está registado " -"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" -"action.openidlogin%%). " - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Sair" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Perdeu ou esqueceu-se da palavra-passe?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Membro desde" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Microblog por %s" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Novo" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nova alcunha" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nova palavra-passe" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Nova palavra-passe foi guardada com sucesso. Está agora conectado." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Alcunha" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Alcunha já em uso. Tente outra diferente." - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Alcunha só deve conter letras minúsculas e números. Sem espaços." - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Alcunha não permitida." - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Alcunha do utilizador que pretende seguir" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Alcunha ou email" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Não" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "" - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Nenhum código introduzido" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Nenhuma alcunha fornecida pelo servidor remoto." - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Nenhuma alcunha." - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Nenhuma confirmação pendente para cancelar." - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Nenhum numero de telefone." - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Nenhum endereço de email registado para esse utilizador." - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Nenhum pedido encontrado!" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Nenhum resultado" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Nenhum estado encontrado com esse ID." - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Nenhum estado com esse ID encontrado." - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "" - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "" - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "" - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "" - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "" - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "" - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." msgstr "" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s e amigos" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "" +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 +#, php-format +msgid "%s and friends" +msgstr "%s e amigos" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed para os amigos de %s" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/all.php:127 #, php-format msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/all.php:132 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 +#: actions/all.php:134 +#, php-format msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amigos" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Método da API não encontrado!" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." msgstr "" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." msgstr "" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." msgstr "" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." msgstr "" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" msgstr "" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Nenhum estado encontrado com esse ID." -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" msgstr "" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." msgstr "" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." msgstr "" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Não foi possível seguir utilizador: %s já está na sua lista." -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Não foi possível actualizar o utilizador." -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Não foi possivel encontrar algum estado." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." msgstr "" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Não foi possível criar o formulário de OpenID: %s" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." msgstr "" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Alcunha só deve conter letras minúsculas e números. Sem espaços." -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Alcunha já em uso. Tente outra diferente." -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." msgstr "" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "A Homepage inserida não é um URL válido." -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Nome completo é demasiado longo (máx. 255 caracteres)." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Localidade é muito longa (máx. 255 caracteres)." -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." +msgid "Too many aliases! Maximum %d." msgstr "" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Endereço de email inválido: %s" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Alcunha já em uso. Tente outra diferente." -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." msgstr "" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +msgid "%s groups" msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" msgstr "" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." msgstr "" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." msgstr "" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar actualizado." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Nenhum estado com esse ID encontrado." -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 #, php-format -msgid "Unrecognized address type %s" +msgid "That's too long. Max notice size is %d chars." msgstr "" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" +#: actions/apistatusesupdate.php:193 +msgid "Not found" msgstr "" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" +msgid "%s timeline" +msgstr "Mensagens de %s" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 #: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "" - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Actualizações em resposta a %2$s" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "Updates de %1$s como resposta às actualizações de %2$s / %3$s." -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "What's up, %s?" -msgstr "" +msgid "%s public timeline" +msgstr "Mensagens públicas de %s" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s actualizações de todos!" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Wrong image type for '%s'" +msgid "Notices tagged with %s" msgstr "" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 #, php-format -msgid "Wrong size image at '%s'" +msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" +#: actions/apiusershow.php:96 +msgid "Not found." msgstr "" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" +#: actions/attachment.php:73 +msgid "No such attachment." msgstr "" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Nenhuma alcunha." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" +#: actions/avatarbynickname.php:64 +msgid "No size." msgstr "" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Tamanho inválido." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" msgstr "" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" msgstr "" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" msgstr "" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Avatar actualizado." -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Falha ao actualizar avatar." + +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado." -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" msgstr "" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" msgstr "" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/blockedfromgroup.php:90 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +msgid "%s blocked profiles" msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amigos" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Desbloquear este utilizador" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Desbloquear" + +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Desbloquear este utilizador" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Não" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" +#: actions/block.php:149 +msgid "Do not block this user from this group" msgstr "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" msgstr "" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" +#: actions/block.php:150 +msgid "Block this user from this group" msgstr "" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" +#: actions/block.php:165 +msgid "You have already blocked this user." msgstr "" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/block.php:170 +msgid "Failed to save block information." msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/bookmarklet.php:50 +msgid "Post to " msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." msgstr "" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Código de confirmação não encontrado" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" msgstr "" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" msgstr "" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Não foi possível actualizar o utilizador." -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Não foi possível apagar a confirmação do email." -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Confirmar Endereço" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed of favorite notices of %s" +msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmação" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." msgstr "" -#: actions/invite.php:178 actions/invite.php:213 -#, php-format +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Não é possível remover a mensagem." + +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Tem a certeza que permite remover esta mensagem?" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Apagar mensagem" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Tem a certeza que permite remover esta mensagem?" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Não é possível remover a mensagem." -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy +msgid "Delete this notice" +msgstr "Não é possível remover a mensagem." -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" +#: actions/doc.php:69 +msgid "No such document." msgstr "" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " +#: actions/editgroup.php:253 +msgid "Could not update group." msgstr "" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" +#: actions/editgroup.php:269 +msgid "Options saved." msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Definições do Email" + +#: actions/emailsettings.php:71 #, php-format -msgid "Outbox for %s" +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Endereço" + +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Endereço de email já confirmado." + +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/emailsettings.php:113 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" +"A aguardar confirmação deste endereço. Procure na sua 'Caixa de Entrada' (e " +"caixa de spam) pela mensagem com as instrucções." -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Cancelar" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Endereço de Email" + +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Endereço de Email, como \"nomedeutilizador@exemplo.org\"" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Adicionar" + +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Email a receber" + +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Novo" + +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" msgstr "" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Quero postar mensagens por email." + +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Não é possível normalizar esse endereço de email" + +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." +#: actions/emailsettings.php:333 +msgid "That is already your email address." msgstr "" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Não foi possível inserir o código de confirmação." + +#: actions/emailsettings.php:358 +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 "" +"Um código de confirmação foi enviado para o endereço de email fornecido. " +"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " +"e instrucções de utilização." + +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Nenhuma confirmação pendente para cancelar." -#: actions/showstream.php:154 -msgid "Send a message" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." msgstr "" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Confirmação cancelada." -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." msgstr "" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Não foi possível actualizar o registo do utilizador." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "O endereço de email de recepção removido." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 +#: actions/favorited.php:67 #, php-format -msgid "%s / Favorites from %s" +msgid "Popular notices, page %d" msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format +#: actions/favorited.php:153 msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." msgstr "" -#: actions/twittersettings.php:27 +#: actions/favorited.php:156 +#, php-format msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" msgstr "" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: actions/twittersettings.php:63 -msgid "Twitter Username" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" msgstr "" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: actions/twittersettings.php:67 -msgid "Twitter Password" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "URI da mensagem inválido" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nenhuma alcunha." -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" msgstr "" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." msgstr "" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." msgstr "" +"Não foi possível converter os tokens de requisição em tokens de acesso." -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Erro ao actualizar o perfil remoto" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/getfile.php:75 +msgid "No such file." msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Não foi possível salvar o perfil." -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "O utilizador bloqueou-o." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." msgstr "" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +msgid "Block user from group" msgstr "" -#: classes/Command.php:96 classes/Command.php:113 +#: actions/groupblock.php:155 #, php-format -msgid "Subscriptions: %1$s\n" +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Não foi possível actualizar o utilizador." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +msgid "Design preferences saved." msgstr "" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Avatar actualizado." -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +#: actions/grouplogo.php:398 +msgid "Failed updating logo." msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format -msgid "Unsubscribed from %s" +msgid "%s group members" msgstr "" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" msgstr "" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Bloquear" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" msgstr "" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/groupmembers.php:473 +msgid "Make Admin" msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/groupsearch.php:52 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"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 "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" +#: actions/groupsearch.php:58 +msgid "Group search" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nenhum resultado" + +#: actions/groupsearch.php:82 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/groups.php:90 #, php-format -msgid "%s's favorite notices" +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O utilizador bloqueou-o." -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Definições de IM" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/imsettings.php:89 +msgid "IM is not available." msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Endereço do Jabber/GTalk já confirmado." -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"A aguardar confirmação deste endereço. Verifique as instrucções enviadas " +"para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de amigos?)" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s e amigos" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Endereço IM" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/imsettings.php:285 +msgid "No Jabber ID." msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Não é possível normalizar esse ID de Jabber" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." msgstr "" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "O Jabber ID introduzido já pertence a outro utilizador." -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" +"Um código de confirmação foi enviado para o endereço fornecido. Tem que " +"aprovar que %s envie mensagens para sí." -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." msgstr "" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" msgstr "" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: actions/confirmaddress.php:159 +#: actions/invite.php:41 #, php-format -msgid "The address \"%s\" has been " -msgstr "" - -#: actions/deletenotice.php:73 -#, fuzzy -msgid "You are about to permanently delete a notice. " -msgstr "Tem a certeza que permite remover esta mensagem?" - -#: actions/disfavor.php:94 -msgid "Add to favorites" +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/invite.php:72 #, php-format -msgid "Edit %s group" -msgstr "" +msgid "Invalid email address: %s" +msgstr "Endereço de email inválido: %s" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Contive(s) enviado(s)" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Convidar novos utilizadores" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Convite(s) enviado(s) para as seguintes pessoas:" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Bio é demasiada extensa (máx 140 car)." - -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Endereços de Email" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "A aguardar confirmação deste número de telefone." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Endereços dos amigos a convidar (um por linha)" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" msgstr "" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s convidou-o a juntar-se a ele no %2$s" + +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" +"%1$s convidou-o a juntar-se a ele no %2$s (%3$s).\n" +"\n" +"%2$s é um serviço de micro-blogging que o deixa actualizado com pessoas que " +"conhece e que lhe interessam.\n" +"\n" +"Também pode partilhar notícias suas, pensamentos, ou a sua vida online com " +"pessoas que o conheça. É também ideal para conhecer pessoas com interesses " +"semelhantes aos seus.\n" +"\n" +"%1$s disse:\n" +"\n" +"%4$s\n" +"\n" +"Pode ver o perfil de %1$s no %2$s aqui:\n" +"\n" +"%5$s\n" +"\n" +"Se gostaria de experimentar este serviço visite o endereço a baixo para " +"aceitar este convite.\n" +"\n" +"%6$s\n" +"\n" +"Se não, pode ignorar esta mensagem. Obrigado pelo seu tempo e paciência.\n" +"\n" +"Sinceramente, %2$s\n" -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -"Um código de confirmação foi enviado para o endereço fornecido. Tem que " -"aprovar que %s envie mensagens para sí." -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" msgstr "" -#: actions/facebookhome.php:196 +#: actions/joingroup.php:128 lib/command.php:234 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "Could not join user %s to group %s" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/joingroup.php:135 lib/command.php:239 #, php-format -msgid "Allow %s to update my Facebook status" +msgid "%s joined group %s" msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" msgstr "" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -#, fuzzy -msgid "Before" -msgstr "Antes »" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format -msgid "Thanks for inviting your friends to use %s" +msgid "%s left group %s" msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Login já efectuado." -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Conteúdo da mensagem inválido" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Nome de utilizador ou palavra-passe incorrecta" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Erro ao configurar utilizador." -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Entrar" -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Alcunha" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" msgstr "" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" msgstr "" +"Efectuar login automático; não utilizar em computadores de uso partilhado!" -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Perdeu ou esqueceu-se da palavra-passe?" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" +"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " +"palavra-passe antes de alterar as suas configurações." -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" +"Entrar com o seu nome de utilizador e palavra passe. Não está registado " +"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" +"action.openidlogin%%). " -#: actions/facebooksettings.php:147 -msgid "Sync preferences" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: actions/favorited.php:67 +#: actions/makeadmin.php:145 #, php-format -msgid "Popular notices, page %d" +msgid "Can't make %s an admin for group %s" msgstr "" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/newgroup.php:53 +msgid "New group" msgstr "" -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" +#: actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "Avatar actualizado." - -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "%s group members" +msgid "Direct message to %s sent" msgstr "" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/newnotice.php:69 +msgid "New notice" msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/newnotice.php:199 +msgid "Notice posted" msgstr "" -#: actions/groups.php:64 +#: actions/noticesearch.php:68 #, php-format -msgid "Groups, page %d" +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +#: actions/noticesearch.php:78 +msgid "Text search" msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Procurar por \"%s\" no fluxo de mensagens" -#: actions/groupsearch.php:57 +#: actions/noticesearch.php:121 #, php-format msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: actions/imsettings.php:120 +#: actions/noticesearch.php:124 #, php-format -msgid "Jabber or GTalk address, " +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" msgstr "" -#: actions/imsettings.php:321 +#: actions/noticesearchrss.php:91 #, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Código de confirmação não encontrado" +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas as actualizações com o termo \"%s\"" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" +#: actions/nudge.php:97 +msgid "Nudge sent!" msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" msgstr "" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s's estado em %2$s" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Ligar" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." +#: actions/oembed.php:160 +msgid "Only " msgstr "" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: actions/opensearch.php:64 +msgid "People Search" msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" +#: actions/othersettings.php:60 +msgid "Other Settings" msgstr "" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" +#: actions/othersettings.php:71 +msgid "Manage various other options." msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: actions/newgroup.php:53 -msgid "New group" +#: actions/othersettings.php:122 +msgid "View profile designs" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." msgstr "" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" msgstr "" -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" msgstr "" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Modificar palavra-passe" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Modificar a sua palavra-passe" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" +#: actions/passwordsettings.php:103 +msgid "Old password" msgstr "" -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nova palavra-passe" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 ou mais caracteres" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Confirmar" -#: actions/othersettings.php:60 -msgid "Other Settings" +#: actions/passwordsettings.php:112 +msgid "same as password above" msgstr "" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Modificar" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." msgstr "" -#: actions/othersettings.php:112 -msgid "Service" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Palavra-passe antiga incorrecta" + +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Erro ao guardar utilizador; inválido." + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Não é possível guardar a nova password." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -#: actions/passwordsettings.php:69 -#, fuzzy -msgid "Change your password." -msgstr "Modificar a sua palavra-passe" - -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" +#: actions/peoplesearch.php:58 +msgid "People search" msgstr "" -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" -#: actions/peopletag.php:91 +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Conteúdo da mensagem inválido" + +#: actions/postnotice.php:90 #, php-format -msgid "These are users who have tagged themselves \"%s\" " +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" +#: actions/profilesettings.php:60 +msgid "Profile settings" msgstr "" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/profilesettings.php:71 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"You can update your personal profile info here so people know more about you." msgstr "" -#: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " +#: actions/profilesettings.php:99 +msgid "Profile information" msgstr "" -"Subscrever automaticamente a quem se subscrever a mim (recomendado para não-" -"humanos)" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Nome Completo" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Mensagens públicas de %s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Página Principal" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descreva-se e aos seus interesses em 140 caracteres" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descreva-se e aos seus interesses em 140 caracteres" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Bio" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Localidade" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" -#: actions/register.php:149 -msgid "You can't register if you don't " +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 letras ou números, sem pontuação ou espaços" - -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Linguagem" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: actions/register.php:404 -msgid "Describe yourself and your " +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: actions/register.php:410 -msgid "Where you are, like \"City, " +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" msgstr "" -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -"excepto estes dados privados: palavra chave, endereço de email, endereço de " -"mensageiro instantâneo, número de telefone." +"Subscrever automaticamente a quem se subscrever a mim (recomendado para não-" +"humanos)" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Linguagem introduzida é muito longa (máx. 50 caracteres)." -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/profilesettings.php:246 actions/tagother.php:178 #, php-format -msgid "Replies to %s, page %d" +msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Não foi possível actualizar o utilizador para auto-subscrição." -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Não foi possível salvar o perfil." -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" +#: actions/profilesettings.php:344 +msgid "Settings saved." msgstr "" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Mensagens públicas de %s" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Fluxo Público de %s" -#: actions/showgroup.php:378 +#: actions/public.php:179 #, php-format msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: actions/public.php:186 #, php-format -msgid "%s, page %d" -msgstr "" - -#: actions/showstream.php:143 -msgid "'s profile" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "Todas as subscrições" - -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/showstream.php:542 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "1-64 letras ou números, sem pontuação ou espaços" - -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "" - -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "A aguardar confirmação deste número de telefone." - -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/subedit.php:83 -msgid "Could not save subscription." +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/subscribe.php:55 -msgid "Not a local user." +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" msgstr "" -#: actions/subscribe.php:69 -msgid "Subscribed" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." msgstr "" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Erro no código de confirmação." -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." msgstr "" -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Todas as subscrições" - -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "Todas as subscrições" - -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" +"Não foi possivel actualizar utilizador com endereço de email confirmado." -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/tagother.php:33 -msgid "Not logged in" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." msgstr "" -#: actions/tagother.php:39 -msgid "No id argument." +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" msgstr "" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" +#: actions/recoverpassword.php:208 +msgid "Reset password" msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#: actions/recoverpassword.php:209 +msgid "Recover password" msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 ou mais caracteres, e não a esqueça!" + +#: actions/recoverpassword.php:240 +msgid "Same as password above" msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." +#: actions/recoverpassword.php:243 +msgid "Reset" msgstr "" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Introduza uma alcunha ou um endereço de email" + +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/tagrss.php:35 -msgid "No such tag." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Nenhum endereço de email registado para esse utilizador." + +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Erro ao guardar confirmação do endereço." + +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" +"As instruções para a recuperação da palavra-passe foram enviadas para o " +"endereço de email registado na sua conta." -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." msgstr "" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Nova palavra-passe foi guardada com sucesso. Está agora conectado." + +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erro no código de confirmação." + +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: actions/register.php:201 +msgid "Not a valid email address." msgstr "" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Endereço de Email já existe." + +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Nome de utilizador ou palavra-passe inválido." + +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "1-64 letras ou números, sem pontuação ou espaços. Obrigatório." + +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 ou mais caracteres. Obrigatório." + +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Email" + +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" +#: actions/register.php:493 +msgid "My text and files are available under " msgstr "" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" +"excepto estes dados privados: palavra chave, endereço de email, endereço de " +"mensageiro instantâneo, número de telefone." -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: actions/register.php:537 #, php-format -msgid "%s groups, page %d" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" +"Parabéns, %s! Bemvindo ao %%%%site.name%%%%. A partir de agora deverá...\n" +"\n" +"* Ir ao [seu perfil](%s) e enviar a primeira mensagem.\n" +"* Adicionar uma [Endereço Jabber/GTalk](%%%%action.imsettings%%%%) de forma " +"a poder enviar notações através de mensagens instantâneas.\n" +"* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que conheça ou " +"partilhem os seus interesses. \n" +"* Actualizar o seu perfil [Opções de perfil](%%%%action.profilesettings%%%%) " +"para contar mais acerca de si aos outros. \n" +"* Ler os [documentos online](%%%%doc.help%%%%) para conhecer todas as " +"funcionalidades que tenha perdido. \n" +"\n" +"Obrigado por se registar e esperamos que se divirta usando este serviço." -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" +"(Deverá receber uma mensagem por email dentro de momentos, com instrucções " +"sobre como confirmar o seu endereço de email.)" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/remotesubscribe.php:98 +#, php-format msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscrever este utilizador" + +#: actions/remotesubscribe.php:129 +msgid "User nickname" msgstr "" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Alcunha do utilizador que pretende seguir" + +#: actions/remotesubscribe.php:133 +msgid "Profile URL" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format -msgid "%s - %s" -msgstr "%s (%s)" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "URL de perfil inválido (formato incorrecto)" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Não foi possível obter um token de requisição." + +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Account" -msgstr "Sobre" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Change your email, avatar, password, profile" -msgstr "Modificar a sua palavra-passe" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed para a tag %s" + +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Ligar conta existente" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s e amigos" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed para os amigos de %s" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" +#: actions/showfavorites.php:205 +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 "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Bloquear" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: actions/showgroup.php:218 +msgid "Group profile" msgstr "" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" msgstr "" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -#, fuzzy -msgid "Favor this notice" -msgstr "Não é possível remover a mensagem." +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "" -#: lib/feedlist.php:64 -msgid "Export data" +#: actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" +#: actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Feed para a tag %s" + +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" msgstr "" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 +#: actions/showgroup.php:432 #, fuzzy -msgid "Description" -msgstr "Todas as subscrições" +msgid "Created" +msgstr "Criar" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" +#: actions/showgroup.php:448 +#, 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 "" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: actions/showgroup.php:454 +#, php-format msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +"**%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 "" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: actions/showmessage.php:81 +msgid "No such message." msgstr "" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" msgstr "" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/showmessage.php:113 #, php-format -msgid "Add or edit %s logo" +msgid "Message from %1$s on %2$s" msgstr "" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "Avatar actualizado." -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" msgstr "" -#: lib/grouptagcloudsection.php:56 +#: actions/showstream.php:79 #, php-format -msgid "Tags in %s group's notices" +msgid "%s, page %d" msgstr "" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " +#: actions/showstream.php:122 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "" -#: lib/joinform.php:114 -msgid "Join" +#: actions/showstream.php:129 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" msgstr "" -#: lib/leaveform.php:114 -msgid "Leave" +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" msgstr "" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" msgstr "" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Feed para a tag %s" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: lib/mail.php:175 -#, php-format +#: actions/showstream.php:196 msgid "" -"Hey, %s.\n" -"\n" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." - -#: lib/mail.php:254 lib/mail.php:253 +#: actions/showstream.php:198 #, php-format -msgid "Location: %s\n" +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/mail.php:256 lib/mail.php:255 +#: actions/showstream.php:234 #, php-format -msgid "Homepage: %s\n" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showstream.php:239 #, php-format msgid "" -"Bio: %s\n" -"\n" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: lib/mail.php:465 +#: actions/smssettings.php:69 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -#, fuzzy -msgid "From" -msgstr "de" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Número de telefone com serviço SMS activo já confirmado." -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "A aguardar confirmação deste número de telefone." -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Código de confirmação" + +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Introduza o código que recebeu no seu telefone." + +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "6 ou mais caracteres" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -#, fuzzy -msgid "Reply to this notice" -msgstr "Não é possível remover a mensagem." +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Nenhum numero de telefone." -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -#, fuzzy -msgid "Delete this notice" -msgstr "Não é possível remover a mensagem." +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"Um código de confirmação foi enviado para o número de telefone fornecido. " +"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " +"e instrucções de utilização." -#: lib/nudgeform.php:128 -msgid "Nudge" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" +#: actions/smssettings.php:476 +#, php-format +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 "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Nenhum código introduzido" + +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: actions/subedit.php:83 +msgid "Could not save subscription." msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: actions/subscribe.php:55 +msgid "Not a local user." msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" +#: actions/subscribe.php:69 +msgid "Subscribed" msgstr "" -#: lib/searchgroupnav.php:82 -msgid "Notice" +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: actions/subscribers.php:67 #, php-format -msgid "People %s subscribes to" +msgid "These are the people who listen to %s's notices." msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "Já subscrito!." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: actions/subscribers.php:110 #, php-format -msgid "Groups %s is a member of" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: actions/subscribers.php:114 #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "O utilizador bloqueou-o." - -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Subscrever este utilizador" - -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Nenhum" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Top posters" - -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Desbloquear este utilizador" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Desbloquear" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Des-Subscrever deste utilizador" - -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed para os amigos de %s" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#: actions/subscriptions.php:52 #, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed para os amigos de %s" +msgid "%s subscriptions" +msgstr "Todas as subscrições" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#: actions/subscriptions.php:54 #, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed para os amigos de %s" +msgid "%s subscriptions, page %d" +msgstr "Todas as subscrições" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s e amigos" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "" -#: actions/avatarsettings.php:78 +#: actions/subscriptions.php:69 #, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -#, fuzzy -msgid "Avatar deleted." -msgstr "Avatar actualizado." - -#: actions/block.php:129 actions/block.php:136 +#: actions/subscriptions.php:121 +#, php-format msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "Tem a certeza que permite remover esta mensagem?" +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: actions/subscriptions.php:194 +msgid "Jabber" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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." +#: actions/tagother.php:33 +msgid "Not logged in" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: actions/tagother.php:39 +msgid "No id argument." msgstr "" -#: actions/facebooksettings.php:124 +#: actions/tagother.php:65 #, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +msgid "Tag %s" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Microblog por %s" - -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -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." +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/groups.php:90 -#, php-format +#: actions/tagother.php:151 msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Procurar por \"%s\" no fluxo de mensagens" - -#: actions/openidlogin.php:66 -#, fuzzy, php-format +#: actions/tagother.php:193 msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " -"palavra-passe antes de alterar as suas configurações." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" +#: actions/tagother.php:200 +msgid "Could not save tags." msgstr "" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Fluxo Público de %s" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: actions/tag.php:68 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgid "Notices tagged with %s, page %d" msgstr "" -#: actions/register.php:286 actions/register.php:329 +#: actions/tag.php:86 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"excepto estes dados privados: palavra chave, endereço de email, endereço de " -"mensageiro instantâneo, número de telefone." +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed para a tag %s" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Criar" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed para a tag %s" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: actions/tagrss.php:35 +msgid "No such tag." msgstr "" -#: actions/showstream.php:147 -msgid "Your profile" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Método da API em construcção." + +#: actions/unsubscribe.php:77 +msgid "No profile id in request." msgstr "" -#: actions/showstream.php:149 -#, php-format -msgid "%s's profile" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." msgstr "" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, php-format -msgid "Notice feed for %s (Atom)" -msgstr "" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autorizar subscrição" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Feed para a tag %s" +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Avatar" +#: actions/userauthorization.php:188 +msgid "License" +msgstr "" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Modificar as suas definições de perfil" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Aceitar" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Subscrever este utilizador" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +#: actions/userauthorization.php:211 +msgid "Reject" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 +#: actions/userauthorization.php:212 #, fuzzy -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 "" -"Um código de confirmação foi enviado para o número de telefone fornecido. " -"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " -"e instrucções de utilização." +msgid "Reject this subscription" +msgstr "Todas as subscrições" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +#: actions/userauthorization.php:225 +msgid "No authorization request!" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -msgid "No such user!" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" msgstr "" -#: actions/twittersettings.php:72 +#: actions/userauthorization.php:249 msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." +#: actions/userauthorization.php:259 +msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:261 msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: actions/userauthorization.php:322 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +msgid "Can’t read avatar URL ‘%s’." +msgstr "Não é possível ler o URL do avatar '%s'" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." msgstr "" -"Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" -"passe para a ligar ao seu OpenID." -#: lib/feed.php:85 -msgid "RSS 1.0" +#: actions/userbyid.php:70 +msgid "No id." msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/imagefile.php:75 +#: actions/usergroups.php:64 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "%s groups, page %d" msgstr "" -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." msgstr "" -"%1$s está agora a ouvir os seus comunicados em %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Sinceramente,\n" -"%4$s.\n" -#: lib/mail.php:466 +#: actions/usergroups.php:158 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: lib/mail.php:513 +#: classes/File.php:137 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 +#: classes/File.php:147 #, php-format -msgid "%s sent a notice to your attention" +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: classes/File.php:154 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" +#: classes/Message.php:55 +msgid "Could not insert message." msgstr "" -#: lib/section.php:106 -msgid "More..." +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: actions/all.php:80 actions/all.php:127 +#: classes/Notice.php:164 #, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" +msgid "DB error inserting hashtag: %s" +msgstr "Ocorreu um erro na base de dados ao inserir a hashtag: %s" -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +#: classes/Notice.php:179 +msgid "Problem saving notice. Too long." msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format +#: classes/Notice.php:188 msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/attachment.php:73 -msgid "No such attachment." +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/block.php:149 -msgid "Do not block this user from this group" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/block.php:150 -msgid "Block this user from this group" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." msgstr "" -#: actions/blockedfromgroup.php:90 +#: classes/Notice.php:1120 #, php-format -msgid "%s blocked profiles" -msgstr "" - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s e amigos" +msgid "DB error inserting reply: %s" +msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Desbloquear este utilizador" - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Código de confirmação" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Não é possível remover a mensagem." +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Modificar as suas definições de perfil" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Endereço de email inválido: %s" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Modificar a sua palavra-passe" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Alcunha já em uso. Tente outra diferente." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Alterar email handling" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Não foi possível criar o formulário de OpenID: %s" - -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/accountsettingsaction.php:121 +msgid "Design your profile" 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." +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "URI da mensagem inválido" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Nenhuma alcunha." +#: lib/action.php:144 +#, fuzzy, php-format +msgid "%s - %s" +msgstr "%s (%s)" -#: actions/file.php:42 -msgid "No attachments" +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "" +#: lib/action.php:430 +msgid "Home" +msgstr "Início" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/action.php:432 +#, fuzzy +msgid "Account" +msgstr "Sobre" -#: actions/groupblock.php:95 +#: lib/action.php:432 #, fuzzy -msgid "User is already blocked from group." -msgstr "O utilizador bloqueou-o." +msgid "Change your email, avatar, password, profile" +msgstr "Modificar a sua palavra-passe" -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" +#: lib/action.php:435 +msgid "Connect" +msgstr "Ligar" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "" +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Não foi possível redireccionar para o servidor: %s" -#: actions/groupblock.php:155 +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Convidar" + +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/action.php:445 +msgid "Logout" +msgstr "Sair" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" +#: lib/action.php:450 +#, fuzzy +msgid "Create an account" +msgstr "Ligar conta existente" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +#: lib/action.php:453 +msgid "Login to the site" msgstr "" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Não foi possível actualizar o utilizador." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Ajuda" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" +#: lib/action.php:456 +msgid "Help me!" msgstr "" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." +#: lib/action.php:459 +msgid "Search" msgstr "" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" +#: lib/action.php:480 +msgid "Site notice" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Nenhum resultado" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +#: lib/action.php:612 +msgid "Page notice" msgstr "" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +#: lib/action.php:714 +msgid "Secondary site navigation" msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" +#: lib/action.php:721 +msgid "About" +msgstr "Sobre" -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "O utilizador bloqueou-o." +#: lib/action.php:723 +msgid "FAQ" +msgstr "FAQ" -#: actions/invite.php:39 -msgid "Invites have been disabled." +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: lib/action.php:730 +msgid "Privacy" msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/action.php:732 +msgid "Source" msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: lib/action.php:734 +msgid "Contact" +msgstr "Contacto" + +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/makeadmin.php:145 +#: lib/action.php:767 #, php-format -msgid "Can't make %s an admin for group %s" +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%*** é um serviço de microblogging trazido até sí por [%%site." +"broughtby%%](%%site.broughtbyurl%%)." -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** é um serviço de microblogging. " -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 +#: lib/action.php:771 #, php-format msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Encontrar conteúdo dos mensagens" + +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +#: lib/action.php:1062 +msgid "After" msgstr "" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/action.php:1070 +#, fuzzy +msgid "Before" +msgstr "Antes »" + +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/attachmentlist.php:278 +msgid "Provider" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Não foi possível salvar o perfil." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" msgstr "" +"Não foi possivel actualizar utilizador com endereço de email confirmado." -#: actions/noticesearch.php:124 +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgid "Nudge sent to %s" msgstr "" -#: actions/openidsettings.php:70 +#: lib/command.php:126 #, php-format msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:315 #, php-format -msgid "Beyond the page limit (%s)" +msgid "%1$s (%2$s)" msgstr "" -#: actions/public.php:179 +#: lib/command.php:318 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" +msgid "Fullname: %s" msgstr "" -#: actions/public.php:186 +#: lib/command.php:321 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" +msgid "Location: %s" msgstr "" -#: actions/public.php:245 actions/public.php:238 +#: lib/command.php:324 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." +msgid "Homepage: %s" msgstr "" -#: actions/publictagcloud.php:69 +#: lib/command.php:327 #, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +msgid "About: %s" msgstr "" -#: actions/publictagcloud.php:75 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -"Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma " -"nova que será enviada para o endereço de email que tem configurado na sua " -"conta." -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/recoverpassword.php:188 -msgid "Password recover" +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Erro no código de confirmação." +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Não é possível remover a mensagem." -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#: lib/command.php:441 #, fuzzy -msgid "Subscribe to a remote user" -msgstr "Subscrever este utilizador" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +msgid "Error saving notice." +msgstr "Erro ao guardar o utilizador." -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 +#: lib/command.php:502 #, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "Subscribed to %s" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s e amigos" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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." +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#: lib/command.php:530 #, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +msgid "Unsubscribed from %s" msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/showgroup.php:337 actions/showgroup.php:340 +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Não foi possível criar o formulário de OpenID: %s" + +#: lib/command.php:602 #, php-format -msgid "Notice feed for %s group (Atom)" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format +#: lib/command.php:613 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. " +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Código de confirmação não encontrado" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: actions/shownotice.php:101 -msgid "Not a local notice" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +msgid "Upload file" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format +#: lib/designsettings.php:109 msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Modificar a sua palavra-passe" -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Feed para a tag %s" +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Ligar" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" +#: lib/designsettings.php:204 +msgid "Sidebar" msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 +#: lib/designsettings.php:230 #, fuzzy -msgid "Could not determine source user." -msgstr "Não foi possível actualizar o utilizador." +msgid "Links" +msgstr "Entrar" -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Não foi possivel encontrar algum estado." +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Actualizações em resposta a %2$s" +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy -msgid "Reject this subscription" -msgstr "Todas as subscrições" +msgid "Favor this notice" +msgstr "Não é possível remover a mensagem." -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." +#: lib/galleryaction.php:121 +msgid "Filter tags" msgstr "" -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." +#: lib/galleryaction.php:131 +msgid "All" msgstr "" -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." +#: lib/galleryaction.php:139 +msgid "Select tag to filter" msgstr "" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" +#: lib/galleryaction.php:140 +msgid "Tag" msgstr "" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -msgid "Design your profile" +#: lib/galleryaction.php:143 +msgid "Go" msgstr "" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/attachmentlist.php:87 -msgid "Attachments" +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" msgstr "" -#: lib/attachmentlist.php:265 -msgid "Author" +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" msgstr "" -#: lib/attachmentlist.php:278 -msgid "Provider" +#: lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Todas as subscrições" + +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Desbloquear este utilizador" + +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" msgstr "" -#: lib/designsettings.php:105 -msgid "Upload file" +#: lib/groupnav.php:112 +msgid "Logo" msgstr "" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +#: lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" msgstr "" -#: lib/designsettings.php:139 -msgid "On" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" msgstr "" -#: lib/designsettings.php:155 -msgid "Off" +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" msgstr "" -#: lib/designsettings.php:156 -msgid "Turn background image on or off." +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" msgstr "" -#: lib/designsettings.php:161 -msgid "Tile background image" +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" msgstr "" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Modificar a sua palavra-passe" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" -#: lib/designsettings.php:178 -msgid "Background" +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %s." msgstr "" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Ligar" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "" -#: lib/designsettings.php:204 -msgid "Sidebar" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." msgstr "" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Entrar" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "" + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "" + +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: lib/designsettings.php:248 -msgid "Restore default designs" +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "URI da mensagem inválido" + +#: lib/joinform.php:114 +msgid "Join" msgstr "" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/leaveform.php:114 +msgid "Leave" msgstr "" -#: lib/designsettings.php:257 -msgid "Save design" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" msgstr "" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +#: lib/mailbox.php:139 +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/groupnav.php:100 +#: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy -msgid "Blocked" -msgstr "Bloquear" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Desbloquear este utilizador" +msgid "from" +msgstr "de" -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Confirmação do Endereço de Email" -#: lib/mail.php:556 +#: lib/mail.php:174 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" +"Hey, %s.\n" "\n" -"The text of your notice is:\n" +"Someone just entered this email address on %s.\n" "\n" -"%4$s\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" "\n" -"You can see the list of %1$s's favorites here:\n" +"\t%s\n" "\n" -"%5$s\n" +"If not, just ignore this message.\n" "\n" -"Faithfully yours,\n" -"%6$s\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:235 #, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: lib/mail.php:648 -#, php-format +#: lib/mail.php:240 +#, fuzzy, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s is now listening to your notices on %2$s.\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"\t%3$s\n" "\n" -"\t%2$s\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" "\n" -"Regards,\n" -"%3$s\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s está agora a ouvir os seus comunicados em %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Sinceramente,\n" +"%4$s.\n" -#: lib/mail.php:682 +#: lib/mail.php:253 #, php-format -msgid "Your %s Facebook application access has been disabled." +msgid "Location: %s\n" msgstr "" -#: lib/mail.php:685 +#: lib/mail.php:255 #, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +msgid "Homepage: %s\n" msgstr "" -#: lib/mailbox.php:139 +#: lib/mail.php:257 +#, php-format 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." +"Bio: %s\n" +"\n" msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "Estado de %s" + +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/profileaction.php:177 -msgid "User ID" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/webcolor.php:82 +#: lib/mail.php:554 #, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "A Homepage inserida não é um URL válido." +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: lib/webcolor.php:123 +#: lib/mail.php:556 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -msgid "No such page" +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -#: actions/apidirectmessage.php:89 +#: lib/mail.php:611 #, php-format -msgid "Direct messages from %s" +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#: lib/mail.php:613 #, php-format -msgid "That's too long. Max message size is %d chars." +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Bio é demasiada extensa (máx 140 car)." - -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: actions/apistatusesshow.php:138 +#: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy -msgid "Status deleted." -msgstr "Avatar actualizado." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" +msgid "Could not determine file's mime-type!" +msgstr "Não foi possível actualizar o utilizador." -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 +#: lib/mediafile.php:270 #, php-format -msgid "That's too long. Max notice size is %d chars." +msgid " Try using another %s format." msgstr "" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 +#: lib/mediafile.php:275 #, php-format -msgid "Max notice size is %d chars, including attachment URL." +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: actions/bookmarklet.php:50 -msgid "Post to " +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Bio é demasiada extensa (máx 140 car)." - -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" +#: lib/messageform.php:162 lib/noticeform.php:173 +#, fuzzy +msgid "Available characters" +msgstr "6 ou mais caracteres" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." +#: lib/noticeform.php:145 +msgid "Send a notice" msgstr "" -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" msgstr "" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -"Não foi possível converter os tokens de requisição em tokens de acesso." -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/getfile.php:75 -msgid "No such file." +#: lib/noticelist.php:478 +msgid "in context" msgstr "" -#: actions/getfile.php:79 +#: lib/noticelist.php:498 #, fuzzy -msgid "Cannot read file." -msgstr "Não foi possível salvar o perfil." +msgid "Reply to this notice" +msgstr "Não é possível remover a mensagem." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" +#: lib/noticelist.php:499 +msgid "Reply" msgstr "" -#: actions/imsettings.php:89 -msgid "IM is not available." +#: lib/nudgeform.php:116 +msgid "Nudge this user" msgstr "" -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -"Entrar com o seu nome de utilizador e palavra passe. Não está registado " -"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" -"action.openidlogin%%). " -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" msgstr "" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Todas as actualizações com o termo \"%s\"" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Erro ao inserir novo perfil" -#: actions/oembed.php:157 +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Erro ao inserir avatar" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Erro ao inserir perfil remoto" + +#: lib/oauthstore.php:345 #, fuzzy -msgid "content type " -msgstr "Ligar" +msgid "Duplicate notice" +msgstr "Apagar mensagem" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Não foi possível inserir nova subscrição." -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +#: lib/personalgroupnav.php:99 +msgid "Personal" msgstr "" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Descreva-se e aos seus interesses em 140 caracteres" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Descreva-se e aos seus interesses em 140 caracteres" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Bio é demasiada extensa (máx 140 car)." +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Não foi possível obter um token de requisição." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Feed para os amigos de %s" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Feed para os amigos de %s" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "" -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Feed para a tag %s" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Todas as subscrições" -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" msgstr "" -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed para os amigos de %s" +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Todas as subscrições" -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed para os amigos de %s" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed para os amigos de %s" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Membro desde" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "Feed para a tag %s" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "" -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "Avatar actualizado." +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" -#: actions/smssettings.php:91 -msgid "SMS is not available." +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" msgstr "" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Feed para a tag %s" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +#: lib/publicgroupnav.php:92 +msgid "Popular" msgstr "" -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +#: lib/searchaction.php:120 +msgid "Search site" msgstr "" -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" +#: lib/searchaction.php:162 +msgid "Search help" msgstr "" -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Encontrar pessoas neste site" + +#: lib/searchgroupnav.php:82 +msgid "Notice" msgstr "" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Encontrar conteúdo dos mensagens" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" msgstr "" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:338 +#: lib/subgroupnav.php:83 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "People %s subscribes to" msgstr "" -#: actions/userauthorization.php:343 +#: lib/subgroupnav.php:91 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Não é possível ler o URL do avatar '%s'" +msgid "People subscribed to %s" +msgstr "Já subscrito!." -#: actions/userauthorization.php:348 +#: lib/subgroupnav.php:99 #, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Groups %s is a member of" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Não foi possível redireccionar para o servidor: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Encontrar conteúdo dos mensagens" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -"Não foi possivel actualizar utilizador com endereço de email confirmado." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "O utilizador bloqueou-o." -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Não foi possível subscrever. " + +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Não foi possível subscrever outros a si." + +#: lib/subs.php:124 +msgid "Not subscribed!." msgstr "" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Não é possível remover a mensagem." +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Não foi possível apagar a subscrição." -#: lib/command.php:441 +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Nenhum" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Top posters" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Des-Subscrever deste utilizador" + +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "" + +#: lib/userprofile.php:116 #, fuzzy -msgid "Error saving notice." -msgstr "Erro ao guardar o utilizador." +msgid "Edit Avatar" +msgstr "Avatar" -#: lib/common.php:191 +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "" + +#: lib/userprofile.php:248 #, fuzzy -msgid "No configuration file found. " -msgstr "Código de confirmação não encontrado" +msgid "Edit profile settings" +msgstr "Modificar as suas definições de perfil" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: lib/common.php:194 -msgid "Go to the installer." +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -#: lib/galleryaction.php:139 -msgid "Select tag to filter" +#: lib/util.php:844 +msgid "a few seconds ago" msgstr "" -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" +#: lib/util.php:846 +msgid "about a minute ago" msgstr "" -#: lib/groupeditform.php:170 +#: lib/util.php:848 #, php-format -msgid "Describe the group or topic in %d characters" +msgid "about %d minutes ago" msgstr "" -#: lib/jabber.php:192 -#, fuzzy, php-format -msgid "notice id: %s" -msgstr "URI da mensagem inválido" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "" -#: lib/mail.php:556 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" +msgid "about %d hours ago" msgstr "" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" +#: lib/util.php:854 +msgid "about a day ago" msgstr "" -#: lib/mail.php:613 +#: lib/util.php:856 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" +msgid "about %d days ago" msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "de" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" +#: lib/util.php:858 +msgid "about a month ago" msgstr "" -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Não foi possível actualizar o utilizador." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Apagar mensagem" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Conteúdo da mensagem inválido" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Não foi possível criar o formulário de OpenID: %s" +msgid "%s is not a valid color!" +msgstr "A Homepage inserida não é um URL válido." -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %s." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "" + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.mo b/locale/pt_BR/LC_MESSAGES/statusnet.mo index a751a2de4..f6e2b38f0 100644 Binary files a/locale/pt_BR/LC_MESSAGES/statusnet.mo and b/locale/pt_BR/LC_MESSAGES/statusnet.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index b0ac2731e..c584ad869 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -7,3126 +7,2037 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:06+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:45+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Procurar por \"%s\" no fluxo de mensagens" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" exceto estes dados privados: senha, endereço de e-mail, endereço de IM, " -"número de telefone." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Essa etiqueta não existe." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " de " +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Usuário não encontrado." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Atualizações respondendo à %2$s" +msgid "%s and friends, page %d" +msgstr "%s e amigos, página %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s convidou você para se juntar ao %2$s" +msgid "%s and friends" +msgstr "%s e amigos" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s convidou você para se juntar ao %2$s (%3$s).\n" -"\n" -"%2$s é um serviço de microblogagem que lhe permite manter-se atualizado com " -"as pessoas que você conhece e com as que lhe interessam.\n" -"\n" -"Você também pode compartilhar notícias sobre você mesmo, seus pensamentos, " -"ou sua vida on-line com as pessoas que lhe conhecem. Também é ótimo para " -"encontrar novas pessoas que compartilham os mesmos interesses que você.\n" -"\n" -"%1$s disse:\n" -"\n" -"%4$s\n" -"\n" -"Você pode ver o perfil de %1$s no %2$s aqui:\n" -"\n" -"%5$s\n" -"\n" -"Se você quiser experimentar o serviço, clique no link abaixo para aceitar o " -"convite.\n" -"\n" -"%6$s\n" -"\n" -"Se não, você pode ignorar esta mensagem. Obrigado por sua paciência e seu " -"tempo.\n" -"\n" -"Cordialmente, %2$s\n" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s agora está acompanhando suas mensagens em %2$s." +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed para os amigos de %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s agora está acompanhando suas mensagens em %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordialmente,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s atualizações que respondem a mensagens de %2$s / %3$s." -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "Mensagem de %1$s em %2$s" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "Fluxo Público de %s" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s e amigos" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "Mensagens públicas de %s" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Atualizações de %1$s e amigos no %2$s!" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "Status de %s" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "O método da API não foi encontrado!" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Mensagens de %s" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Este método requer um POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "%s atualizações de todo mundo!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Você receberá uma mensagem por e-mail a qualquer momento, com instruções " -"sobre como confirmar seu endereço.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** é um serviço de microblogagem disponibilizado por [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "O usuário não tem perfil." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** é um serviço de microblogagem. " +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Não foi possível bloquear o usuário." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Os colaboradores devem ser citados usando seu nome completo ou apelido." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Não foi possível desbloquear o usuário." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Nenhuma mensagem de texto!" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." + +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "O usuário destinatário não foi encontrado." + +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"1-64 letras minúsculas ou números, sem pontuação ou espaços. Obrigatório." +"Não é possível enviar mensagens diretas para usuários que não são seus " +"amigos." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "No mínimo 6 caracteres" +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensagem direta para %s" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "No mínimo 6 caracteres. E não se esqueça dela!" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "Todas as mensagens diretas enviadas por %s" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "No mínimo 6 caracteres. Obrigatório." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Mensagem direta para %s" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:105 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Um código de confirmação foi enviado para o endereço de IM que você " -"informou. Você deve permitir que %s envie mensagens para você." +msgid "All the direct messages sent to %s" +msgstr "Todas as mensagens diretas enviadas para %s" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Um código de confirmação foi enviado para o endereço de e-mail que você " -"informou. Verifique a sua caixa de entrada (e de spam!) para o código e " -"instruções sobre como usá-lo." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Não foi encontrado nenhum status com esse ID." -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Um código de confirmação foi enviado para o número de telefone que você " -"informou. Verifique sua caixa de entrada (e de spam!) para o código e " -"instruções sobre como usá-lo." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Essa mensagem já é uma favorita!" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "O método da API não foi encontrado!" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Não foi possível criar a favorita." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "O método da API está em construção." +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Essa mensagem não é uma favorita!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Sobre" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Não foi possível excluir a favorita." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Aceitar" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Não é possível seguir o usuário: Usuário não encontrado." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Adicionar" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Não é possível seguir o usuário: %s já está na sua lista." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Adicionar OpenID" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Não é possível seguir o usuário: Usuário não encontrado." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Adicionar ou remover OpenIDs" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Endereço" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Endereços dos seus amigos que serão convidados (um por linha)" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Duas IDs de usuário ou screen_names devem ser informados." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Todas as assinaturas" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Não foi possível recuperar o fluxo público." -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Todas as atualizações para %s" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Não foi possível encontrar nenhum status." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Todas as atualizações correspondentes ao termo \"%s\"" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Não foi possível criar a favorita." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Já está logado." +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Não foi possível criar a favorita." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Já foi assinado!" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Não foi possível salvar a assinatura." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Você tem certeza que deseja excluir esta mensagem?" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"O apelido deve conter apenas letras minúsculas e/ou números e não pode ter " +"acentuação e espaços." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Autorizar a assinatura" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Este apelido já está em uso. Tente outro." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Entrar automaticamente sem pedir a senha. Não use em computadores " -"compartilhados!" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Não é um apelido válido." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Assinar automaticamente à quem me assinar" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "A URL do site informada não é válida." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "O nome completo é muito extenso (máx. 255 caracteres)" -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "O avatar foi atualizado." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "descrição muito extensa (máximo 140 caracteres)." + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "A localização é muito extensa (máx. 255 caracteres)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Too many aliases! Maximum %d." msgstr "" -"Aguardando a confirmação deste endereço. Procure em sua conta de Jabber/" -"GTalk por uma mensagem com mais instruções (Você adicionou %s à sua lista de " -"contatos?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta inválida: \"%s\"" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Este apelido já está em uso. Tente outro." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Aguardando a confirmação deste endereço. Procure em sua caixa de entrada (e " -"de spam!) por uma mensagem com mais instruções." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Aguardando a confirmação deste número de telefone." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Você já está assinando esses usuários:" -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Anteriores »" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Descrição" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Descrição muito extensa (máximo 140 caracteres)." +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Você não está assinando esse perfil." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Não é possível excluir esta mensagem." +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Não é possível ler a URL '%s' do avatar" +msgid "%s groups" +msgstr "Grupos de %s" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Não é possível salvar a nova senha." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Outras opções" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Cancelar" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Grupos de %s" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Não foi possível instanciar um objeto do OpenID." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "O grupo %s é membro de" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Não foi possível normalizar essa ID do Jabber" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Este método requer POSTAGEM ou EXCLUSÃO." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Não foi possível normalizar este endereço de e-mail" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Você não pode apagar o status de outro usuário." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Alterar" +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Configurações de uso do e-mail" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Não foi encontrado nenhum status com esse ID." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Alterar a senha" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Está muito extenso. O tamanho máximo é de 140 caracteres." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Altere a sua senha" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Não encontrado" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Alterar as suas configurações de perfil" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Confirmar" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de imagem não suportado." -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Confirme o endereço" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favoritas de %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Confirmação cancelada." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s atualizações de favoritas por %s / %s." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Código de confirmação" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "Mensagens de %s" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "O código de confirmação não foi encontrado." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" + +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Atualizações respondendo à %2$s" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Parabéns, %s! E bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você pode " -"querer...\n" -"\n" -"* Acessar [seu perfil](%s) e publicar sua primeira mensagem.\n" -"* Adicionar um [endereço de Jabber/GTalk](%%%%action.imsettings%%%%) para " -"que você possa publicar via mensagens instantâneas.\n" -"* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que você conheça ou " -"que tenham os mesmos interesses que você. \n" -"* Atualizar suas [configurações de perfil](%%%%action.profilesettings%%%%) " -"para que outras pessoas saibam mais sobre você. \n" -"* Ler a [documentação on-line](%%%%doc.help%%%%) para conhecer os recursos " -"disponíveis. \n" -"\n" -"Obrigado por se registrar e esperamos que você aproveite o serviço." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Conectar" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Conectar-se a uma conta já existente" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Contato" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s atualizações que respondem a mensagens de %2$s / %3$s." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Não foi possível criar o formulário OpenID: %s" +msgid "%s public timeline" +msgstr "Mensagens públicas de %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Não é possível seguir o usuário: %s já está na sua lista." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Não é possível seguir o usuário: Usuário não encontrado." +msgid "%s updates from everyone!" +msgstr "%s atualizações de todo mundo!" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Não foi possível redirecionar para o servidor: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Não foi possível salvar as informações do avatar" +msgid "Notices tagged with %s" +msgstr "Mensagens etiquetadas com %s" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Não foi possível salvar as novas informações do perfil" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Não foi possível fazer com que o outros o sigam." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Não encontrado." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Não foi possível assinar." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Esse documento não existe." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" -"Não foi possível atualizar o usuário com o endereço de e-mail confirmado." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Nenhum apelido." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "" -"Não foi possível converter os tokens de requisição para tokens de acesso." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Sem tamanho definido." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Não foi possível excluir a confirmação de e-mail." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Tamanho inválido." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Não foi possível excluir a assinatura." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Não foi possível encontrar nenhum status." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Você pode enviar seu avatar pessoal." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Não foi possível obter um token de requisição." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Usuário sem um perfil correspondente" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Não foi possível inserir o código de confirmação." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Configurações do avatar" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Não foi possível inserir a nova assinatura." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Original" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Não foi possível salvar o perfil." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Visualização" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Não foi possível atualizar o usuário para assinar automaticamente." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Excluir" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Não foi possível atualizar o registro do usuário." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Enviar" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Não foi possível atualizar o usuário." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Cortar" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Criar" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" +"Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Criar um novo usuário com este apelido." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Submissão inesperada de formulário." -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Criar uma nova conta" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Selecione uma área quadrada da imagem para ser seu avatar" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Criando uma nova conta para um OpenID que já tem um usuário." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Nossos dados do arquivo foi perdido." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Endereço de Jabber/GTalk já confirmado." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "O avatar foi atualizado." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Número de telefone já habilitado para receber SMS." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Não foi possível atualizar o avatar." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Endereço de e-mail já confirmado." +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "O avatar foi atualizado." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Neste momento" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Nenhum apelido" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Erro no banco de dados durante a inserção de hashtag: %s" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Esse grupo não existe" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Erro no banco de dados na inserção da reposta: %s" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "O usuário não tem perfil." -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Excluir a mensagem" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amigos, página %d" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "E-mail" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Não foi possível desbloquear o usuário." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Endereço de e-mail" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Desbloquear" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Configurações do e-mail" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Desbloquear este usuário" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "O endereço de e-mail já existe." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Você não está logado." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Confirmação do endereço de e-mail" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Não foi especificado nenhum perfil." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Endereço de e-mail, ex: \"usuario@exemplo.org\"" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Não foi encontrado nenhum perfil com esse ID." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Endereços de e-mail" +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Bloquear usuário" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Entre com o apelido ou endereço de e-mail." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Informe o código que você recebeu no seu telefone." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Não" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Erro na autorização do token" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Erro na conexão do usuário ao OpenID." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Sim" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Erro na conexão do usuário." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Bloquear usuário" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Erro na inserção do avatar" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Você já bloqueou esse usuário." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Erro na inserção do novo perfil" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Não foi possível salvar a informação de bloqueio." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Erro na inserção do perfil remoto" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Erro ao salvar o endereço de confirmação" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Erro ao salvar o perfil remoto" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Erro ao salvar o perfil." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Erro ao salvar o usuário." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Erro ao salvar usuário; inválido." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Nenhum código de confirmação." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Erro na configuração do usuário." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "O código de confirmação não foi encontrado." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Erro na atualização do perfil" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Esse código de confirmação não é seu!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Erro na atualização do perfil remoto" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Tipo de endereço %s desconhecido" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Erro com o código de confirmação." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Esse endereço já foi confirmado." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Apelido já existe" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Não foi possível atualizar o usuário." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "FAQ" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Não foi possível excluir a confirmação de e-mail." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Não foi possível atualizar o avatar." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Confirme o endereço" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Feed para os amigos de %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "O endereço \"%s\" foi confirmado para sua conta." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Feed para respostas para %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmação" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed para tag %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Mensagens" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Procure no conteúdo das mensagens" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Essa mensagem não existe." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Procure por pessoas neste site" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Não é possível excluir esta mensagem." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Por razões de segurança, por favor, digite novamente seu nome de usuário e " -"senha antes de alterar suas configurações." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Nome completo" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "O nome completo é muito extenso (máx. 255 caracteres)" - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Ajuda" +"Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser " +"desfeito." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Início" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Excluir a mensagem" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Site" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Você tem certeza que deseja excluir esta mensagem?" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "A URL do site informada não é válida." +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Não é possível excluir esta mensagem." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Eu quero publicar mensagens por e-mail." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Excluir esta mensagem" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/deletenotice.php:157 +#, fuzzy +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/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Endereço do IM" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Essa mensagem não é uma favorita!" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Configurações do IM" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Adicionar aos favoritos" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Se você já possui uma conta, utilize seu nome de usuário e senha para " -"conectá-la ao seu OpenID." +#: actions/doc.php:69 +msgid "No such document." +msgstr "Esse documento não existe." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Se você quer adicionar um OpenID à sua conta, informe-a na caixa abaixo e " -"clique em \"Adicionar\"." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Editar o grupo %s" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se você esqueceu ou perdeu sua senha, você pode receber uma nova no endereço " -"de e-mail que armazenou em sua conta." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Você deve estar logado para criar um grupo." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "E-mail de recebimento" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Você deve ser o administrador do grupo para editá-lo" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "O endereço de e-mail de recebimento foi removido." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Use esse formulário para editar o grupo." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "A senha antiga está incorreta" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "descrição muito extensa (máximo 140 caracteres)." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Nome de usuário e/ou senha incorreto(s)." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Não foi possível atualizar o grupo." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"As instruções para recuperar a sua senha foram enviadas para o endereço de e-" -"mail informado no seu cadastro." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "As configurações foram salvas." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "A URL '%s' para o avatar é inválida" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Configurações do e-mail" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" -msgstr "Não é um endereço de e-mail válido: %s" +msgid "Manage how you get email from %%site.name%%." +msgstr "Configure o recebimento de e-mails do %%site.name%%." -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "O site '%s' é inválido" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Endereço" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "A URL '%s' da licença é inválida" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Endereço de e-mail já confirmado." -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "O conteúdo da mensagem é inválido" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Remover" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "A URI da mensagem é inválida" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Aguardando a confirmação deste endereço. Procure em sua caixa de entrada (e " +"de spam!) por uma mensagem com mais instruções." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "A URL da mensagem é inválida" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Cancelar" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "A URL '%s' do perfil é inválida." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Endereço de e-mail" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "A URL do perfil é inválida (formato inválido)" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Endereço de e-mail, ex: \"usuario@exemplo.org\"" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "A URL do perfil retornada pelo servidor é inválida." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Adicionar" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Tamanho inválido." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "E-mail de recebimento" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Nome de usuário e/ou senha inválido(s)" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Envie e-mails para esse endereço para publicar novas mensagens." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Convite(s) enviado(s)" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Cria um novo endereço de e-mail para publicar e cancela o antigo." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Convite(s) enviado(s) para as seguintes pessoas:" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Novo" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Convidar" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Preferências" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Convidar novos usuários" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Envie-me notificações de novos assinantes por e-mail." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -"Ele funciona sob o software de microblogagem [StatusNet](http://status." -"net/), versão %s, disponível sob a [GNU Affero General Public License] " -"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"Envie-me um e-mail quando alguém adicionar alguma mensagem minha como " +"favorita." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Esta ID do Jabber já pertence à outro usuário." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Endereço de Jabber ou GTalk, ex: \"usuario@exemplo.org\". Primeiro, " -"certifique-se de adicionar %s à sua lista de contatos no seu cliente de IM " -"ou no GTalk." +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Idioma" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Permitir que meus amigos chamem minha atenção e enviem-me um e-mail." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Eu quero publicar mensagens por e-mail." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Localização" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publique um MicroID para meu endereço de e-mail." -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "A localização é muito extensa (máx. 255 caracteres)." +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Salvar" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Logar" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "As preferências foram salvas." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Logar-se com uma conta [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Nenhum endereço de e-mail." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " -"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." -"openidlogin%%)." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Não foi possível normalizar este endereço de e-mail" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Sair" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Não é um endereço de e-mail válido" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Nome completo (nome e sobrenome), de preferência seu nome \"real\"" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Esse já é seu endereço de e-mail." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Perdeu ou esqueceu sua senha?" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Esse endereço de e-mail já pertence à outro usuário." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Cria um novo endereço de e-mail para publicar e cancela o antigo." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Não foi possível inserir o código de confirmação." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Configure o recebimento de e-mails do %%site.name%%." +#: actions/emailsettings.php:358 +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 "" +"Um código de confirmação foi enviado para o endereço de e-mail que você " +"informou. Verifique a sua caixa de entrada (e de spam!) para o código e " +"instruções sobre como usá-lo." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Membro desde" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Nenhuma confirmação pendente para cancelar." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Microblog por %s" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Isso é um endereço de IM errado." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"A operadora móvel do seu celular. Se você conhece uma operadora que aceita " -"SMS via e-mail que não está listada aqui, informe-nos enviando uma mensagem " -"para %s." +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Confirmação cancelada." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Meus textos e arquivos estão disponíveis sob " +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Esse não é seu endereço de email." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Novo" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "O endereço foi removido." -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Novo endereço de e-mail para postar para %s" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Nenhum endereço de e-mail para recebimentos." + +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Não foi possível atualizar o registro do usuário." + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "O endereço de e-mail de recebimento foi removido." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" "Foi adicionado um novo endereço de e-mail para recebimento de mensagens." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Novo apelido" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Mensagens populares" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nova mensagem" +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Mensagens populares, pág. %d" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nova senha" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "As etiquetas mais populares no site agora." -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -"A nova senha foi salva com sucesso. A partir de agora você já está logado." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Apelido" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Este apelido já está em uso. Tente outro." -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: 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 "" -"O apelido deve conter apenas letras minúsculas e/ou números e não pode ter " -"acentuação e espaços." -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Este apelido não é permitido." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Apelido do usuário que você quer seguir" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Mensagens favoritas de %s" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Apelido ou e-mail" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Não" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Essa mensagem já é uma favorita!" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Nenhuma ID de Jabber." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Excluir a favorita" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Nenhum pedido de autorização!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Usuários de destaque" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Não foi selecionada nenhuma operadora." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Usuários de destaque, pág. %d" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Não foi digitado nenhum código" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Nenhum código de confirmação." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nova mensagem" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Nenhum conteúdo!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nova mensagem" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Nenhum endereço de e-mail." +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Nenhuma ID." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Nenhum endereço de e-mail para recebimentos." - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Nenhum apelido fornecido pelo servidor remoto." - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Nenhum apelido." - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Nenhuma confirmação pendente para cancelar." - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Nenhum número de telefone." - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Nenhuma URL de perfil retornada pelo servidor." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Não esperava por esta resposta!" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Nenhum endereço de e-mail registrado para esse usuário." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "O usuário que está está sendo acompanhado não existe." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Não foi encontrada nenhuma requisição!" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Você pode usar a assinatura local!" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Nenhum resultado" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Esse usuário bloqueou o seu pedido de assinatura." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Sem tamanho definido." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Não autorizado." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Não foi encontrado nenhum status com esse ID." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Não foi possível converter os tokens de requisição para tokens de acesso." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Não foi encontrado nenhum status com esse ID." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versão desconhecida do protocolo OMB." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Essa OpenID não existe." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Erro na atualização do perfil remoto" -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Esse documento não existe." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Essa etiqueta não existe." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." msgstr "Essa mensagem não existe." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Esse código de recuperação não existe." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Nosso arquivo foi perdido." -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Essa assinatura não existe." - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Usuário não encontrado." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Não foi especificado nenhum perfil." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -"Não foi encontrado nenhum usuário com essa identificação ou endereço de " -"email." - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Ninguém para exibir!" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Não é um código de recuperação" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Não é um usuário registrado." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "O usuário bloqueou você." -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Formato de dados não suportado." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Você não está assinando esse perfil." -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Não é uma ID de Jabber válida" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuário" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Não é uma OpenID válida." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Não é um endereço de e-mail válido" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Não é um endereço de e-mail válido." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Não é um apelido válido." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Você deve estar logado para criar um grupo." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Não é uma URL de perfil válida (serviço incorreto)." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Outras opções" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Não é uma URL de perfil válida (nenhum XRDS definido)." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Não é uma URL de perfil válida (nenhum documento YADIS)." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Não foi possível atualizar o usuário." -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Imagem inválida ou arquivo corrompido." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Não foi possível salvar suas configurações do Twitter!" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Não autorizado." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "As preferências de sincronização foram salvas." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Não esperava por esta resposta!" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Logo do grupo" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Não encontrado" +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Você não está logado." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Selecione uma área quadrada da imagem para ser seu avatar" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Não é seguido!" +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "O avatar foi atualizado." -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Procurar mensagem" +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Não foi possível atualizar o avatar." -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format -msgid "Notice feed for %s" -msgstr "Feed de mensagens de %s" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "A mensagem não está associada a nenhum perfil" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Mensagens" +msgid "%s group members" +msgstr "" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 +#: actions/groupmembers.php:96 #, php-format -msgid "Notices tagged with %s" -msgstr "Mensagens etiquetadas com %s" +msgid "%s group members, page %d" +msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Senha antiga" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Configuração da conta OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Submissão automática da OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Logar-se via OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "URL da OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "A autenticação pela OpenID foi cancelada." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Não foi possível logar via OpenID: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Falha na OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "A OpenID foi removida." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Configurações da OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Admin" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Envio parcial." +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Bloquear" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Senha" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "Bloquear usuário" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "A senha e a confirmação não coincidem." +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Você deve ser o administrador do grupo para editá-lo" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "A senha deve ter 6 caracteres ou mais." +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Foi solicitada a recuperação da senha" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "A senha foi salva." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "As senhas não coincidem." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Procurar por pessoas em %%site.name%% por seus nomes, localidade ou " +"interesses. Separe os termos da busca com espaços; eles devem ter 3 " +"caracteres ou mais." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Pessoas" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Procurar Pessoas" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" msgstr "Procurar pessoas" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Pessoal" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Mensagem pessoal" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Número de telefone, sem pontuação ou espaços, com código de área" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nenhum resultado" -#: ../actions/userauthorization.php:78 +#: actions/groupsearch.php:82 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " -"mensagens deste usuário. Se você não solicitou seguir as mensagens de " -"alguém, clique em \"Cancelar\"." - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Preferências" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "As preferências foram salvas." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Idioma preferencial" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Privacidade" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Problema ao salvar a mensagem." +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Perfil" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL do Perfil" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Criar uma nova conta" -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Configurações do perfil" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Perfil desconhecido" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O usuário bloqueou você." -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Feed de mensagens públicas" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Erro na remoção do bloqueio." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Mensagens públicas" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Configurações do IM" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Publique um MicroID para meu endereço de Jabber/Gtalk." +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Você pode enviar e receber mensagens através dos [instant messages](%%doc.im%" +"%) Jabber/GTalk. Configure seu endereço e opções abaixo." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publique um MicroID para meu endereço de e-mail." +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Esta página não está disponível em um " -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Tags recentes" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Endereço de Jabber/GTalk já confirmado." -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Recuperar" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Aguardando a confirmação deste endereço. Procure em sua conta de Jabber/" +"GTalk por uma mensagem com mais instruções (Você adicionou %s à sua lista de " +"contatos?)" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Recuperar a senha" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Endereço do IM" -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Código de recuperação para usuário desconhecido." +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Endereço de Jabber ou GTalk, ex: \"usuario@exemplo.org\". Primeiro, " +"certifique-se de adicionar %s à sua lista de contatos no seu cliente de IM " +"ou no GTalk." -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registrar" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Envie-me as mensagens via Jabber/GTalk." -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Não é permitido o registro." +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Registro realizado com sucesso" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Envie-me respostas de pessoas que eu não estou seguindo através do Jabber/" +"GTalk." -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Recusar" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Publique um MicroID para meu endereço de Jabber/Gtalk." -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Lembrar neste computador" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Nenhuma ID de Jabber." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Perfil remoto sem referencia local" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Não foi possível normalizar essa ID do Jabber" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Assinatura remota" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Não é uma ID de Jabber válida" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Remover" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Essa já é sua ID do Jabber." -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Remover OpenID" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Esta ID do Jabber já pertence à outro usuário." -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/imsettings.php:327 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -"Remover a sua única OpenID pode fazer com que seja impossível você logar-se " -"novamente! Se deseja realmente removê-la, adicione outra OpenID antes." +"Um código de confirmação foi enviado para o endereço de IM que você " +"informou. Você deve permitir que %s envie mensagens para você." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Respostas" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Essa não é sua ID do Jabber." -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/inbox.php:59 #, php-format -msgid "Replies to %s" -msgstr "Respostas para %s" +msgid "Inbox for %s - page %d" +msgstr "Recebidas por %s - pág. %d" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Restaurar" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Recebidas por %s" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Restaurar a senha" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Essa é a sua caixa de mensagens recebidas, que lista as mensagens " +"particulares que você recebeu." -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Telefone para SMS" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Você deve estar logado para convidar outros usuários para usar o %s" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Configuração de SMS" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Não é um endereço de e-mail válido: %s" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Confirmação de SMS" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Convite(s) enviado(s)" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Igual à senha acima" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Convidar novos usuários" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Igual à senha acima. Obrigatório." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Você já está assinando esses usuários:" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Salvar" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Procurar" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "Estas pessoas já são usuárias e você as acompanha automaticamente:" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Procurar no fluxo de mensagens" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Convite(s) enviado(s) para as seguintes pessoas:" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format +#: actions/invite.php:150 msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -"Procurar mensagens em %%site.name%% por seu conteúdo. Separe os termos da " -"busca com espaços; eles devem ter 3 caracteres ou mais." +"Você será notificado assim que seus convidados aceitarem o convite e se " +"registrarem neste site. Obrigado por aumentar a comunidade!" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/invite.php:162 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"Procurar por pessoas em %%site.name%% por seus nomes, localidade ou " -"interesses. Separe os termos da busca com espaços; eles devem ter 3 " -"caracteres ou mais." +"Use esse formulário para convidar seus amigos e colegas para usar este " +"serviço." -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Selecione uma operadora" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Endereços de e-mail" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Enviar" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Endereços dos seus amigos que serão convidados (um por linha)" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Envie e-mails para esse endereço para publicar novas mensagens." +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Mensagem pessoal" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Envie-me notificações de novos assinantes por e-mail." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Envie-me as mensagens via Jabber/GTalk." +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Enviar" + +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s convidou você para se juntar ao %2$s" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 +#: actions/invite.php:228 +#, php-format msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Envie-me mensagens via SMS. Eu compreendo que isso pode gerar cobranças " -"exorbitantes da minha operadora." +"%1$s convidou você para se juntar ao %2$s (%3$s).\n" +"\n" +"%2$s é um serviço de microblogagem que lhe permite manter-se atualizado com " +"as pessoas que você conhece e com as que lhe interessam.\n" +"\n" +"Você também pode compartilhar notícias sobre você mesmo, seus pensamentos, " +"ou sua vida on-line com as pessoas que lhe conhecem. Também é ótimo para " +"encontrar novas pessoas que compartilham os mesmos interesses que você.\n" +"\n" +"%1$s disse:\n" +"\n" +"%4$s\n" +"\n" +"Você pode ver o perfil de %1$s no %2$s aqui:\n" +"\n" +"%5$s\n" +"\n" +"Se você quiser experimentar o serviço, clique no link abaixo para aceitar o " +"convite.\n" +"\n" +"%6$s\n" +"\n" +"Se não, você pode ignorar esta mensagem. Obrigado por sua paciência e seu " +"tempo.\n" +"\n" +"Cordialmente, %2$s\n" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/joingroup.php:60 +#, fuzzy +msgid "You must be logged in to join a group." msgstr "" -"Envie-me respostas de pessoas que eu não estou seguindo através do Jabber/" -"GTalk." +"Você deve estar autenticado para convidar outros usuários para usar o %s" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Configurações" +#: actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "Você já está assinando esses usuários:" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "As configurações foram salvas." +#: actions/joingroup.php:128 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Exibindo as tags mais populares da última semana" +#: actions/joingroup.php:135 lib/command.php:239 +#, fuzzy, php-format +msgid "%s joined group %s" +msgstr "%s / Favoritas de %s" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Alguém já está usando esta OpenID." +#: actions/leavegroup.php:60 +#, fuzzy +msgid "You must be logged in to leave a group." +msgstr "" +"Você deve estar autenticado para convidar outros usuários para usar o %s" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Aconteceu alguma coisa estranha..." +#: actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Você não está assinando esse perfil." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Desculpe-me, mas não é permitido o recebimento de emails." +#: actions/leavegroup.php:119 lib/command.php:278 +#, fuzzy +msgid "Could not find membership record." +msgstr "Não foi possível atualizar o registro do usuário." -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Desculpe-me, mas este não é seu endereço de e-mail para recebimento." +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Fonte" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Estatísticas" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Já está logado." -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "O OpenID armazenado não foi encontrado." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Assinar" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "O conteúdo da mensagem é inválido" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Assinantes" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Nome de usuário e/ou senha incorreto(s)." -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "A assinatura foi autorizada" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Erro na configuração do usuário." -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "A assinatura foi recusada" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Logar" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Assinaturas" +#: actions/login.php:243 +msgid "Login to site" +msgstr "" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Erro no sistema durante o envio do arquivo." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Apelido" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Tags" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Senha" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Texto" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Lembrar neste computador" -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Procurar por texto" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Entrar automaticamente sem pedir a senha. Não use em computadores " +"compartilhados!" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Essa OpenID não pertence à você." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Perdeu ou esqueceu sua senha?" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Esse endereço já foi confirmado." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Por razões de segurança, por favor, digite novamente seu nome de usuário e " +"senha antes de alterar suas configurações." -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Esse código de confirmação não é seu!" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " +"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." +"openidlogin%%)." -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Esse endereço de e-mail já pertence à outro usuário." +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Esse arquivo é muito grande." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Essa já é sua ID do Jabber." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Esse já é seu endereço de e-mail." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Esse já é seu número de telefone." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Nenhum status atual" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Essa não é sua ID do Jabber." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Esse não é seu endereço de email." +#: actions/newgroup.php:110 +#, fuzzy +msgid "Use this form to create a new group." +msgstr "Você pode criar uma nova conta usando esse formulário. " -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Esse não é seu número de telefone." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nova mensagem" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Isso é um endereço de IM errado." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Você não pode enviar uma mensagem para esse usuário." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Isso é um número de confirmação errado." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Nenhum conteúdo!" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Esse número de telefone já pertence à outro usuário." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Nenhum destinatário especificado." -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Está muito extenso. O tamanho máximo é de 140 caracteres." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Não envie uma mensagem para você mesmo(a); ao invés disso, apenas diga-a " +"para si." -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Está muito extenso. O tamanho máximo é de 255 caracteres." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Nova mensagem" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "O endereço \"%s\" foi confirmado para sua conta." +msgid "Direct message to %s sent" +msgstr "A mensagem direta para %s foi enviada" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "O endereço foi removido." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Erro no Ajax" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " -"Verifique as instruções do site para detalhes sobre como autorizar a " -"assinatura. Seu token de assinatura é:" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nova mensagem" + +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Mensagem publicada" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 +#: actions/noticesearch.php:68 +#, php-format msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " -"Verifique as instruções do site para maiores detalhes em como rejeitar " -"completamente a assinatura." +"Procurar mensagens em %%site.name%% por seu conteúdo. Separe os termos da " +"busca com espaços; eles devem ter 3 caracteres ou mais." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Estas são as pessoas que acompanham as mensagens de %s." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Procurar por texto" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Estas são as pessoas que acompanham as suas mensagens." +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Procurar por \"%s\" no fluxo de mensagens" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Estas são as pessoas cujas mensagens %s acompanha." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Estas são as pessoas cujas mensagens você acompanha." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "Estas pessoas já são usuárias e você as acompanha automaticamente:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Este código de confirmação é muito antigo. Por favor inicie novamente." +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:124 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Este formulário deve enviar-se automaticamente. Caso isso não ocorra, clique " -"no botão \"Enviar\" para ir para seu provedor de OpenID." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearchrss.php:89 #, 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 "" -"Esta é a primeira vez que você autenticou-se em %s. Por isso nós precisamos " -"conectar sua OpenID a uma conta local. Você pode criar uma conta nova, ou " -"conectar a uma conta sua já existente, caso tenha uma." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Este método requer POSTAGEM ou EXCLUSÃO." +msgid "Updates with \"%s\"" +msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Este método requer um POST." +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas as atualizações correspondentes ao termo \"%s\"" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Esta página não está disponível em um tipo de mídia que você aceita" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Esse usuário não permite ser chamado à atenção ou ainda não confirmou ou " +"configurou seu e-mail." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Fuso horário" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Chamada de atenção enviada" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "O fuso horário não foi selecionado." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Chamada de atenção enviada!" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "A mensagem não está associada a nenhum perfil" + +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Para assinar, você pode [autenticar-se](%%action.login%%), ou [registrar](%%" -"action.register%%) uma nova conta. Se você já tem uma conta em um [site de " -"microblogagem compatível](%%doc.openmublog%%), informe a URL do seu perfil " -"abaixo." +msgid "%1$s's status on %2$s" +msgstr "Mensagem de %1$s em %2$s" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Duas IDs de usuário ou screen_names devem ser informados." +#: actions/oembed.php:157 +msgid "content type " +msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL do seu site, blog ou perfil em outro site" +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL do seu perfil em outro serviço de microblogagem compatível" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Formato de dados não suportado." -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Submissão inesperada de formulário." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Procurar Pessoas" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Restauração inesperada da senha." +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Procurar mensagem" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Ação desconhecida" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Outras configurações" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Versão desconhecida do protocolo OMB." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Gerenciar várias outras opções." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -"Caso não seja especificado, os colaboradores deste site possuem direito " -"autoral sobre seu conteúdo e ele está disponível sob" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Tipo de endereço %s desconhecido" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Cancelar" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Versão do OMB não suportada" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Serviço de encolhimento automático a ser utilizado." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Formato de imagem não suportado." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configurações do perfil" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Atualizações via SMS" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Atualizações via instant messenger (IM)" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres)." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Atualizações de %1$s e amigos no %2$s!" +msgid "Outbox for %s - page %d" +msgstr "Enviadas para %s - pág. %d" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Atualizações de %1$s no %2$s!" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Enviar" +msgid "Outbox for %s" +msgstr "Envidas para %s" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Envie um novo \"avatar\" (imagem do usuário) aqui. Você não poderá editar a " -"imagem depois que enviar, então certifique-se que o formato dela esteja mais " -"ou menos quadrada. Ela deve estar sob a mesma licença do site. Use uma " -"imagem que pertença a você e que você queira compartilhar." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Envie uma nova imagem para o seu perfil" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Use esse formulário para convidar seus amigos e colegas para usar este " -"serviço." +"Essa é a sua caixa de mensagens enviadas, que lista as mensagens " +"particulares que você enviou." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Alterar a senha" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "O usuário que está está sendo acompanhado não existe." +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Altera a sua senha" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "O usuário não tem perfil." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "A senha foi salva." -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Apelido do usuário" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Senha antiga" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Usuário não encontrado." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nova senha" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "Em que fuso horário você normalmente está?" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "No mínimo 6 caracteres" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "E aí, %s?" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Confirmar" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "igual à senha acima" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Tipo de imagem errado para '%s'" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Alterar" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Tamanho da imagem errada em '%s'" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "A senha deve ter 6 ou mais caracteres." -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Sim" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "As senhas não coincidem." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Você já tem esta OpenID!" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "A senha antiga está incorreta" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser " -"desfeito." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Erro ao salvar usuário; inválido." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Você já está logado!" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Não é possível salvar a nova senha." -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Você já está assinando esses usuários:" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "A senha foi salva." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Você não é amigo do usuário especificado." +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar por pessoas em %%site.name%% por seus nomes, localidade ou " +"interesses. Separe os termos da busca com espaços; eles devem ter 3 " +"caracteres ou mais." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Você pode alterar sua senha aqui. Faça uma boa escolha!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Procurar pessoas" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Você pode criar uma nova conta para começar a publicar mensagens." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Não é uma etiqueta de pessoa válida: %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Você pode receber mensagens SMS do %%site.name%% através do e-mail." +msgid "Users self-tagged with %s - page %d" +msgstr "Usuários auto-etiquetados com %s - pág. %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Você pode remover uma OpenID da sua conta, clicando no botão \"Remover\"." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "O conteúdo da mensagem é inválido" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Você pode enviar e receber mensagens através dos [instant messages](%%doc.im%" -"%) Jabber/GTalk. Configure seu endereço e opções abaixo." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Configurações do perfil" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3134,2271 +2045,1930 @@ msgstr "" "Você pode atualizar suas informações pessoais aqui, para que as pessoas " "saibam mais sobre você." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Você pode usar a assinatura local!" +#: actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "Perfil desconhecido" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -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." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Você não nos enviou esse perfil" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Nome completo" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Você tem um novo endereço para publicação no %1$s.\n" -"\n" -"Para publicar novas mensagens, envie e-mails para %2$s .\n" -"\n" -"Mais instruções em %3$s.\n" -"\n" -"Atenciosamente,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Site" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Você não pode apagar o status de outro usuário." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL do seu site, blog ou perfil em outro site" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Você deve estar logado para convidar outros usuários para usar o %s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Você será notificado assim que seus convidados aceitarem o convite e se " -"registrarem neste site. Obrigado por aumentar a comunidade!" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Descrição" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Você foi identificado. Informe uma nova senha abaixo." +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Localização" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Sua URL de OpenID" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Seu apelido neste servidor, ou seu e-mail registrado." +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Tags" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites " -"com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "segundos atrás" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "%d dias atrás" +"Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " +"espaços" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "%d horas atrás" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Idioma" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "%d mins atrás" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Idioma preferencial" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "%d meses atrás" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Fuso horário" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "1 dia atrás" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "Em que fuso horário você normalmente está?" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "1 min atrás" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Assinar automaticamente à quem me assinar" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "1 mês atrás" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Descrição muito extensa (máximo 140 caracteres)." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "1 ano atrás" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "O fuso horário não foi selecionado." -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "1 hora atrás" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "excluir" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "em resposta à..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "responder" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "igual à senha acima" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etiqueta inválida: \"%s\"" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "tipo de arquivo não suportado" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Posteriores" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -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/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Não foi possível atualizar o usuário para assinar automaticamente." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Essa mensagem não é uma favorita!" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Não foi possível salvar o perfil." -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Não foi possível excluir a favorita." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Não foi possível salvar as etiquetas." -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Tornar favorita" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "As configurações foram salvas." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -"Envie-me um e-mail quando alguém adicionar alguma mensagem minha como " -"favorita." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Não foi possível recuperar o fluxo público." -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Essa mensagem já é uma favorita!" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Mensagens públicas" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Não foi possível criar a favorita." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Mensagens públicas" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Eliminar favorita" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed de mensagens públicas" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "Mensagens favoritas de %s" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed de mensagens públicas" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Feed de mensagens favoritas de %s" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed de mensagens públicas" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Recebidas por %s - pág. %d" - -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/public.php:179 #, php-format -msgid "Inbox for %s" -msgstr "Recebidas por %s" +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -"Essa é a sua caixa de mensagens recebidas, que lista as mensagens " -"particulares que você recebeu." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:186 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -"%1$s convidou você para unir-se a %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Logar-se automaticamente no futuro; " - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "Por questões de segurança, por favor, redigite seu " - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Logue-se com o seu nome de usuário e senha. " - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Nenhum destinatário especificado." - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Você não pode enviar uma mensagem para esse usuário." -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/public.php:233 +#, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"Não envie uma mensagem para você mesmo(a); ao invés disso, apenas diga-a " -"para si." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Esse usuário não existe" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nova mensagem" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Mensagem sem um perfil correspondente" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "A [OpenID](%%doc.openid%%) permite que você logue-se em vários sites" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Se você quiser adicionar uma OpenID à sua conta, " -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Será impossível logar-se caso você remova a sua única OpenID! " +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Você pode remover uma OpenID da sua conta " +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Fluxo de mensagens públicas" -#: actions/outbox.php:28 actions/outbox.php:58 +#: actions/publictagcloud.php:63 #, php-format -msgid "Outbox for %s - page %d" -msgstr "Enviadas para %s - pág. %d" +msgid "These are most popular recent tags on %s " +msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/publictagcloud.php:69 #, php-format -msgid "Outbox for %s" -msgstr "Envidas para %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -"Essa é a sua caixa de mensagens enviadas, que lista as mensagens " -"particulares que você enviou." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -"Procurar por pessoas no %%site.name%% pelo seu nome, localização ou " -"interesses. " - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Você pode atualizar as informações do seu perfil pessoal aqui " -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Usuário sem um perfil correspondente" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Esse código de confirmação é muito antigo. " +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Você já está logado!" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Se você perdeu ou esqueceu a sua" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Esse código de recuperação não existe." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Você foi identificado. Digite uma" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Não é um código de recuperação" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Seu apelido nesse servidor, " +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Código de recuperação para usuário desconhecido." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instruções para recuperar a sua senha " +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Erro com o código de confirmação." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "A nova senha foi salva com sucesso. " +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Este código de confirmação é muito antigo. Por favor inicie novamente." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "A senha deve ter 6 ou mais caracteres." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" +"Não foi possível atualizar o usuário com o endereço de e-mail confirmado." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"Parabéns, %s! E seja bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você " -"pode querer..." -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Você receberá uma mensagem por e-mail a qualquer momento, com " +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Para seguir alguem, você pode [autenticar-se](%%action.login%%)," +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Feed para favoritas de %s" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Não foi possível recuperar as mensagens favoritas." +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Seu apelido neste servidor, ou seu e-mail registrado." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Essa mensagem não existe." +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Recuperar" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Apenas o remetente e o destinatário podem ler essa mensagem." +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Restaurar a senha" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Mensagem para %1$s no %2$s" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Recuperar a senha" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Mensagem de %1$s no %2$s" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Foi solicitada a recuperação da senha" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Enviar uma mensagem" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Ação desconhecida" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Operadora móvel do seu celular. " +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "No mínimo 6 caracteres. E não se esqueça dela!" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Mensagem direta para %s" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Igual à senha acima" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Todas as mensagens diretas enviadas para %s" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Restaurar" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Mensagens diretas que você enviou" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Entre com o apelido ou endereço de e-mail." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Todas as mensagens diretas enviadas por %s" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" +"Não foi encontrado nenhum usuário com essa identificação ou endereço de " +"email." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Nenhuma mensagem de texto!" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Nenhum endereço de e-mail registrado para esse usuário." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "O usuário destinatário não foi encontrado." +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Erro ao salvar o endereço de confirmação" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"Não é possível enviar mensagens diretas para usuários que não são seus " -"amigos." - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favoritas de %s" +"As instruções para recuperar a sua senha foram enviadas para o endereço de e-" +"mail informado no seu cadastro." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s atualizações de favoritas por %s / %s." +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Restauração inesperada da senha." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s marcaram sua mensagem como favorita" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "A senha deve ter 6 caracteres ou mais." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s acabou de marcar sua mensagem de %2$s como uma favorita.\n" -"\n" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "A senha e a confirmação não coincidem." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Adicione a sua conta do Twitter para enviar suas mensagens para lá " -"automaticamente, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Configurações do Twitter" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Conta do Twitter" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Conta do Twitter já verificada." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Nome de usuário do Twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Sem espaços, por favor." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Senha do Twitter" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Enviar minhas mensagens para o Twitter automaticamente." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Enviar respostas \"@\" locais para o Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Assinar meus amigos do Twitter aqui." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." msgstr "" -"O nome de usuário pode ter, no máximo, 15 caracteres, sendo eles números, " -"letras maiúsculas e minúsculas e sublinhado (_)." +"A nova senha foi salva com sucesso. A partir de agora você já está logado." -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Não foi possível verificar suas credenciais no Twitter!" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Desculpe, somente convidados podem se registrar." -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Não foi possível obter as informações da conta \"%s\" no Twitter." +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erro com o código de confirmação." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Não foi possível salvar suas configurações do Twitter!" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Registro realizado com sucesso" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "As configurações do Twitter foram salvas." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Essa não é a sua conta no Twitter." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Não foi possível remover o usuário do Twitter." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "A conta do Twitter foi removida." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Não foi possível salvar as preferências do Twitter." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "As preferências do Twitter foram salvas." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Por favor, verifique estes detalhes para ter certeza que " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "A assinatura foi autorizada " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "A assinatura foi recusada, mas não " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Resultados do comando" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registrar" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "O comando foi completado" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Não é permitido o registro." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "O comando falhou" +#: actions/register.php:198 +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." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Desculpe, mas esse comando ainda não foi implementado." +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Não é um endereço de e-mail válido." -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Assinaturas: %1$s\n" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "O endereço de e-mail já existe." -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "O usuário não tem uma \"última mensagem\"" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Nome de usuário e/ou senha inválido(s)" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Mensagem marcada como favorita." +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 letras minúsculas ou números, sem pontuação ou espaços. Obrigatório." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Nome completo: %s" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "No mínimo 6 caracteres. Obrigatório." -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Localização: %s" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Igual à senha acima. Obrigatório." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Site: %s" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "E-mail" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Sobre: %s" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" -"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Nome completo (nome e sobrenome), de preferência seu nome \"real\"" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "A mensagem direta para %s foi enviada" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Meus textos e arquivos estão disponíveis sob " -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Ocorreu um erro durante o envio da mensagem direta." +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Especifique o nome do usuário que será assinado" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" exceto estes dados privados: senha, endereço de e-mail, endereço de IM, " +"número de telefone." -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/register.php:537 #, php-format -msgid "Subscribed to %s" -msgstr "Efetuada a assinatura de %s" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Parabéns, %s! E bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você pode " +"querer...\n" +"\n" +"* Acessar [seu perfil](%s) e publicar sua primeira mensagem.\n" +"* Adicionar um [endereço de Jabber/GTalk](%%%%action.imsettings%%%%) para " +"que você possa publicar via mensagens instantâneas.\n" +"* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que você conheça ou " +"que tenham os mesmos interesses que você. \n" +"* Atualizar suas [configurações de perfil](%%%%action.profilesettings%%%%) " +"para que outras pessoas saibam mais sobre você. \n" +"* Ler a [documentação on-line](%%%%doc.help%%%%) para conhecer os recursos " +"disponíveis. \n" +"\n" +"Obrigado por se registrar e esperamos que você aproveite o serviço." -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Especifique o nome do usuário que deixará de ser assinado" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Você receberá uma mensagem por e-mail a qualquer momento, com instruções " +"sobre como confirmar seu endereço.)" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/remotesubscribe.php:98 #, php-format -msgid "Unsubscribed from %s" -msgstr "Cancelada a assinatura de %s" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Para assinar, você pode [autenticar-se](%%action.login%%), ou [registrar](%%" +"action.register%%) uma nova conta. Se você já tem uma conta em um [site de " +"microblogagem compatível](%%doc.openmublog%%), informe a URL do seu perfil " +"abaixo." -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "O comando não foi implementado ainda." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Assinatura remota" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Notificação desligada." +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Assinar este usuário" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Não é possível desligar a notificação" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Apelido do usuário" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Notificação ligada." +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Apelido do usuário que você quer seguir" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Não é possível ligar a notificação." +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL do Perfil" + +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL do seu perfil em outro serviço de microblogagem compatível" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Comandos:\n" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Assinar" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Não foi possível inserir a mensagem." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "A URL do perfil é inválida (formato inválido)" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Não foi possível atualizar a mensagem com a nova URI." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Não é uma URL de perfil válida (nenhum documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Esse é um perfil local! Autentique-se para assinar." -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Usuário sem um perfil correspondente no sistema." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Não foi possível obter um token de requisição." -#: lib/mail.php:147 lib/mail.php:289 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" +msgid "Replies to %s" +msgstr "Respostas para %s" + +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "Respostas para %s" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" msgstr "" -"Você tem um novo endereço para publicação no %1$s.\n" -"\n" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/replies.php:151 #, php-format -msgid "New private message from %s" -msgstr "Nova mensagem particular de %s" +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Mensagens de %s" + +#: actions/replies.php:198 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"%1$s (%2$s) enviou uma mensagem particular para você:\n" -"\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "As caixas postais são legíveis somente pelo seu próprio usuário." +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Este formulário deve enviar-se automaticamente. " +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Favoritas" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensagem para %1$s no %2$s" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" msgstr "Mensagens favoritas de %s" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuário" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Não foi possível recuperar as mensagens favoritas." -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Recebidas" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed para favoritas de %s" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Suas mensagens recebidas" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed para favoritas de %s" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Enviadas" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed para favoritas de %s" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Suas mensagens enviadas" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Opções de integração com o Twitter" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "Para" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Não foi possível analisar a mensagem." +#: actions/showfavorites.php:205 +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/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showfavorites.php:207 #, php-format -msgid "%s and friends, page %d" -msgstr "%s e amigos, página %d" +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Você pode enviar seu avatar pessoal." +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Configurações do avatar" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Original" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Visualização" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Cortar" +#: actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "Esse perfil não existe." -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Ocorreu um problema com o seu token de sessão. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Selecione uma área quadrada da imagem para ser seu avatar" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Nossos dados do arquivo foi perdido." +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +#, fuzzy +msgid "Note" +msgstr "Mensagens" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Nosso arquivo foi perdido." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Tipo de arquivo desconhecido" +#: actions/showgroup.php:293 +#, fuzzy +msgid "Group actions" +msgstr "Outras opções" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Não foi especificado nenhum perfil." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Mensagens de %s" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Não foi encontrado nenhum perfil com esse ID." +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Mensagens de %s" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Bloquear usuário" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Mensagens de %s" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Você tem certeza que deseja bloquear esse usuário?" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Mensagens de %s" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Você já bloqueou esse usuário." +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +#, fuzzy +msgid "Members" +msgstr "Membro desde" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Não foi possível salvar a informação de bloqueio." +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +#, fuzzy +msgid "(None)" +msgstr "(nenhum)" -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "O endereço \"%s\" foi " +#: actions/showgroup.php:392 +msgid "All members" +msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Você está prestes a apagar permanentemente uma mensagem. " +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Estatísticas" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Adicionar aos favoritos" +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Criar" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:448 #, php-format -msgid "Edit %s group" -msgstr "Editar o grupo %s" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +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 "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Você deve estar logado para criar um grupo." +#: actions/showgroup.php:454 +#, fuzzy, 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 "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Nenhum apelido" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Esse grupo não existe" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Essa mensagem não existe." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Você deve ser o administrador do grupo para editá-lo" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Apenas o remetente e o destinatário podem ler essa mensagem." -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Use esse formulário para editar o grupo." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Mensagem para %1$s no %2$s" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "O apelido deve conter apenas letras minúsculas " +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Mensagem de %1$s no %2$s" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "descrição muito extensa (máximo 140 caracteres)." +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Mensagem publicada" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Não foi possível atualizar o grupo." +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Mensagens etiquetadas com %s" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "As configurações foram salvas." +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%s, page %d" +msgstr "Recebidas por %s - pág. %d" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Aguardando a confirmação neste endereço. " +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Mensagens de %s" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Cria um novo endereço de e-mail para publicar no; " +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed de mensagens de %s" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Envie-me um e-mail quando alguém " +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed de mensagens de %s" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Permitir que meus amigos chamem minha atenção e enviem-me um e-mail." +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed de mensagens de %s" -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Esse endereço de e-mail já pertence " +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Envidas para %s" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -"Um código de confirmação foi enviado para o endereço de e-mail que você " -"informou. " -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Erro no servidor - não foi possível obter o usuário!" +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: actions/facebookhome.php:196 +#: actions/showstream.php:198 #, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Se você deseja que o aplicativo %s atualize automaticamente " +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showstream.php:234 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Permitir que %s atualize meu status no Facebook" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Pular" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Nenhum conteúdo!" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Paginação" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Próximo" +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Anterior" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Configuração de SMS" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/smssettings.php:69 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Obrigado por convidar seus amigos para usar o %s" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Você pode receber mensagens SMS do %%site.name%% através do e-mail." -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Foram enviados convites para os seguintes usuários:" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Esta página não está disponível em um " -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "Você foi convidado por %s" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Número de telefone já habilitado para receber SMS." -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Convide seus amigos para usar o %s" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Aguardando a confirmação deste número de telefone." -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Amigos que já utilizam o %s:" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "Enviar convites" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Código de confirmação" -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Não foi possível remover o usuário do Facebook." +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Informe o código que você recebeu no seu telefone." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" -"Ocorreu um problema durante o salvamento das suas preferências de " -"sincronização!" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Telefone para SMS" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "As preferências de sincronização foram salvas." +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Número de telefone, sem pontuação ou espaços, com código de área" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -"Atualizar meu status do Facebook automaticamente com as minhas mensagens." - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Enviar respostas \"@\" para o Facebook." - -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Prefixo" +"Envie-me mensagens via SMS. Eu compreendo que isso pode gerar cobranças " +"exorbitantes da minha operadora." -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Um prefixo para acrescentar às mensagens." +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Nenhum número de telefone." -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "Se você deseja que %s atualize automaticamente " +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Não foi selecionada nenhuma operadora." -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Preferências de sincronização" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Esse já é seu número de telefone." -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Excluir a favorita" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Esse número de telefone já pertence à outro usuário." -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Mensagens populares" +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"Um código de confirmação foi enviado para o número de telefone que você " +"informou. Verifique sua caixa de entrada (e de spam!) para o código e " +"instruções sobre como usá-lo." -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Mensagens populares, pág. %d" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Isso é um número de confirmação errado." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "As etiquetas mais populares no site agora." +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Esse não é seu número de telefone." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Usuários de destaque" +#: actions/smssettings.php:465 +#, fuzzy +msgid "Mobile carrier" +msgstr "Selecione uma operadora" -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Usuários de destaque, pág. %d" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Selecione uma operadora" -#: actions/featured.php:99 +#: actions/smssettings.php:476 #, php-format -msgid "A selection of some of the great users on %s" +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 "" +"A operadora móvel do seu celular. Se você conhece uma operadora que aceita " +"SMS via e-mail que não está listada aqui, informe-nos enviando uma mensagem " +"para %s." -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Esse usuário bloqueou o seu pedido de assinatura." +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Não foi digitado nenhum código" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Você não está assinando esse perfil." -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Logo do grupo" +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Não foi possível salvar a assinatura." -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Não é um usuário local." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "O avatar foi atualizado." +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Assinado" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "Não foi possível atualizar o avatar." +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Assinantes" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/subscribers.php:52 #, php-format -msgid "%s group members" +msgid "%s subscribers, page %d" msgstr "" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Estas são as pessoas que acompanham as suas mensagens." -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Estas são as pessoas que acompanham as mensagens de %s." -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/groups.php:64 +#: actions/subscribers.php:110 #, php-format -msgid "Groups, page %d" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/groups.php:90 +#: actions/subscribers.php:114 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Criar uma nova conta" +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "%s assinaturas" -#: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Procurar por pessoas no %%site.name%% pelo seu nome, localização ou " -"interesses. " +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "%s assinaturas, página %d" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "Procurar pessoas" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Estas são as pessoas cujas mensagens você acompanha." -#: actions/imsettings.php:70 -#, fuzzy -msgid "You can send and receive notices through " -msgstr "Você não pode enviar uma mensagem para esse usuário." +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "Estas são as pessoas cujas mensagens %s acompanha." -#: actions/imsettings.php:120 +#: actions/subscriptions.php:121 #, php-format -msgid "Jabber or GTalk address, " +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Envie-me as mensagens via Jabber/GTalk." - -#: actions/imsettings.php:321 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Nenhum código de confirmação." - -#: actions/joingroup.php:65 actions/joingroup.php:60 -#, fuzzy -msgid "You must be logged in to join a group." -msgstr "" -"Você deve estar autenticado para convidar outros usuários para usar o %s" +msgid "%s is not listening to anyone." +msgstr "%1$s agora está acompanhando " -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -#, fuzzy -msgid "You are already a member of that group" -msgstr "Você já está assinando esses usuários:" +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, fuzzy, php-format -msgid "%s joined group %s" -msgstr "%s / Favoritas de %s" +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Você não está autenticado" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Nenhum argumento de ID." -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -#, fuzzy -msgid "You must be logged in to leave a group." -msgstr "" -"Você deve estar autenticado para convidar outros usuários para usar o %s" +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "Tag %s" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 +#: actions/tagother.php:77 lib/userprofile.php:75 #, fuzzy -msgid "No such group." -msgstr "Essa etiqueta não existe." +msgid "User profile" +msgstr "O usuário não tem perfil." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -#, fuzzy -msgid "You are not a member of that group." -msgstr "Você não está assinando esse perfil." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "" -#: actions/leavegroup.php:100 +#: actions/tagother.php:141 #, fuzzy -msgid "You may not leave a group while you are its administrator." -msgstr "Você não pode apagar o status de outro usuário." +msgid "Tag user" +msgstr "Etiquetas" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -#, fuzzy -msgid "Could not find membership record." -msgstr "Não foi possível atualizar o registro do usuário." +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etiquetas desse usuário (letras, números, -, ., e _), separadas por vírgulas " +"ou espaços" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Não foi possível salvar as etiquetas." -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +"Use esse formulário para adicionar etiquetas aos seus assinantes ou " +"assinados." -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Nenhum status atual" +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Mensagens etiquetadas com %s" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed de mensagens de %s" -#: actions/newgroup.php:115 actions/newgroup.php:110 -#, fuzzy -msgid "Use this form to create a new group." -msgstr "Você pode criar uma nova conta usando esse formulário. " +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed de mensagens de %s" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "Não foi possível criar a favorita." +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed de mensagens de %s" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "Não foi possível salvar a assinatura." +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Essa etiqueta não existe." -#: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy -msgid "That's too long. " -msgstr "Esse arquivo é muito grande." +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "O método da API está em construção." -#: actions/newmessage.php:134 -#, fuzzy -msgid "Don't send a message to yourself; " -msgstr "Você não pode enviar uma mensagem para esse usuário." +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Nenhuma ID de perfil na requisição." -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Mensagem publicada" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Nenhum perfil com essa ID." -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Erro no Ajax" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Cancelado" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Esse usuário não permite ser chamado à atenção ou ainda não confirmou ou " -"configurou seu e-mail." -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "Chamada de atenção enviada" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "Chamada de atenção enviada!" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Autorizar a assinatura" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#: actions/userauthorization.php:110 #, fuzzy -msgid "OpenID login" -msgstr "Autenticar-se via OpenID" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " +"mensagens deste usuário. Se você não solicitou seguir as mensagens de " +"alguém, clique em \"Cancelar\"." -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "Remover OpenID" +#: actions/userauthorization.php:188 +msgid "License" +msgstr "" -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Outras configurações" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Aceitar" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Gerenciar várias outras opções." +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Assinar este usuário" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Encolhimento automático de URL" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Recusar" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Serviço" +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s assinaturas" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Serviço de encolhimento automático a ser utilizado." +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Nenhum pedido de autorização!" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres)." +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "A assinatura foi autorizada" -#: actions/passwordsettings.php:69 +#: actions/userauthorization.php:249 #, fuzzy -msgid "Change your password." -msgstr "Altera a sua senha" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " +"Verifique as instruções do site para detalhes sobre como autorizar a " +"assinatura. Seu token de assinatura é:" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "A assinatura foi recusada" + +#: actions/userauthorization.php:261 #, fuzzy -msgid "Password change" -msgstr "A senha foi salva." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " +"Verifique as instruções do site para maiores detalhes em como rejeitar " +"completamente a assinatura." -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/userauthorization.php:296 #, php-format -msgid "Not a valid people tag: %s" -msgstr "Não é uma etiqueta de pessoa válida: %s" +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/userauthorization.php:301 #, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Usuários auto-etiquetados com %s - pág. %d" +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" -#: actions/peopletag.php:91 +#: actions/userauthorization.php:338 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Esses são os usuários que se auto-etiquetaram como \"%s\" " +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Não é possível ler a URL '%s' do avatar" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imagem errado para '%s'" + +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Nenhuma ID." -#: actions/profilesettings.php:91 actions/profilesettings.php:99 +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #, fuzzy -msgid "Profile information" -msgstr "Perfil desconhecido" +msgid "Profile design" +msgstr "Configurações do perfil" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -"Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " -"espaços" -#: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " -msgstr "Assinar automaticamente à quem me assinar (melhor para não humanos)" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/usergroups.php:64 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Etiqueta inválida: \"%s\"" +msgid "%s groups, page %d" +msgstr "Grupos de %s, página %d" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Não foi possível salvar as etiquetas." +#: actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Pesquisar por pessoa ou texto" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/usergroups.php:153 #, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Mensagens públicas" +msgid "%s is not a member of any group." +msgstr "Você não está assinando esse perfil." -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Não foi possível recuperar o fluxo público." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/public.php:220 +#: classes/File.php:137 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" - -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "Fluxo de mensagens públicas" -#: actions/publictagcloud.php:63 +#: classes/File.php:147 #, php-format -msgid "These are most popular recent tags on %s " +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Desculpe, somente convidados podem se registrar." +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Não foi possível inserir a mensagem." -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Você não pode se registrar se não aceitar a licença." +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Não foi possível atualizar a mensagem com a nova URI." -#: actions/register.php:286 -#, fuzzy -msgid "With this form you can create " -msgstr "Você pode criar uma nova conta usando esse formulário. " +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Erro no banco de dados durante a inserção de hashtag: %s" -#: actions/register.php:368 +#: classes/Notice.php:179 #, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços" +msgid "Problem saving notice. Too long." +msgstr "Problema ao salvar a mensagem." -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Problema no salvamento da mensagem. Usuário desconhecido." -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "URL para seu site, blog ou perfil em outro site" +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " +"novamente daqui a alguns minutos." -#: actions/register.php:404 +#: classes/Notice.php:194 #, fuzzy -msgid "Describe yourself and your " -msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." - -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" - -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -" exceto estes dados privados: senha, endereço de e-mail, endereço de " -"mensageiro instantâneo, número de telefone." +"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " +"novamente daqui a alguns minutos." -#: actions/register.php:471 -#, fuzzy, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" -"Parabéns, %s! E seja bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você " -"pode querer..." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Você foi banido de publicar mensagens nesse site." -#: actions/register.php:495 -#, fuzzy -msgid "(You should receive a message by email " -msgstr "(Você receberá uma mensagem por e-mail a qualquer momento, com " +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Problema ao salvar a mensagem." -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Esse é um perfil local! Autentique-se para assinar." +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "Erro no banco de dados na inserção da reposta: %s" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: classes/User.php:333 #, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "Respostas para %s" +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensagem para %1$s no %2$s" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s favorite notices, page %d" -msgstr "Mensagens favoritas de %s" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Perfil" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Alterar as suas configurações de perfil" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Enviar um avatar" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy -msgid "Group profile" -msgstr "Esse perfil não existe." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Altere a sua senha" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Configurações de uso do e-mail" + +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Note" -msgstr "Mensagens" +msgid "Design your profile" +msgstr "O usuário não tem perfil." -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -#, fuzzy -msgid "Group actions" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Outras" + +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "Outras opções" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "Mensagens de %s" +#: lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "%s - %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -#, fuzzy -msgid "Members" -msgstr "Membro desde" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Página sem título" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -#, fuzzy -msgid "(None)" -msgstr "(nenhum)" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Navegação primária no site" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" +#: lib/action.php:430 +msgid "Home" +msgstr "Início" -#: actions/showgroup.php:378 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Perfil pessoal e mensagens dos amigos" -#: actions/showmessage.php:98 -#, fuzzy -msgid "Only the sender and recipient " -msgstr "Apenas o remetente e o destinatário podem ler essa mensagem." +#: lib/action.php:432 +msgid "Account" +msgstr "Conta" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, fuzzy, php-format -msgid "%s, page %d" -msgstr "Recebidas por %s - pág. %d" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Alterar email, avatar, senha, perfil" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Perfil" +#: lib/action.php:435 +msgid "Connect" +msgstr "Conectar" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 +#: lib/action.php:435 #, fuzzy -msgid "User profile" -msgstr "O usuário não tem perfil." +msgid "Connect to services" +msgstr "Não foi possível redirecionar para o servidor: %s" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Convidar" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -#, fuzzy -msgid "User actions" -msgstr "Outras opções" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Convide seus amigos e colegas para unir-se a você no %s" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -#, fuzzy -msgid "Send a direct message to this user" -msgstr "Você não pode enviar uma mensagem para esse usuário." +#: lib/action.php:445 +msgid "Logout" +msgstr "Sair" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -#, fuzzy -msgid "Message" -msgstr "Nova mensagem" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Sair deste site" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "Assinantes" +#: lib/action.php:450 +msgid "Create an account" +msgstr "Criar uma nova conta" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Entrar" -#: actions/showstream.php:542 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Ajuda" -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "Número de telefone, sem pontuação ou espaços, com código de área" +#: lib/action.php:456 +msgid "Help me!" +msgstr "Ajuda" + +#: lib/action.php:459 +msgid "Search" +msgstr "Procurar" + +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Pesquisar por pessoa ou texto" -#: actions/smssettings.php:162 +#: lib/action.php:480 #, fuzzy -msgid "Send me notices through SMS; " -msgstr "Envie-me as mensagens via Jabber/GTalk." +msgid "Site notice" +msgstr "Nova mensagem" + +#: lib/action.php:546 +msgid "Local views" +msgstr "" -#: actions/smssettings.php:335 +#: lib/action.php:612 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Aguardando a confirmação deste número de telefone." +msgid "Page notice" +msgstr "Nova mensagem" -#: actions/smssettings.php:453 actions/smssettings.php:465 +#: lib/action.php:714 #, fuzzy -msgid "Mobile carrier" -msgstr "Selecione uma operadora" +msgid "Secondary site navigation" +msgstr "Navegação pelas assinaturas" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Você não está assinando esse perfil." +#: lib/action.php:721 +msgid "About" +msgstr "Sobre" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Não foi possível salvar a assinatura." +#: lib/action.php:723 +msgid "FAQ" +msgstr "FAQ" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Não é um usuário local." +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Assinado" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Privacidade" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "Assinantes" +#: lib/action.php:732 +msgid "Source" +msgstr "Fonte" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" +#: lib/action.php:734 +msgid "Contact" +msgstr "Contato" -#: actions/subscribers.php:63 +#: lib/action.php:736 #, fuzzy -msgid "These are the people who listen to " -msgstr "Estas são as pessoas que acompanham as mensagens de %s." +msgid "Badge" +msgstr "Chamar a atenção" -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "Estas são as pessoas que acompanham as mensagens de %s." +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "" -#: actions/subscriptions.php:52 +#: lib/action.php:767 #, php-format -msgid "%s subscriptions" -msgstr "%s assinaturas" +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** é um serviço de microblogagem disponibilizado por [%%site." +"broughtby%%](%%site.broughtbyurl%%). " -#: actions/subscriptions.php:54 +#: lib/action.php:769 #, php-format -msgid "%s subscriptions, page %d" -msgstr "%s assinaturas, página %d" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** é um serviço de microblogagem. " -#: actions/subscriptions.php:65 +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Ele funciona sob o software de microblogagem [StatusNet](http://status." +"net/), versão %s, disponível sob a [GNU Affero General Public License] " +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." + +#: lib/action.php:785 #, fuzzy -msgid "These are the people whose notices " -msgstr "Estas são as pessoas cujas mensagens %s acompanha." +msgid "Site content license" +msgstr "Procure no conteúdo das mensagens" -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "Estas são as pessoas que acompanham as mensagens de %s." +#: lib/action.php:794 +#, fuzzy +msgid "All " +msgstr "Todas" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" - -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Mensagens etiquetadas com %s" - -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Você não está autenticado" - -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Nenhum argumento de ID." +#: lib/action.php:799 +msgid "license." +msgstr "licença" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Tag %s" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Paginação" -#: actions/tagother.php:141 -#, fuzzy -msgid "Tag user" -msgstr "Etiquetas" +#: lib/action.php:1062 +msgid "After" +msgstr "Próximo" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Etiquetas desse usuário (letras, números, -, ., e _), separadas por vírgulas " -"ou espaços" +#: lib/action.php:1070 +msgid "Before" +msgstr "Anterior" -#: actions/tagother.php:164 +#: lib/action.php:1119 msgid "There was a problem with your session token." msgstr "" "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você." - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Não foi possível salvar as etiquetas." - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -"Use esse formulário para adicionar etiquetas aos seus assinantes ou " -"assinados." - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Essa etiqueta não existe." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Microblogs etiquetados com %s" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Não foi possível bloquear o usuário." -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Não foi possível desbloquear o usuário." - -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Não encontrado." - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -"Adicione a sua conta do Twitter para enviar suas mensagens para lá " -"automaticamente, " -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Nome de usuário do Twitter" +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Senha do Twitter" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Amigos do Twitter" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Nome de usuário deve ter números," +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Resultados do comando" -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "Não foi possível obter informações da conta" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "O comando foi completado" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Erro na remoção do bloqueio." +#: lib/channel.php:221 +msgid "Command failed" +msgstr "O comando falhou" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Nenhuma ID de perfil na requisição." +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Desculpe, mas esse comando ainda não foi implementado." -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Nenhum perfil com essa ID." +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"Não foi possível atualizar o usuário com o endereço de e-mail confirmado." -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Cancelado" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "Grupos de %s" +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Chamada de atenção enviada" -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: lib/command.php:126 #, php-format -msgid "%s groups, page %d" -msgstr "Grupos de %s, página %d" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Problema no salvamento da mensagem. Usuário desconhecido." - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " -"novamente daqui a alguns minutos." - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Você foi banido de publicar mensagens nesse site." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Enviar um avatar" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Outras" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "O usuário não tem uma \"última mensagem\"" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Outras opções" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Mensagem marcada como favorita." -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/command.php:315 #, php-format -msgid "%s - %s" -msgstr "%s - %s" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Página sem título" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Navegação primária no site" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Perfil pessoal e mensagens dos amigos" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Pesquisar por pessoa ou texto" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Conta" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Alterar email, avatar, senha, perfil" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Conectar por IM, SMS, Twitter" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Sair deste site" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "Nome completo: %s" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Entrar" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Localização: %s" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Criar uma nova conta" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Site: %s" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Entrar com OpenID" +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "Sobre: %s" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Ajuda" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "Nova mensagem" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Ocorreu um erro durante o envio da mensagem direta." -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" +"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Nova mensagem" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Responder a esta mensagem" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#: lib/command.php:441 #, fuzzy -msgid "Secondary site navigation" -msgstr "Navegação pelas assinaturas" +msgid "Error saving notice." +msgstr "Problema ao salvar a mensagem." -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Especifique o nome do usuário que será assinado" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -#, fuzzy -msgid "All " -msgstr "Todas" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Efetuada a assinatura de %s" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "licença" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Especifique o nome do usuário que deixará de ser assinado" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "Bloquear usuário" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Cancelada a assinatura de %s" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Bloquear" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "O comando não foi implementado ainda." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Tirar das favoritas" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Notificação desligada." -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Para usar a Aplicação do Facebook %s você precisa autenticar-se" +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Não é possível desligar a notificação" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " uma nova conta." +#: lib/command.php:574 +msgid "Notification on." +msgstr "Notificação ligada." -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Publicado" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Não é possível ligar a notificação." -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Não foi possível criar o formulário OpenID: %s" + +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" + +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Nenhum código de confirmação." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Entrar" + +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Atualizações via instant messenger (IM)" + +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Atualizações via SMS" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Enviar" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Altere a sua senha" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectar" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Procurar" + +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Texto" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Lista" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Tirar das favoritas" + +#: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" msgstr "Acrescentar às favoritas" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Tornar favorita" + #: lib/feedlist.php:64 msgid "Export data" msgstr "Exportar os dados" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + #: lib/galleryaction.php:121 msgid "Filter tags" msgstr "Filtrar etiquetas" @@ -5407,62 +3977,84 @@ msgstr "Filtrar etiquetas" msgid "All" msgstr "Todas" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecione uma operadora" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Etiqueta" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Selecione uma etiqueta para reduzir a lista" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" msgstr "Ir" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL para seu site, blog ou perfil em outro site" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Descreva o grupo ou tópico em 140 caracteres." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descreva o grupo ou tópico em 140 caracteres." + #: lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Descreva o grupo ou tópico em 140 caracteres." - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Grupo" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Admin" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquear usuário" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Editar propriedades do grupo %s" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Adicionar ou editar logo de %s" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Adicionar ou editar logo de %s" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos com mais membros" @@ -5477,8 +4069,42 @@ msgid "Tags in %s group's notices" msgstr "Etiquetas nas mensagens do grupo %s" #: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "Esta página não está disponível em um " +msgid "This page is not available in a media type you accept" +msgstr "Esta página não está disponível em um tipo de mídia que você aceita" + +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Você pode enviar seu avatar pessoal." + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Envio parcial." + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Erro no sistema durante o envio do arquivo." + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Imagem inválida ou arquivo corrompido." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Formato de imagem não suportado." + +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Nosso arquivo foi perdido." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Tipo de arquivo desconhecido" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed de mensagens de %s" #: lib/joinform.php:114 msgid "Join" @@ -5488,43 +4114,87 @@ msgstr "Entrar" msgid "Leave" msgstr "Sair" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Autentique-se com um nome de usuário e senha" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Cadastre-se para uma nova conta" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Autentique-se ou registre-se como um OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "As caixas postais são legíveis somente pelo seu próprio usuário." + +#: lib/mailbox.php:139 +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:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " de " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Confirmação do endereço de e-mail" -#: lib/mail.php:175 +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" -msgstr "" -"Olá, %s.\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" "\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:235 #, php-format -msgid "%1$s is now listening to " -msgstr "%1$s agora está acompanhando " +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s agora está acompanhando suas mensagens em %2$s." + +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s agora está acompanhando suas mensagens em %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordialmente,\n" +"%4$s.\n" -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Localização: %s\n" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Site: %s\n" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -5533,65 +4203,227 @@ msgstr "" "Descrição: %s\n" "\n" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Novo endereço de e-mail para postar para %s" + +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Você tem um novo endereço para publicação no %1$s.\n" +"\n" +"Para publicar novas mensagens, envie e-mails para %2$s .\n" +"\n" +"Mais instruções em %3$s.\n" +"\n" +"Atenciosamente,\n" +"%4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "Status de %s" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Confirmação de SMS" + +#: lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Você teve a atenção chamada por %s" -#: lib/mail.php:465 +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Nova mensagem particular de %s" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s marcaram sua mensagem como favorita" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) quer saber como você está " +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" -#: lib/mail.php:555 +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Não foi possível excluir a favorita." + +#: lib/mediafile.php:270 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s acabou de marcar sua mensagem de %2$s" +msgid " Try using another %s format." +msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "De" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +#: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar uma mensagem direta" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Enviar uma mensagem" +#: lib/messageform.php:146 +msgid "To" +msgstr "Para" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 +#: lib/messageform.php:162 lib/noticeform.php:173 msgid "Available characters" msgstr "Caracteres disponíveis" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "em resposta à" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Enviar uma mensagem" + +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "E aí, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Nenhum conteúdo!" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Excluir esta mensagem" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Excluir" - #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "Chamar a atenção deste usuário" @@ -5604,41 +4436,140 @@ msgstr "Chamar a atenção" msgid "Send a nudge to this user" msgstr "Chame a atenção deste usuário" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "Etiquetas nas mensagens de %s" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Erro na inserção do novo perfil" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(nenhum)" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Erro na inserção do avatar" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Público" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Erro na inserção do perfil remoto" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Grupos de usuário" +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Excluir a mensagem" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Etiquetas recentes" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Não foi possível inserir a nova assinatura." + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Pessoal" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Respostas" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Favoritas" + +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuário" + +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Recebidas" + +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Suas mensagens recebidas" + +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Enviadas" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Suas mensagens enviadas" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Etiquetas nas mensagens de %s" + +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Assinaturas" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Todas as assinaturas" + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Assinantes" + +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Assinantes" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuário" + +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Membro desde" + +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Público" + +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Grupos de usuário" + +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Etiquetas recentes" + +#: lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacada" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +#: lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Procurar" + +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Procurar" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Pessoas" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Procure por pessoas neste site" + #: lib/searchgroupnav.php:82 msgid "Notice" msgstr "Mensagem" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Procure no conteúdo das mensagens" + #: lib/searchgroupnav.php:85 msgid "Find groups on this site" msgstr "Procurar por grupos neste site" @@ -5647,35 +4578,62 @@ msgstr "Procurar por grupos neste site" msgid "Untitled section" msgstr "Seção sem título" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Pessoas que %s assina" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Assinantes de %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "O grupo %s é membro de" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Convide seus amigos e colegas para unir-se a você no %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(nenhum)" + +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/subs.php:53 lib/subs.php:52 +#: lib/subs.php:52 msgid "User has blocked you." msgstr "O usuário bloqueou você." -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Assinar este usuário" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Não foi possível assinar." + +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Não foi possível fazer com que o outros o sigam." + +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Não é seguido!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Não foi possível excluir a assinatura." #: lib/tagcloudsection.php:56 msgid "None" @@ -5685,2093 +4643,109 @@ msgstr "Nenhuma" msgid "Top posters" msgstr "Quem mais publica" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Desbloquear este usuário" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Desbloquear" - #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Cancelar a assinatura deste usuário" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed para os amigos de %s" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed para os amigos de %s" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Feed para os amigos de %s" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Cancelar" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/userprofile.php:116 #, fuzzy -msgid "You and friends" -msgstr "%s e amigos" +msgid "Edit Avatar" +msgstr "Avatar" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Você pode enviar seu avatar pessoal." +#: lib/userprofile.php:236 +#, fuzzy +msgid "User actions" +msgstr "Outras opções" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/userprofile.php:248 #, fuzzy -msgid "Avatar deleted." -msgstr "O avatar foi atualizado." +msgid "Edit profile settings" +msgstr "Configurações do perfil" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#: lib/userprofile.php:272 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser " -"desfeito." +msgid "Send a direct message to this user" +msgstr "Você não pode enviar uma mensagem para esse usuário." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#: lib/userprofile.php:273 #, fuzzy -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." +msgid "Message" +msgstr "Nova mensagem" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "segundos atrás" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "1 min atrás" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: lib/util.php:848 #, php-format -msgid "Okay, do it!" -msgstr "" +msgid "about %d minutes ago" +msgstr "%d mins atrás" -#: actions/facebooksettings.php:124 -#, 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 "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "1 hora atrás" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: lib/util.php:852 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" +msgid "about %d hours ago" +msgstr "%d horas atrás" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Selecione uma área quadrada da imagem para ser seu avatar" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "1 dia atrás" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Microblog por %s" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "%d dias atrás" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Procurar por pessoas em %%site.name%% por seus nomes, localidade ou " -"interesses. Separe os termos da busca com espaços; eles devem ter 3 " -"caracteres ou mais." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "1 mês atrás" -#: actions/groups.php:90 +#: lib/util.php:860 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +msgid "about %d months ago" +msgstr "%d meses atrás" -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Ocorreu um erro durante o envio da mensagem direta." +#: lib/util.php:862 +msgid "about a year ago" +msgstr "1 ano atrás" -#: actions/noticesearch.php:91 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Procurar por \"%s\" no fluxo de mensagens" +msgid "%s is not a valid color!" +msgstr "A URL do site informada não é válida." -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -"Por razões de segurança, por favor, digite novamente seu nome de usuário e " -"senha antes de alterar suas configurações." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Feed de mensagens públicas" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Feed de mensagens públicas" - -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Feed de mensagens públicas" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" exceto estes dados privados: senha, endereço de e-mail, endereço de IM, " -"número de telefone." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Criar" - -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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 "" - -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Esse perfil não existe." - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Perfil" - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Feed de mensagens de %s" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Feed de mensagens de %s" - -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Feed de mensagens de %s" - -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Envidas para %s" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Avatar" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Configurações do perfil" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"Um código de confirmação foi enviado para o número de telefone que você " -"informou. Verifique sua caixa de entrada (e de spam!) para o código e " -"instruções sobre como usá-lo." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Esse usuário não existe" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Adicione a sua conta do Twitter para enviar suas mensagens para lá " -"automaticamente, " - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Não foi possível obter as informações da conta \"%s\" no Twitter." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " -"mensagens deste usuário. Se você não solicitou seguir as mensagens de " -"alguém, clique em \"Cancelar\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Pesquisar por pessoa ou texto" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " -"novamente daqui a alguns minutos." - -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Conectar por IM, SMS, Twitter" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Chamar a atenção" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "Para usar a Aplicação do Facebook %s você precisa autenticar-se" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s agora está acompanhando suas mensagens em %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordialmente,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Procurar" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Esse documento não existe." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Bloquear usuário" - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "O usuário não tem perfil." - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s e amigos, página %d" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Não foi possível desbloquear o usuário." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Código de confirmação" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Não é possível excluir esta mensagem." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Etiqueta inválida: \"%s\"" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Este apelido já está em uso. Tente outro." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Não foi possível criar a favorita." - -#: 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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Nova mensagem" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Nova mensagem" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Não é um apelido válido." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Não foi especificado nenhum perfil." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "O usuário bloqueou você." - -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Você não está assinando esse perfil." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Bloquear usuário" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Você deve estar logado para criar um grupo." - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Outras opções" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Não foi possível atualizar o usuário." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Não foi possível salvar suas configurações do Twitter!" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "As preferências de sincronização foram salvas." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "Você deve ser o administrador do grupo para editá-lo" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Admin" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Nenhum resultado" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "O usuário bloqueou você." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Nova mensagem" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Não foi possível salvar o perfil." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites " -"com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Configurações do perfil" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se você esqueceu ou perdeu sua senha, você pode receber uma nova no endereço " -"de e-mail que armazenou em sua conta." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Você foi identificado. Informe uma nova senha abaixo." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Foi solicitada a recuperação da senha" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Erro com o código de confirmação." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Assinar este usuário" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Mensagens favoritas de %s" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Mensagens de %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Mensagens de %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Mensagens de %s" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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 "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy -msgid "Admins" -msgstr "Admin" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Não é um usuário local." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Mensagens etiquetadas com %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Mensagens de %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s agora está acompanhando " - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Feed de mensagens de %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Feed de mensagens de %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Essa mensagem já é uma favorita!" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Essa mensagem não é uma favorita!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Não foi possível recuperar o fluxo público." - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Nenhum destinatário especificado." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Não foi possível encontrar nenhum status." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Atualizações respondendo à %2$s" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Atualizações de %1$s no %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "%s assinaturas" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Configurações do perfil" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Você não está assinando esse perfil." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Problema ao salvar a mensagem." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Mensagem para %1$s no %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "O usuário não tem perfil." - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Perfil" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Enviar" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Altere a sua senha" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Conectar" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Procurar" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Lista" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Bloquear" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Bloquear usuário" - -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Adicionar ou editar logo de %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Nenhum conteúdo!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Usuário" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Procurar" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "A URL do site informada não é válida." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Essa etiqueta não existe." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Mensagem direta para %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Não é possível seguir o usuário: Usuário não encontrado." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "descrição muito extensa (máximo 140 caracteres)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Você já está assinando esses usuários:" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Você não está assinando esse perfil." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Grupos de %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "O grupo %s é membro de" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Outras opções" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Está muito extenso. O tamanho máximo é de 140 caracteres." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Formato de imagem não suportado." - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "descrição muito extensa (máximo 140 caracteres)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Atualizações de %1$s no %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "O usuário que está está sendo acompanhado não existe." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Não autorizado." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "" -"Não foi possível converter os tokens de requisição para tokens de acesso." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Versão desconhecida do protocolo OMB." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Essa mensagem não existe." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Nosso arquivo foi perdido." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Atualizações de %1$s no %2$s!" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Esta página não está disponível em um " - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " -"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." -"openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Todas as atualizações correspondentes ao termo \"%s\"" - -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Descrição muito extensa (máximo 140 caracteres)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Não é uma URL de perfil válida (nenhum documento YADIS)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Esse é um perfil local! Autentique-se para assinar." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Não foi possível obter um token de requisição." - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Mensagens de %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Mensagem para %1$s no %2$s" - -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed para favoritas de %s" - -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed para favoritas de %s" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Feed para favoritas de %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "Mensagens de %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Mensagem publicada" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Esta página não está disponível em um " - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Feed de mensagens de %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " -"mensagens deste usuário. Se você não solicitou seguir as mensagens de " -"alguém, clique em \"Cancelar\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " -"Verifique as instruções do site para detalhes sobre como autorizar a " -"assinatura. Seu token de assinatura é:" - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " -"Verifique as instruções do site para maiores detalhes em como rejeitar " -"completamente a assinatura." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Não é possível ler a URL '%s' do avatar" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Tipo de imagem errado para '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Não foi possível redirecionar para o servidor: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Procure no conteúdo das mensagens" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "" -"Não foi possível atualizar o usuário com o endereço de e-mail confirmado." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Chamada de atenção enviada" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" -"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" -"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Responder a esta mensagem" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Problema ao salvar a mensagem." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Nenhum código de confirmação." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Entrar" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Selecione uma operadora" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Descreva o grupo ou tópico em 140 caracteres." - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Descreva o grupo ou tópico em 140 caracteres." - -#: lib/jabber.php:192 -#, fuzzy, php-format -msgid "notice id: %s" -msgstr "Feed de mensagens de %s" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s marcaram sua mensagem como favorita" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " de " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Não foi possível excluir a favorita." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Excluir a mensagem" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "O conteúdo da mensagem é inválido" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Não foi possível criar o formulário OpenID: %s" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Não foi possível analisar a mensagem." -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Não é um usuário registrado." -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Você pode enviar seu avatar pessoal." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Desculpe-me, mas este não é seu endereço de e-mail para recebimento." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Desculpe-me, mas não é permitido o recebimento de emails." diff --git a/locale/ru/LC_MESSAGES/statusnet.mo b/locale/ru/LC_MESSAGES/statusnet.mo index 9c0c73f01..932761df1 100644 Binary files a/locale/ru/LC_MESSAGES/statusnet.mo and b/locale/ru/LC_MESSAGES/statusnet.mo differ diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 00b54b20c..9f9bfc4a7 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -6,3114 +6,2021 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:09+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:48+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Поисковый поток для «%s»" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"за исключением следующих личных данных: пароля, адреса электронной почты, IM-" -"адреса, номера телефона." +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Нет такого тега." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "от " +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Нет такого пользователя." -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:84 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Обновления в ответ %2$s" +msgid "%s and friends, page %d" +msgstr "%s и друзья, страница %d" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s пригласил вас присоединиться к нему на %2$s" +msgid "%s and friends" +msgstr "%s и друзья" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 +#: actions/all.php:99 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s пригласил вас присоединиться к нему на %2$s (%3$s).\n" -"\n" -"%2$s — сервис микроблоггинга, позволяющий держать контакт с людьми, которых " -"вы знаете и которые вам интересны.\n" -"\n" -"Вы также можете поделиться новостями о себе, вашими мыслями или вашей онлайн-" -"жизнью со знающими вас людьми. Этот сервис также отлично подходит для " -"встречи с новыми людьми, разделяющими ваши интересы.\n" -"\n" -"%1$s говорит:\n" -"\n" -"%4$s\n" -"\n" -"Вы можете увидеть страницу профиля %1$s на %2$s здесь:\n" -"\n" -"%5$s\n" -"\n" -"Если вы хотите опробовать данный сервис, нажмите на приведённую ниже ссылку, " -"чтобы принять приглашение.\n" -"\n" -"%6$s\n" -"\n" -"В противном случае вы можете проигнорировать это сообщение. Спасибо за ваше " -"терпение и время.\n" -"\n" -"С уважением, %2$s\n" +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Лента друзей %s (RSS 1.0)" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 +#: actions/all.php:107 #, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s сейчас слушает ваши заметки на %2$s." +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Лента друзей %s (RSS 2.0)" + +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Лента друзей %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:134 #, php-format -msgid "%1$s's status on %2$s" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s (%s)" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "%s публичная лента" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s и друзья" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" -msgstr "%s общая хронология" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s статус" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s хронология" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Обновлено от %1$s и его друзей на %2$s!" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "%s обновлен для всех!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Метод API не найден!" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Вы должный получить письмо с описанием того, как подтвердить свой " -"электронный адрес.)" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Этот метод требует POST." -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" -"%site.broughtby%%](%%site.broughtbyurl%%). " - -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** — сервис микроблогинга. " -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Авторы должны определяться по полному имени или нику." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "У пользователя нет профиля." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 латинских строчных буквы или цифры, без пробелов" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Неудача при блокировке пользователя." -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Неудача при разблокировке пользователя." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 или больше знаков" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Отсутствует текст сообщения!" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 или более символов, и не забывайте его!" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 или более символов. Обязательное поле." +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Получатель не найден." -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 -#, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить " -"%s для отправки вам сообщений." +"Не удаётся посылать прямые сообщения пользователям, которые не являются " +"Вашими друзьями." -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Код подтверждения выслан на добавленный вами электронный адрес. Просмотрите " -"папку входящей почты (а также папку спама!), чтобы найти этот кода и " -"инструкции по его использованию." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Прямые сообщения для %s" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Код подтверждения выслан на добавленный вами номер телефона. Посмотрите ваши " -"входящие (а также папку спама!), чтобы найти этот код и инструкции по его " -"использованию." - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Метод API не найден!" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "Все прямые сообщения от %s" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Метод API реконструируется." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Прямые сообщения для %s" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "О проекте" +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Все прямые сообщения посланные для %s" -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Принять" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Нет статуса с таким ID." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Добавить" +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Эта запись уже входит в число любимых!" -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Добавить OpenID" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Не удаётся создать любимую запись." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Добавить или удалить OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Адрес" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Эта запись не входит в число ваших любимых записей!" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Адреса друзей, которых ты хочешь пригласить (по одному на строчку)" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Не удаётся удалить любимую запись." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Все подписки." +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" +"Не удаётся следовать за пользователем, т. к. такого пользователя не " +"существует." -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "All updates for %s" -msgstr "Все обновления для %s" +msgid "Could not follow user: %s is already on your list." +msgstr "Не удается включить %s в список поддержки, он уже в Вашем списке." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Все обновления, соответствующие поисковому запросу «%s»" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Уже авторизован." +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." +msgstr "" +"Не удаётся следовать за пользователем, т. к. такого пользователя не " +"существует." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Уже подписан!" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Вы уверены, что хотите удалить эту запись?" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Надо представить два имени пользователя или кода." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Авторизовать подписку" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Не удаётся вернуть публичный поток." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Автоматическии входить в дальнейшем. Не для общедоступных компьютеров!" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Нет статусов." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Автоматически подписываться на всех, кто подписался на меня" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Не удаётся создать группу." -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Аватар" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Не удаётся создать любимую запись." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Аватар обновлён." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Не удаётся назначить членство в группе." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -"В ожидании подтверждения этого адреса. Проверьте ваш Jabber/GTalk на предмет " -"сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список " -"контактов?)" +"Имя должно состоять только из прописных букв и цифр и не иметь пробелов." -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Ждём подтверждения этого адреса. Проверь свой почтовый ящик (и папку для " -"спама!), там будут дальнейшие инструкции." +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "В ожидании подтверждения данного номера телефона." +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Неверное имя." -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Ранее »" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "URL Главной страницы неверен." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Био" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Полное имя слишком длинное (не больше 255 знаков)." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Слишком длинное био (максимум 140 символов)." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Слишком длинное описание (максимум 140 символов)" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Не удаётся удалить эту запись." +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Слишком длинное месторасположение (максимум 255 знаков)." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Не удаётся прочитать URL аватары «%s»" +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Не удаётся сохранить новый пароль." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неверный тег: \"%s\"" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Отменить" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Не удаётся подтвердить OpenID." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Не удаётся стандартизировать этот Jabber ID" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Вы уже являетесь членом этой группы" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Не удаётся стандартизировать этот электронный адрес" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Изменить" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Не удаётся присоеденить пользователя %s к группе %s" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Изменить электронный адрес" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Вы не являетесь членом этой группы." -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Изменить пароль" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Не удаётся удалить пользователя %s из группы %s" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Изменить ваш пароль" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" +msgstr "Группы %s" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Изменить ваши настройки профиля" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Действия группы" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Подтвердить" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Группы %s" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Подтвердить адрес" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Группы, в которых состоит %s" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Подтверждение отменено." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Этот метод требует POST или DELETE." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Код подтверждения" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Вы не можете удалять статус других пользователей." -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Код подтверждения не найден." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Аватар обновлён." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы " -"можете…\n" -"\n" -"* Перейти на [ваш микроблог](%s) и опубликовать вашу первую запись.\n" -"* Добавить ваш [адрес Jabber/GTalk](%%%%action.imsettings%%%%), для " -"возможности отправлять записи через мгновенные сообщения.\n" -"* [Найти людей](%%%%action.peoplesearch%%%%), которых вы, возможно, знаете, " -"или с которыми разделяете одни и те же интересы.\n" -"* Обновить ваши [настройки профиля](%%%%action.profilesettings%%%%), чтобы " -"больше рассказать другим о себе.\n" -"* Прочитать [документацию](%%%%doc.help%%%%), чтобы узнать о возможностях, о " -"которые вы можете не знать.\n" -"\n" -"Спасибо за то, что присоединились к нам, надеемся, что вы получите " -"удовольствие от использования данного сервиса!" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Не найдено статуса с таким ID." -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Соединить" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Соединить с существующей записью" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Не найдено" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Контакты" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Неподдерживаемый формат файла изображения." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "Не удаётся создать OpenID-форму: %s " +msgid "%s / Favorites from %s" +msgstr "%s / Любимое от %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apitimelinefavorites.php:119 #, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Не удается включить %s в список поддержки, он уже в Вашем списке." +msgid "%s updates favorited by %s / %s." +msgstr "%s обновлённые любимые записи от %s / %s." -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" -"Не удаётся следовать за пользователем, т. к. такого пользователя не " -"существует." +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s хронология" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Не удаётся перенаправить на сервер: %s" +msgid "Updates from %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Не удаётся сохранить информацию об аватаре" +#: actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Не удаётся сохранить новую информацию профиля" +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Не удаётся подписать других на вашу ленту." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s общая хронология" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Подписка неудачна." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s обновлен для всех!" -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Не удаётся одновить пользователя с подтверждённым электронным адресом." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "Записи, помеченные %s" -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Не удаётся преобразовать запросы в доступы." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Не удаётся удалить подверждение по электронному адресу." +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Не найдено." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Не удаётся удалить подписку." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Нет такого документа." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Нет статусов." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Нет имени." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Не удаётся получить запрос." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Нет размера." -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Не удаётся вставить код подтверждения." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Неверный размер." -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Не удаётся вставить новую подписку." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Аватар" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Не удаётся сохранить профиль." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Тут вы можете загрузить свой аватар." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Не удаётся обновить пользователя для автоподписки." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Пользователь без соответствующего профиля" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Не удаётся обновить пользовательскую запись." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Настройки аватара" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Не удаётся обновить пользователя." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Оригинал" -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Создать" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Просмотр" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Создать нового пользователя с таким именем." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Удалить" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Создать новую учётную запись" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Загрузить" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "" -"Создать новую учетную запись для OpenID, у которого уже есть пользователь." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Обрезать" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Подтверждённый в настоящее время Jabber/Gtalk - адрес." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" -"Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Нетиповое подтверждение формы." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Подтверждённый в настоящее время электронный адрес." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Подберите нужный квадратный ракурс дла вашего аватара" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Сейчас" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Потеряна информация о файле." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Ошибка баз данных при вставке хеш-тегов для %s" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Аватар обновлён." -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Ошибка баз данных при вставке ответа для %s" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Неудача при обновлении аватара." -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Удалить запись" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватар обновлён." -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Опиши себя и свои увлечения при помощи 140 символов" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Нет названия группы" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Email" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Нет такой группы" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Электронный адрес" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Профиль пользователя" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Настройка почты" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и друзья, страница %d" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Такой электронный адрес уже задействован." +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Список пользователей, являющихся членами этой группы." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Подтверждение электронного адреса" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Неудача при разблокировке пользователя." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Электронный адрес вида \"UserName@example.org\"" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Разблокировать" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Почтовый адрес" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Разблокировать пользователя." -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Введите имя или электронный адрес." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Не авторизован." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Введите код, который вы получили по телефону." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Профиль не определен." -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Ошибка авторизации входа" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Нет профиля с таким ID." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Ошибка при соединении пользователя с OpenID." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Заблокировать пользователя." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Ошибка при соединении пользователя." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Ошибка при вставке аватара" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Нет" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Ошибка при вставке нового профиля" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Список пользователей, являющихся членами этой группы." -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Ошибка вставки удалённого профиля" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Да" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Ошибка сохранения подтверждённого адреса." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Список пользователей, являющихся членами этой группы." -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Ошибка сохранения удалённого профиля" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Вы уже заблокировали этого пользователя." -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Ошибка сохранения текущего профиля." +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Не удаётся сохранить информацию о блокировании." -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Ошибка сохранения текущего пользователя." +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Фото" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Ошибка сохранения пользователя; неверное имя." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Нет кода подтверждения." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Ошибка в установках пользователя." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Код подтверждения не найден." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Ошибка обновления профиля" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Это не Ваш код подтверждения!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Ошибка обновления удалённого профиля" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Нераспознанный тип адреса %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Ошибка, связанная с кодом подтверждения." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Этот адрес уже подтверждён." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Существующее имя" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Не удаётся обновить пользователя." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "ЧаВо" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Не удаётся удалить подверждение по электронному адресу." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Неудача при обновлении аватара." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Подтвердить адрес" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Лента друзей %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Адрес \"%s\" подтвержден для вашего аккаунта." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Лента ответов %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код подтверждения" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Лента тегов %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Записи" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Найти запись по содержимому" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Нет такой записи." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Найти человека на этом сайте" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Не удаётся удалить эту запись." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " -"изменять Ваши установки." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Полное имя" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Полное имя слишком длинное (не больше 255 знаков)." - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Помощь" +"Вы окончательно удаляете запись. После того, как это будет сделано, " +"восстановление будет невозможно." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Моё" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Удалить запись" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Главная" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Вы уверены, что хотите удалить эту запись?" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "URL Главной страницы неверен." +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Не удаётся удалить эту запись." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Я хочу отправлять записи по электронной почте." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Удалить эту запись" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM-адрес" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Эта запись не входит в число ваших любимых записей!" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM-установки" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Добавить в любимые" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Если у вас уже есть аккаунт, то авторизуйтесь с вашим ником и паролем, чтобы " -"соединить их с вашим OpenID." +#: actions/doc.php:69 +msgid "No such document." +msgstr "Нет такого документа." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Если вы хотите добавить OpenID к вашему аккаунту, то введите его в поле ниже " -"и нажмите на кнопку \"Добавить\"" +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Изменить информацию о группе %s" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Если вы забыли или потеряли пароль, то вы можете получить новый, послав " -"запрос на тот электронный адрес, который вы указали в вашем аккаунте." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Вы должны авторизоваться, чтобы создать новую группу." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Входящий электронный адрес" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Вы должны быть администратором, чтобы изменять информацию о группе" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Входящий электронный адрес удалён." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Заполните информацию о группе в следующие поля" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Некорректный старый пароль" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Слишком длинное описание (максимум 140 символов)" -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Некорректное имя или пароль." +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Не удаётся обновить информацию о группе" -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Инструкции по восстановлению пароля посланы на электронный адрес, который Вы " -"указали при регистрации вашего аккаунта." +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Настройки сохранены" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Неверный URL-адрес аватара '%s'" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Настройка почты" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" -msgstr "Неверный электронный адрес: %s" +msgid "Manage how you get email from %%site.name%%." +msgstr "Управление процессом получения электронного адреса с %%site.name%%." -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Неверная домашняя страничка для '%s'" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Адрес" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Неверный URL лицензии для '%s'" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Подтверждённый в настоящее время электронный адрес." -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Неверный контент записи" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Убрать" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Неверный URI записи" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Ждём подтверждения этого адреса. Проверь свой почтовый ящик (и папку для " +"спама!), там будут дальнейшие инструкции." -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Неверный URL записи" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Отменить" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Неверный URL профиля для '%s'." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Электронный адрес" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Неверный URL профиля (плохой формат)" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Электронный адрес вида \"UserName@example.org\"" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Неврный URL профиля возвращённый сервером." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Добавить" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Неверный размер." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Входящий электронный адрес" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Неверное имя или пароль." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Посылать электронные письма на этот адрес для постинга новых записей." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Приглашение(я) отослано(ы)" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" +"Создать новый электронный адрес для постинга здесь; отменить один из старых." -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Приглашение(я) отослано(ы) следующим адресатам:" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Новое" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Пригласить" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Предпочтения" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Пригласить новых пользователей" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Уведомлять меня о новых подписчиках по почте." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -"Этот сервис работает при помощи [StatusNet](http://status.net/) - " -"программного обеспечения для микроблогинга, версии %s, доступного под " -"лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" -"licenses/agpl-3.0.html)." - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Этот Jabber ID уже используется другим пользователем." +"Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " +"запись в число любимых." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -"Jabber или GTalk - адрес, типа \"UserName@example.org\". Первым делом " -"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" -"мессенджере или в GTalk." +"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " +"приватное сообщение." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Язык" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " +"приватное сообщение." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Слишком длинный язык (более 50 символов). " +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" +"Разрешить друзьям \"подталкивать\" меня и посылать мне электронные сообщения." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Месторасположение" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Я хочу отправлять записи по электронной почте." -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Слишком длинное месторасположение (максимум 255 знаков)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Опубликовать MicroID для моего электронного адреса." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Вход" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Сохранить" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Вход при помощи [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Предпочтения сохранены." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." -"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" -"(%%action.openidlogin%%). " +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Нет электронного адреса." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Выход" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Не удаётся стандартизировать этот электронный адрес" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Полное имя, предпочтительно Ваше настоящее имя" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Неверный электронный адрес" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Потеряли или забыли пароль?" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Это уже Ваш электронный адрес." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Этот электронный адрес уже задействован другим пользователем." + +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Не удаётся вставить код подтверждения." + +#: actions/emailsettings.php:358 +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 "" -"Создать новый электронный адрес для постинга здесь; отменить один из старых." +"Код подтверждения выслан на добавленный вами электронный адрес. Просмотрите " +"папку входящей почты (а также папку спама!), чтобы найти этот кода и " +"инструкции по его использованию." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Управление процессом получения электронного адреса с %%site.name%%." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Нет подтверждения отказа." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Регистрация" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Это неверный IM-адрес." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Микроблог от %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Подтверждение отменено." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Провайдер Вашего мобильного телефона. Если вы знаете провайдера, который " -"принимает CVC при помощи электронных адресов и которого нет в списке ниже, " -"то пошлите нам об этом электронное сообщение %s." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Это не Ваш электронный адрес." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Мои тексты и файлы находятся под лицензией" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Адрес удалён." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Новое" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Нет входящего электронного адреса." -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Новый электронный адрес для постинга %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Не удаётся обновить пользовательскую запись." + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Входящий электронный адрес удалён." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Новый входящий электронный адрес добавлен." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Новое имя" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Новая запись" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Популярные записи" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Новый пароль" +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Популярные записи, страница %d" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Новый пароль успешно сохранён. Вы авторизовались." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Самые популярные записи на %%site.name%% на текущий момент." -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Имя" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -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/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -"Имя должно состоять только из прописных букв и цифр и не иметь пробелов." -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Такое имя недопустимо." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Любимые записи %s" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Имя пользователя, которому Вы хотите следовать" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Имя или электронный адрес" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Эта запись уже входит в число любимых!" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Нет" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Разлюбить" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Не Jabber ID." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Особые пользователи" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Не авторизованный запрос!" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Особые пользователи, страница %d" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Провайдер не выбран." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Список наиболее активных, знаменитых и уважаемых пользователей на %s" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Код не введён" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Новая запись" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Нет кода подтверждения." +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Новая запись" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Нет контента!" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Нет электронного адреса." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Нет идентификатора." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Неожиданный ответ!" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Нет входящего электронного адреса." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Пользователь отслеживает несуществующее." -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Нет имени представленного удалённым сервером." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Вы можете использовать локальную подписку!" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Нет имени." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Этот пользователь заблокировал вас на его подписку." -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Нет подтверждения отказа." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не авторизовано." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Нет номера телефона." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Не удаётся преобразовать запросы в доступы." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Нет URL профиля, который вернул сервер." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Неизвестная версия OMB-протокола." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Нет зарегистрированных электронных адресов для этого пользователя." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Ошибка обновления удалённого профиля" -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Запросы не найдены!" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Нет такой группы." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Нет результатов." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Нет такой записи." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Нет размера." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Потерян файл." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Нет статуса с таким ID." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Профиль не определен." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Не найдено статуса с таким ID." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Нет такого OpenID." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Пользователь заблокировал Вас." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Нет такого документа." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Вы не являетесь членом этой группы." -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Нет такой записи." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Заблокировать пользователя." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Нет такого кода восстановления." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Нет такой подписки" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Нет такого пользователя." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Нет пользователя с таким электронным адресом или именем." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Нет ID" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Ничего показывать!" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Вы должны авторизоваться, чтобы создать новую группу." -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Нет кода восстановления." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Группы" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Незарегистрированный пользователь." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Неподдерживаемый формат данных." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Не удаётся обновить пользователя." -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Неверный код Jabber ID" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Не удаётся сохранить Ваши установки по Твиттеру!" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Неверный код OpenID." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Настройки синхронизации сохранены." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Неверный электронный адрес" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Логотип группы" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Неверный электронный адрес." +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Тут вы можете загрузить логотип для группы." -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Неверное имя." +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Подберите нужный квадратный ракурс дла вашего аватара" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Неверный URL профиля (некорректный сервис)." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Логотип обновлён." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Неверный URL профиля (неверно определённый XRDS)." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Неудача при обновлении логотипа." -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Неверный URL профиля (не YADIS-документ)." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "Участники группы %s" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Не является изображением или разрушенный файл." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "Участники группы %s, страница %d" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Не авторизовано." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Список пользователей, являющихся членами этой группы." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Неожиданный ответ!" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Настройки" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Не найдено" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Блокировать" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Не авторизован." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Заблокировать пользователя." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Не подписан!" +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Вы должны быть администратором, чтобы изменять информацию о группе" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Поиск в записях" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Настройки" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Лента записей для %s" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Запись без профиля" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Записи" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%% по имени, месторасположению или интересам. " +"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Записи, помеченные %s" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Поиск группы" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Старый пароль" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Нет результатов." -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Установки OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Автоподдержка OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID вход" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "URL для OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Вход при помощи OpenID отменён." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Вход при помощи OpenID неудачен: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Неверный OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID удалён." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Установки OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Можно добавить к приглашению личное сообщение." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Частичная загрузка." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Пароль" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Группы" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Пароль и его подтверждение не совпадают." +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Группы, страница %d" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Пароль должен быть длиной не менее 6 символов." +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Запрошено восстановление пароля" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Создать новую группу" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Пароль сохранён." - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Пароли не совпадают." - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Люди" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Поиск людей" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Поиск людей" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Личное" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Пользователь заблокировал Вас." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Личное сообщение" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Ошибка при удалении данного блока." -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Номер телефона, без пробелов, с кодом зоны" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM-установки" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:70 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." msgstr "" -"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " -"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" -"\"." - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Публиковать запись, когда мой Jabber/GTalk - статус изменяется." - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Предпочтения" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Предпочтения сохранены." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Любимый язык" +"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" +"(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Пользовательское соглашение" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Страница недоступна для того типа, который Вы задействовали." -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Проблемы с сохранением записи." +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Подтверждённый в настоящее время Jabber/Gtalk - адрес." -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Профиль" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"В ожидании подтверждения этого адреса. Проверьте ваш Jabber/GTalk на предмет " +"сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список " +"контактов?)" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL профиля" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM-адрес" -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Настройки профиля" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber или GTalk - адрес, типа \"UserName@example.org\". Первым делом " +"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" +"мессенджере или в GTalk." -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Неизвестный профиль" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Посылать мне записи через Jabber/GTalk." -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Лента публичного потока" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Публиковать запись, когда мой Jabber/GTalk - статус изменяется." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Общая лента" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 +#: actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Опубликовать MicroID для моего Jabber/GTalk - адреса." -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Опубликовать MicroID для моего электронного адреса." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Не Jabber ID." -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Свежие теги" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Не удаётся стандартизировать этот Jabber ID" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Восстановление" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Неверный код Jabber ID" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Восстановление пароля" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Это уже Ваш Jabber ID." -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Код восстановления неизвестного пользователя." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Этот Jabber ID уже используется другим пользователем." -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Регистрация" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить " +"%s для отправки вам сообщений." -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Регистрация недопустима." +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Это не Ваш Jabber ID." -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Регистрация успешна!" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Входящие для %s - страница %d" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Отбросить" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Входящие для %s" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Запомнить меня" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Это Ваши входящие сообщения, где перечислены входящие приватные сообщения." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Удаление профиля как несоответствующего" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Подписаться на пользователя" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" +"Вы должны авторизоваться, чтобы приглашать других пользователей следовать за " +"%s" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Убрать" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Неверный электронный адрес: %s" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Убрать OpenID" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Приглашение(я) отослано(ы)" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -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, то сначала добавьте ещё один." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Пригласить новых пользователей" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Ответы" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Вы уже подписаны на пользователя:" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Replies to %s" -msgstr "Ответы для %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Переустановить" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Переустановить пароль" +msgid "%s (%s)" +msgstr "" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "СМС" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Это люди, которые уже являются пользователями, и на которых Вы подписались " +"автоматически:" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Номер телефона для СМС" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Приглашение(я) отослано(ы) следующим адресатам:" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Установки СМС" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Мы сообщим Вам, если приглашения будут приняты и вновь приглашенные " +"зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Подтверждение СМС" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Тот же пароль, что и выше" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Почтовый адрес" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Тот же пароль что и сверху. Обязательно." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Адреса друзей, которых ты хочешь пригласить (по одному на строчку)" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Сохранить" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Личное сообщение" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Поиск" +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Можно добавить к приглашению личное сообщение." -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Лента поискового потока" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "ОК" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:226 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Поиск по содержанию записей на %%site.name%%. Между ключевыми словами " -"ставьте пробелы. Минимальная длина слова — 3 буквы." +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s пригласил вас присоединиться к нему на %2$s" -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/invite.php:228 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Поиск людей на %%site.name%% по имени, месторасположению или интересам. " -"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Выбор провайдера" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "ОК" +"%1$s пригласил вас присоединиться к нему на %2$s (%3$s).\n" +"\n" +"%2$s — сервис микроблоггинга, позволяющий держать контакт с людьми, которых " +"вы знаете и которые вам интересны.\n" +"\n" +"Вы также можете поделиться новостями о себе, вашими мыслями или вашей онлайн-" +"жизнью со знающими вас людьми. Этот сервис также отлично подходит для " +"встречи с новыми людьми, разделяющими ваши интересы.\n" +"\n" +"%1$s говорит:\n" +"\n" +"%4$s\n" +"\n" +"Вы можете увидеть страницу профиля %1$s на %2$s здесь:\n" +"\n" +"%5$s\n" +"\n" +"Если вы хотите опробовать данный сервис, нажмите на приведённую ниже ссылку, " +"чтобы принять приглашение.\n" +"\n" +"%6$s\n" +"\n" +"В противном случае вы можете проигнорировать это сообщение. Спасибо за ваше " +"терпение и время.\n" +"\n" +"С уважением, %2$s\n" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Посылать электронные письма на этот адрес для постинга новых записей." +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Вы должны авторизоваться для вступления в группу." -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Уведомлять меня о новых подписчиках по почте." +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "Вы уже являетесь членом этой группы" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Посылать мне записи через Jabber/GTalk." +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "Не удаётся присоеденить пользователя %s к группе %s" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Посылать мне записи через СМС; я понимаю, что это может привести к расходам " -"по пересылке." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "%s вступил в группу %s" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Вы должны авторизоваться, чтобы покинуть группу." -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Настройки" +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "Вы не являетесь членом этой группы." -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Настройки сохранены." +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "Не удаётся найти учетную запись." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Показывать самые популярные теги за последнюю неделю." +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "Не удаётся удалить пользователя %s из группы %s" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Кто-то уже использует такой OpenID." +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "%s покинул группу %s" -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Случилось что-то странное." +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Уже авторизован." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Простите, входящих писем нет." +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Неверный контент записи" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Простите, это не Ваш входящий электронный адрес." +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Некорректное имя или пароль." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Исходник" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Ошибка в установках пользователя." -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Статистика" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Вход" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Записанный OpenID не найден." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Подписаться" +#: actions/login.php:243 +msgid "Login to site" +msgstr "Авторизоваться" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Подписчики" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Имя" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Подписка авторизована" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Пароль" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Подписка отменена" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Запомнить меня" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Подписки" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Автоматическии входить в дальнейшем. Не для общедоступных компьютеров!" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Системная ошибка при загрузке файла." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Потеряли или забыли пароль?" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Теги" +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " +"изменять Ваши установки." -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Текст" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." +"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" +"(%%action.openidlogin%%). " -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Поиск текста" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Это не Ваш OpenID." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Этот адрес уже подтверждён." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Это не Ваш код подтверждения!" +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Этот электронный адрес уже задействован другим пользователем." +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Нет текущего статуса" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Это слишком большой файл." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Новая группа" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Это уже Ваш Jabber ID." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Используйте эту форму для создания новой группы." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Это уже Ваш электронный адрес." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Новое сообщение" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Это уже ваш номер телефона." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Вы не можете послать сообщение этому пользователю." -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Это не Ваш Jabber ID." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Нет контента!" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Это не Ваш электронный адрес." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Нет адресата." -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Это не Ваш номер телефона." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Это неверный IM-адрес." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Сообщение" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Это неверный номер подтверждения." +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Прямое сообщение для %s послано" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Этот телефонный номер уже задействован другим пользователем." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Ошибка AJAX" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Новая запись" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Слишком длинная запись. Максимальная длина - 255 знаков." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Запись опубликована" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/noticesearch.php:68 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Адрес \"%s\" подтвержден для вашего аккаунта." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Адрес удалён." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " -"о том, как авторизовать подписку. Ваш подписочный купон: " +"Поиск по содержанию записей на %%site.name%%. Между ключевыми словами " +"ставьте пробелы. Минимальная длина слова — 3 буквы." -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " -"чтобы полностью отказаться от подписки." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Поиск текста" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 +#: actions/noticesearch.php:91 #, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Это пользователи, которые читают записи %s." - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Это пользователи, которые читают ваши записи." +msgid "Search results for \"%s\" on %s" +msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Это пользователи, записи которых читает %s." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Это пользователи, записи которых вы читаете." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -"Это люди, которые уже являются пользователями, и на которых Вы подписались " -"автоматически:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Код подтверждения слишком старый. Попробуйте ещё раз." -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:124 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Эта форма с автоматической поддержкой. Если это не так, то нажмите на кнопку " -"подтверждения для перехода на сайт Вашего OpenID-провайдера. " -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Обновлено от %1$s на %2$s!" + +#: actions/noticesearchrss.php:91 #, 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 "" -"Вы впервые вошли под именем %s, так что нам нужно привязать ваш OpenID к " -"вашим локальным установкам. Вы должны создать новый аккаунт или привязаться " -"к уже имеющемуся аккаунту, если он есть. " - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Этот метод требует POST или DELETE." +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Все обновления, соответствующие поисковому запросу «%s»" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Этот метод требует POST." +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Этот пользователь не разрешает \"подталкивать\" его, или ещё не подтверждён " +"или ещё не представил свой электронный адрес." -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Страница недоступна для того типа, который Вы задействовали." +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "\"Подталкивание\" послано" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Часовой пояс" +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "\"Подталкивание\" отправлено!" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Часовой пояс не выбран." +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Запись без профиля" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgid "%1$s's status on %2$s" msgstr "" -"Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или " -"[зарегистрировать](%%action.register%%) новый аккаунт." -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Надо представить два имени пользователя или кода." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Соединить" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "Адрес твоей страницы, дневника или профиля на другом портале" +#: actions/oembed.php:160 +msgid "Only " +msgstr "" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Неподдерживаемый формат данных." -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Нетиповое подтверждение формы." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Поиск людей" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Нетиповая переустановка пароля." +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Поиск в записях" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Неизвестное действие" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "Другие установки" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Неизвестная версия OMB-протокола." +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Управление другими опциями." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -"Там, где это не оговорено специально, содержимое этого сайта защищено " -"авторскими правами и предоставляется под " - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Нераспознанный тип адреса %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Отписаться" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Неподдерживаемая версия OMB" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "Автоматически использовать выбранный сервис" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Неподдерживаемый формат файла изображения." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Настройки профиля" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Обновления по СМС" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Обновлено по IM" +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Сервис сокращения URL слишком длинный (максимум 50 символов)." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Обновлено от %1$s и его друзей на %2$s!" +msgid "Outbox for %s - page %d" +msgstr "Исходящие для %s - страница %d" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Обновлено от %1$s на %2$s!" +msgid "Outbox for %s" +msgstr "Исходящие для %s" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Загрузить" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" +"Это ящик Ваших исходящих писем, здесь приватные сообщения, которые отосланы " +"Вами." -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Загрузка нового \"аватара\" (изображения пользователя) здесь. Вы не можете " -"редактировать картинку после загрузки, так что убедитесь, чтобы она была " -"более-менее квадратна. Это будет также размещено под лицензией этого сайта. " -"Используйте личные изображения, которые Вы готовы разделить с другими." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Загрузить новое профильное изображение" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Изменить пароль" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Нужна только для обновлений, осведомлений и восстановления пароля." +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Изменить ваш пароль" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Пользователь отслеживает несуществующее." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Пароль сохранён." -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "У пользователя нет профиля." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Старый пароль" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Имя пользователя." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Новый пароль" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Пользователь не найден." +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 или больше знаков" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "В каком часовом поясе Вы обычно находитесь?" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Подтвердить" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Что нового, %s?" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "повторить пароль сверху" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Где вы находитесь, например «Город, область, страна»" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Изменить" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Неверный тип изображения для '%s'" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Пароль должен быть длиной не менее 6 символов." -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Неверный размер изображения для '%s'" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Пароли не совпадают." -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Да" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Некорректный старый пароль" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "У Вас уже есть такой OpenID!" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Ошибка сохранения пользователя; неверное имя." + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Не удаётся сохранить новый пароль." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Пароль сохранён." -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +#: actions/peoplesearch.php:52 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Вы окончательно удаляете запись. После того, как это будет сделано, " -"восстановление будет невозможно." +"Поиск людей на %%site.name%% по имени, месторасположению или интересам. " +"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Вы уже авторизованы!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Поиск людей" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Вы уже подписаны на пользователя:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Вы не являетесь другом для этого пользователя." - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Вы можете поменять Ваш пароль здесь. Выберите другой!" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "" -"Вы можете создать новый аккаунт, чтобы начать писать записи в вашем " -"микроблоге." +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Неверный тег человека: %s" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." +msgid "Users self-tagged with %s - page %d" +msgstr "Пользовательские авто-теги от %s - страница %d" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Неверный контент записи" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" -"(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Настройки профиля" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3121,2299 +2028,2024 @@ msgstr "" "Вы можете обновить ваш профиль ниже, так что люди узнают о вас немного " "больше." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Вы можете использовать локальную подписку!" +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Информация профиля" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "" -"Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного " -"соглашения." +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 латинских строчных буквы или цифры, без пробелов" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Вы не посылали нам этот профиль." +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Полное имя" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"У Вас новый адрес постинга на %1$s.\n" -"\n" -"Посылайте электронные письма на %2$s для постинга новых записей.\n" -"\n" -"Инструкции по электронным публикациям записей на %3$s.\n" -"\n" -"Искренне Ваш,\n" -"%4$s" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Главная" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Вы не можете удалять статус других пользователей." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "Адрес твоей страницы, дневника или профиля на другом портале" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Вы должны авторизоваться, чтобы приглашать других пользователей следовать за " -"%s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опиши себя и свои увлечения при помощи 140 символов" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Мы сообщим Вам, если приглашения будут приняты и вновь приглашенные " -"зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опиши себя и свои интересы при помощи 140 символов." -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Вы идентифицированны. Введите новый пароль ниже." +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Био" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Адрес (URL) Вашего OpenID" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Месторасположение" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Ваше имя на этом сервере или электронный адрес регистрации." +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Где вы находитесь, например «Город, область, страна»" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Теги" + +#: actions/profilesettings.php:140 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при " -"помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " -"аккаунтом OpenIDs отсюда." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "пару секунд назад" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "около %d дня(ей) назад" +"Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или " +"пробелом" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "около %d часа(ов) назад" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Язык" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "около %d минут(ы) назад" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Любимый язык" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "около %d месяца(ев) назад" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Часовой пояс" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "около дня назад" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "В каком часовом поясе Вы обычно находитесь?" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "около минуты назад" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Автоматически подписываться на всех, кто подписался на меня" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "около месяца назад" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Слишком длинное био (максимум 140 символов)." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "около года назад" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Часовой пояс не выбран." -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "около часа назад" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Слишком длинный язык (более 50 символов). " -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "удалить" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "в ответ на..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "ответить" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "повторить пароль сверху" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Неверный тег: \"%s\"" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "неподдерживаемый тип файла" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Не удаётся обновить пользователя для автоподписки." -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "Сюда" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Не удаётся сохранить профиль." -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Не удаётся сохранить теги." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Эта запись не входит в число ваших любимых записей!" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Настройки сохранены." -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Не удаётся удалить любимую запись." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Пометить" +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Не удаётся вернуть публичный поток." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " -"запись в число любимых." +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Общая лента, страница %d" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" -"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " -"приватное сообщение." +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Общая лента" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Эта запись уже входит в число любимых!" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Лента публичного потока" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Не удаётся создать любимую запись." +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Лента публичного потока" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Нелюбимое" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Лента публичного потока" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/public.php:179 #, php-format -msgid "%s favorite notices" -msgstr "Любимые записи %s" +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Лента любимых записей %s" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/public.php:186 #, php-format -msgid "Inbox for %s - page %d" -msgstr "Входящие для %s - страница %d" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/public.php:233 #, php-format -msgid "Inbox for %s" -msgstr "Входящие для %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"Это Ваши входящие сообщения, где перечислены входящие приватные сообщения." +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг), созданный с использованием свободного программного " +"обеспечения [StatusNet](http://status.net/). [Стань участником](%%action." +"register%%), чтобы держать в курсе своих событий поклонников, друзей, " +"родственников и коллег! ([Читать далее](%%doc.help%%))" -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:238 #, php-format msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -"%1$s приглашает вас присоединиться к %2$s (%3$s).\n" -"\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Автоматически авторизоваться в дальнейшем." +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг), созданный с использованием свободного программного " +"обеспечения [StatusNet](http://status.net/)." -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "По причинам безопасности повторите, пожалуйста, ваш пароль" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Вход с вашим ником и паролем." +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Общее облако тэгов" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "Самые популярные тэги на %s на текущий момент" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Нет адресата." +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Вы не можете послать сообщение этому пользователю." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/publictagcloud.php:75 +#, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Нет такого пользователя" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Новое сообщение" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Запись без соответствующего профиля" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Облако тэгов" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) позволяет Вам авторизоваться на многих сайтах" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Вы уже авторизованы!" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Если вы хотите добавить OpenID к вашему аккаунту," +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Нет такого кода восстановления." -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Удаление единственного из оставшихся OpenID сделает невозможной авторизацию!" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Нет кода восстановления." -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Вы можете удалить OpenID из вашего аккаунта" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Код восстановления неизвестного пользователя." -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Исходящие для %s - страница %d" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Ошибка, связанная с кодом подтверждения." -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Исходящие для %s" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Код подтверждения слишком старый. Попробуйте ещё раз." -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Это ящик Ваших исходящих писем, здесь приватные сообщения, которые отосланы " -"Вами." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Не удаётся одновить пользователя с подтверждённым электронным адресом." -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"поиск людей на %%site.name%% по их имени, месту жительства или интересам." -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Вы можете обновить здесь Вашу личную профильную информацию" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Пользователь без соответствующего профиля" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Код подтверждения слишком старый." +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Если Вы забыли или потеряли Ваш" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Ваше имя на этом сервере или электронный адрес регистрации." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Вы идентифицированны. Введите " +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Восстановление" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Ваше имя на этом сервере," +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Переустановить пароль" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Инструкции для восстановления Вашего пароля" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Восстановление пароля" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Новый пароль успешно сохранён." +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Запрошено восстановление пароля" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Пароль должен быть длиной не менее 6 символов." +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Неизвестное действие" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Поздравляем, %s! И добро пожаловать на %%%%site.name%%%%. Здесь Вы можете ..." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 или более символов, и не забывайте его!" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Вы получили электронное сообщение, от " +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Тот же пароль, что и выше" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Чтобы подписаться, вы должны [авторизоваться](%%action.login%%)," +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Переустановить" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Лента любимых записей от %s" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Введите имя или электронный адрес." -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Не удаётся восстановить любимые записи." +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Нет пользователя с таким электронным адресом или именем." -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Нет такого сообщения." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Нет зарегистрированных электронных адресов для этого пользователя." -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Только отправитель и получатель могут читать это сообщение." +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Ошибка сохранения подтверждённого адреса." -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Сообщение для %1$s на %2$s" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Инструкции по восстановлению пароля посланы на электронный адрес, который Вы " +"указали при регистрации вашего аккаунта." -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Сообщение от %1$s на %2$s" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Нетиповая переустановка пароля." -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Отправить сообщение" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Пароль должен быть длиной не менее 6 символов." -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Ваш мобильный оператор." +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Пароль и его подтверждение не совпадают." -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Прямые сообщения для %s" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Новый пароль успешно сохранён. Вы авторизовались." -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Все прямые сообщения посланные для %s" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "Простите, регистрация только по приглашению." -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Прямые сообщения посланные Вами" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Ошибка, связанная с кодом подтверждения." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Все прямые сообщения от %s" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Регистрация успешна!" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Отсутствует текст сообщения!" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Регистрация" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Получатель не найден." +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Регистрация недопустима." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -"Не удаётся посылать прямые сообщения пользователям, которые не являются " -"Вашими друзьями." +"Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного " +"соглашения." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Любимое от %s" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Неверный электронный адрес." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s обновлённые любимые записи от %s / %s." +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Такой электронный адрес уже задействован." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s добавил вашу запись в состав своих любимых" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Неверное имя или пароль." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format +#: actions/register.php:342 msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -"%1$s добавил вашу запись от %2$s в состав своих любимых.\n" -"\n" +"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " +"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " +"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" +"action.openidlogin%%)!)" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " -"на Твиттер," - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Установки Твиттера" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Твиттер аккаунт" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Текущий проверенный аккаунт на Твиттере." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Имя на Твиттере" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Без пробелов, пожалуйста." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Пароль на Твиттере" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Автоматически отправлять мои записи на Твиттер." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Отправлять локальные \"@\"-реплики на Твиттер." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Подписаться на моих Твиттер-друзей здесь." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -"Имя пользователя должно состоят только из цифр, прописных или строчных букв " -"и символа подчеркивания (_). Всего не более 15 символов." - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Не удаётся подтвердить Ваши данные по Твиттеру!" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Не удаётся подтвердить данные по аккаунту \"%s\" из Твитера." +"1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Не удаётся сохранить Ваши установки по Твиттеру!" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 или более символов. Обязательное поле." -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Установки Твиттера сохранены." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Это не ваш аккаунт на Твиттере." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Не удаётся удалить Твиттер-пользователя." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Твиттер аккаунт удалён." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Не удаётся сохранить предпочтения Твиттера." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Предпочтения Твиттера сохранены." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Для уверенности проверьте эти подробности" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Эта подписка авторизована, но не" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Эта подписка удалена, но не" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Команда исполнена" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Тот же пароль что и сверху. Обязательно." -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Команда завершена" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Email" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Команда неудачна" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Нужна только для обновлений, осведомлений и восстановления пароля." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Простите, эта команда ещё не выполнена." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Полное имя, предпочтительно Ваше настоящее имя" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Подписки: %1$s\n" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Мои тексты и файлы находятся под лицензией" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "У пользователя нет записей" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Запись помечена как любимая." - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Полное имя: %s" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +", за исключением моей приватной информации: пароля, почты, мессенджера, " +"телефона." -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 +#: actions/register.php:537 #, php-format -msgid "Location: %s" -msgstr "Месторасположение: %s" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы " +"можете…\n" +"\n" +"* Перейти на [ваш микроблог](%s) и опубликовать вашу первую запись.\n" +"* Добавить ваш [адрес Jabber/GTalk](%%%%action.imsettings%%%%), для " +"возможности отправлять записи через мгновенные сообщения.\n" +"* [Найти людей](%%%%action.peoplesearch%%%%), которых вы, возможно, знаете, " +"или с которыми разделяете одни и те же интересы.\n" +"* Обновить ваши [настройки профиля](%%%%action.profilesettings%%%%), чтобы " +"больше рассказать другим о себе.\n" +"* Прочитать [документацию](%%%%doc.help%%%%), чтобы узнать о возможностях, о " +"которые вы можете не знать.\n" +"\n" +"Спасибо за то, что присоединились к нам, надеемся, что вы получите " +"удовольствие от использования данного сервиса!" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Домашняя страница: %s" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Вы должный получить письмо с описанием того, как подтвердить свой " +"электронный адрес.)" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 +#: actions/remotesubscribe.php:98 #, php-format -msgid "About: %s" -msgstr "О пользователе: %s" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"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%%) новый аккаунт." -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Подписаться на пользователя" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Прямое сообщение для %s послано" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Подписаться на %s" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Ошибка при отправке прямого сообщения." +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Имя пользователя." -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Определите имя пользователя при подписке на" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Имя пользователя, которому Вы хотите следовать" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Подписано на %s" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL профиля" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Определите имя пользователя для отписки от" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Отписано от %s" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Подписаться" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Команда ещё не выполнена." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Неверный URL профиля (плохой формат)" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Оповещение отсутствует." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неверный URL профиля (не YADIS-документ)." -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Нет оповещения." +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Это локальный профиль! Авторизуйтесь для подписки." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Есть оповещение." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не удаётся получить запрос." -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Есть оповещение." +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Ответы для %s" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Команды:\n" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "Ответы для %s, страница %d" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Не удаётся вставить сообщение." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Лента записей для %s" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Не удаётся обновить сообщение с новым URI." +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Лента записей для %s" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Пользователь без соответствующего профиля в системе." +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Лента записей для %s" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/replies.php:198 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -"У Вас новый адрес постинга на %1$s.\n" -"\n" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/replies.php:203 #, php-format -msgid "New private message from %s" -msgstr "Новое приватное сообщение от %s" +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/replies.php:205 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"%1$s (%2$s) послал Вам приватное сообщение:\n" -"\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "Только сам пользователь может читать собственный почтовый ящик." +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Сообщение для %1$s на %2$s" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Это форма для автоматического подтверждения." +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Любимые записи %s, страница %d" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Любимое" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Не удаётся восстановить любимые записи." -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showfavorites.php:170 #, php-format -msgid "%s's favorite notices" -msgstr "Любимые записи %s" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Пользователь" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Входящие" +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Лента друзей %s (RSS 1.0)" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Ваши входящие сообщения" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Лента друзей %s (RSS 2.0)" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Исходящее" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Лента друзей %s" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Ваши исходящие сообщения" +#: actions/showfavorites.php:205 +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 "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Твиттер" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Опции интеграции с Твиттером" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "Для" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Сообщение не удаётся разобрать." +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "Группа %s" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showgroup.php:84 #, php-format -msgid "%s and friends, page %d" -msgstr "%s и друзья, страница %d" +msgid "%s group, page %d" +msgstr "Группа %s, страница %d" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Тут вы можете загрузить свой аватар." +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Профиль группы" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Настройки аватара" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Оригинал" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Просмотр" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Обрезать" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Запись" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Подберите нужный квадратный ракурс дла вашего аватара" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Действия группы" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Потеряна информация о файле." +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Лента записей от группы %s" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Потерян файл." +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Лента записей от группы %s" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Неподдерживаемый тип файла" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Лента записей от группы %s" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "Профиль не определен." +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Исходящие для %s" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Нет профиля с таким ID." +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Участники" -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Заблокировать пользователя." +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(пока ничего нет)" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Вы уверены, что хотите заблокировать этого пользователя?" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Все участники" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Вы уже заблокировали этого пользователя." +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Статистика" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Не удаётся сохранить информацию о блокировании." +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Создать" -#: actions/confirmaddress.php:159 +#: actions/showgroup.php:448 #, php-format -msgid "The address \"%s\" has been " -msgstr "Адрес %s был успешно подтверждён для вашего аккаунта." - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +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 "" -"Вы окончательно удаляете запись. После того, как это будет сделано, " -"восстановление будет невозможно." - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Добавить в любимые" +"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). Участники обмениваются короткими сообщениями о своих новостях. " +"[Зарегистрируйся](%%%%action.register%%%%), чтобы стать участником группы и " +"получить множество других возможностей! ([Читать далее](%%%%doc.help%%%%))" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showgroup.php:454 #, php-format -msgid "Edit %s group" -msgstr "Изменить информацию о группе %s" +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** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг) , созданный с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). Участники обмениваются короткими сообщениями о своих новостях. " -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "Входящие должны быть включены для работы групп" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Настройки" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Вы должны авторизоваться, чтобы создать новую группу." +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Нет такого сообщения." -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Нет названия группы" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Только отправитель и получатель могут читать это сообщение." -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Нет такой группы" +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Сообщение для %1$s на %2$s" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Вы должны быть администратором, чтобы изменять информацию о группе" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Сообщение от %1$s на %2$s" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Заполните информацию о группе в следующие поля" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Запись опубликована" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "" -"Имя должно состоять только из прописных латинских букв и цифр и не иметь " -"пробелов" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Записи, помеченные %s" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "Слишком длинное описание (максимум 140 символов)" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "Входящие для %s - страница %d" -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Не удаётся обновить информацию о группе" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Лента записей от группы %s" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Настройки сохранены" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Лента записей для %s" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format -msgid "Awaiting confirmation on this address. " -msgstr "В ожидании подтверждения данного адреса." +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Лента записей для %s" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Новый электронный адрес для постинга %s" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Лента записей для %s" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" -"Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " -"запись в число любимых." +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Исходящие для %s" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -"Разрешить друзьям \"подталкивать\" меня и посылать мне электронные сообщения." -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Этот электронный адрес уже используется другим пользователем." - -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -"Код подтверждения выслан на ваш электронный адрес, который Вы добавили. " -"Проверьте входящие (а так же папку для спама)." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Ошибка сервера - невозможно достать пользователя!" -#: actions/facebookhome.php:196 +#: actions/showstream.php:198 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -"Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook " -"статус вашими последними записями, вы должны дать своё разрешение на это." -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/showstream.php:234 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Разрешить %s обновлять мой Facebook статус" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Пропустить" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Нет записей!" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Пагинация" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Сюда" - -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Туда" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). [Зарегистрируйся](%%%%action.register%%%%), чтобы всегда получать " +"сообщения участника **%s** и иметь доступ ко множеству других возможностей! " +"([Читать далее](%%%%doc.help%%%%))" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/showstream.php:239 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Спасибо за приглашения друзьям использовать %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/)." -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Приглашения отосланы следующим адресатам:" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Установки СМС" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/smssettings.php:69 #, php-format -msgid "You have been invited to %s" -msgstr "Вас пригласили на %s" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" +"Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Пригласите ваших друзей использовать %s" +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Страница недоступна для того типа, который Вы задействовали." -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "Друзья уже использующие %s" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" +"Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "Отправить приглашения" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "В ожидании подтверждения данного номера телефона." -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Не удаётся удалить Facebook-пользователя." +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Код подтверждения" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "Произошла проблема сохранения настроек синхронизации!" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Введите код, который вы получили по телефону." -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Настройки синхронизации сохранены." +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Номер телефона для СМС" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Номер телефона, без пробелов, с кодом зоны" + +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -"Автоматически обновлять мой Facebook статус моими записями с %%site.name%%." +"Посылать мне записи через СМС; я понимаю, что это может привести к расходам " +"по пересылке." -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Отправлять \"@\" ответы на Facebook." +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Нет номера телефона." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Префикс" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Провайдер не выбран." -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Присоеденять префикс к записям" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Это уже ваш номер телефона." -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" -"Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook " -"статус вашими последними записями, вы должны дать своё разрешение на это." - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Настройки синхронизации" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Разлюбить" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Этот телефонный номер уже задействован другим пользователем." -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Популярные записи" +#: actions/smssettings.php:347 +#, fuzzy +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 "" +"Код подтверждения выслан на мобильный номер, который вы добавили. " +"Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения " +"этого кода и инструкций по его использованию." -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "Популярные записи, страница %d" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Это неверный номер подтверждения." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Самые популярные записи на %%site.name%% на текущий момент." +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Это не Ваш номер телефона." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Особые пользователи" +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Выбор провайдера" -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Особые пользователи, страница %d" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Выбор провайдера" -#: actions/featured.php:99 +#: actions/smssettings.php:476 #, php-format -msgid "A selection of some of the great users on %s" -msgstr "Список наиболее активных, знаменитых и уважаемых пользователей на %s" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Этот пользователь заблокировал вас на его подписку." +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 "" +"Провайдер Вашего мобильного телефона. Если вы знаете провайдера, который " +"принимает CVC при помощи электронных адресов и которого нет в списке ниже, " +"то пошлите нам об этом электронное сообщение %s." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Нет ID" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Код не введён" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Логотип группы" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Вы не подписаны на этот профиль." -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Тут вы можете загрузить логотип для группы." +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Не удаётся сохранить подписку." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Логотип обновлён." +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Не локальный пользователь." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Неудача при обновлении логотипа." +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Подписано" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/subscribers.php:50 #, php-format -msgid "%s group members" -msgstr "Участники группы %s" +msgid "%s subscribers" +msgstr "%s подписчики" -#: actions/groupmembers.php:96 +#: actions/subscribers.php:52 #, php-format -msgid "%s group members, page %d" -msgstr "Участники группы %s, страница %d" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Список пользователей, являющихся членами этой группы." +msgid "%s subscribers, page %d" +msgstr "%s подписчики, страница %d" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Группы" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Это пользователи, которые читают ваши записи." -#: actions/groups.php:64 +#: actions/subscribers.php:67 #, php-format -msgid "Groups, page %d" -msgstr "Группы, страница %d" +msgid "These are the people who listen to %s's notices." +msgstr "Это пользователи, которые читают записи %s." -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -"%%%%site.name%%%% группы помогут вам найти и общаться с людьми по интересам. " -"Подробнее о группах [читайте тут](%%doc.groups%%). Попробуйте [поискать " -"существующие группы](%%%%action.groupsearch%%%%) или [создайте новую группу]" -"(%%%%action.newgroup%%%%)." - -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Создать новую группу" -#: actions/groupsearch.php:57 +#: actions/subscribers.php:110 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "%s has no subscribers. Want to be the first?" msgstr "" -"Поиск группы на %%site.name%% по названию, месторасположению или описанию." - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Поиск группы" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" -"(%%doc.im%%). Настройте ваш IM аккаунт и предпочтения ниже." -#: actions/imsettings.php:120 +#: actions/subscriptions.php:52 #, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber или GTalk - адрес, " - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Посылать мне записи через Jabber/GTalk." +msgid "%s subscriptions" +msgstr "Подписки %s" -#: actions/imsettings.php:321 +#: actions/subscriptions.php:54 #, php-format -msgid "A confirmation code was sent " -msgstr "Код подтверждения выслан " - -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "Вы должны авторизоваться для вступления в группу." +msgid "%s subscriptions, page %d" +msgstr "Подписки %s, страница %d" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "Вы уже являетесь членом этой группы" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Это пользователи, записи которых вы читаете." -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/subscriptions.php:69 #, php-format -msgid "Could not join user %s to group %s" -msgstr "Не удаётся присоеденить пользователя %s к группе %s" +msgid "These are the people whose notices %s listens to." +msgstr "Это пользователи, записи которых читает %s." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/subscriptions.php:121 #, php-format -msgid "%s joined group %s" -msgstr "%s вступил в группу %s" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Входящие должны быть включены для работы групп." +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "Вы должны авторизоваться, чтобы покинуть группу." +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s теперь просматривает твои записи на %2$s." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Нет такой группы." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "Вы не являетесь членом этой группы." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "СМС" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "Вы не можете покинуть группу, пока являетесь её администратором." +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Не авторизовано" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "Не удаётся найти учетную запись." +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Нет ID аргумента." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 +#: actions/tagother.php:65 #, php-format -msgid "Could not remove user %s to group %s" -msgstr "Не удаётся удалить пользователя %s из группы %s" +msgid "Tag %s" +msgstr "Тэги %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "%s покинул группу %s" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Профиль пользователя" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "Авторизоваться" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Фото" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "Нет текущего статуса" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Тэги для пользователя" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Новая группа" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятой " +"или пробелом" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Используйте эту форму для создания новой группы." +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Вы можете помечать тегами только пользователей, на которых подписаны или " +"которые подписаны на Вас." -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Не удаётся создать группу." +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Не удаётся сохранить теги." -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Не удаётся назначить членство в группе." +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Это слишком длинно." +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Записи, помеченные %s, страница %d" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Вы не можете послать сообщение самому себе." +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Лента записей для %s" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Запись опубликована" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Лента записей для %s" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Ошибка AJAX" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Лента записей для %s" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Этот пользователь не разрешает \"подталкивать\" его, или ещё не подтверждён " -"или ещё не представил свой электронный адрес." +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Нет такого тега." -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "\"Подталкивание\" послано" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Метод API реконструируется." -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "\"Подталкивание\" отправлено!" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Нет ID профиля в запросе." -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "OpenID вход" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Нет профиля с таким ID." -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Убрать OpenID" +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Отписано" -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "Другие установки" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "Управление другими опциями." +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Авторизовать подписку" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Автоматическое укорочение длинных URL" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Сервис" +#: actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "лицензия." -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "Автоматически использовать выбранный сервис" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Принять" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Сервис сокращения URL слишком длинный (максимум 50 символов)." +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Подписаться на %s" -#: actions/passwordsettings.php:69 -msgid "Change your password." -msgstr "Изменить ваш пароль" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Отбросить" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "Пароль сохранён." +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Подписки %s" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "Неверный тег человека: %s" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Не авторизованный запрос!" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Пользовательские авто-теги от %s - страница %d" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Подписка авторизована" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Есть пользователи, которые пометили себя как \"%s\"" +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " +"о том, как авторизовать подписку. Ваш подписочный купон: " -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Информация профиля" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Подписка отменена" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userauthorization.php:261 +#, fuzzy msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -"Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или " -"пробелом" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Автоматически подписываться на всех, кто подписался на меня" +"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " +"чтобы полностью отказаться от подписки." -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/userauthorization.php:296 #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Неверный тег: \"%s\"" - -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Не удаётся сохранить теги." +msgid "Listener URI ‘%s’ not found here" +msgstr "" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/userauthorization.php:301 #, php-format -msgid "Public timeline, page %d" -msgstr "Общая лента, страница %d" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Не удаётся вернуть публичный поток." +msgid "Listenee URI ‘%s’ is too long." +msgstr "" -#: actions/public.php:220 +#: actions/userauthorization.php:307 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" -"Микроблоггинг)" - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Общее облако тэгов" -#: actions/publictagcloud.php:63 +#: actions/userauthorization.php:322 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "Самые популярные тэги на %s на текущий момент" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Облако тэгов" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "Простите, регистрация только по приглашению." - -#: actions/register.php:149 -msgid "You can't register if you don't " +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -"Вы не можете зарегистрироваться, если вы не согласны лицензионным " -"соглашением." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "При помощи этой формы вы можете создать " - -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -"Разрешено от 1 до 64 латинских строчных букв или цифр, без пробелов и знаков " -"пунктуации." -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "" -"Используется только для обновлений, осведомлений и восстановления пароля." +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не удаётся прочитать URL аватары «%s»" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "Адрес твоей страницы, дневника или профиля на другом портале." +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Неверный тип изображения для '%s'" -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Опиши себя и свои интересы при помощи 140 символов." +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Нет идентификатора." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Настройки профиля" -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Где вы находитесь, например «Город, область, страна»." +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/register.php:432 -msgid " except this private data: password, " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -", за исключением моей приватной информации: пароля, почты, мессенджера, " -"телефона." -#: actions/register.php:471 +#: actions/usergroups.php:64 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. " +msgid "%s groups, page %d" +msgstr "Группы %s, страница %d" -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" -"(Вам сразу же послано сообщение по электронной почте, с инструкциями по " -"тому, как подтвердить свой электронный адрес.)" +#: actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Искать людей или текст" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Это локальный профиль! Авторизуйтесь для подписки." +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Вы не являетесь членом этой группы." -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/usergroups.php:158 #, php-format -msgid "Replies to %s, page %d" -msgstr "Ответы для %s, страница %d" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/showfavorites.php:79 +#: classes/File.php:137 #, php-format -msgid "%s favorite notices, page %d" -msgstr "Любимые записи %s, страница %d" +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: classes/File.php:147 #, php-format -msgid "%s group" -msgstr "Группа %s" +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: classes/File.php:154 #, php-format -msgid "%s group, page %d" -msgstr "Группа %s, страница %d" - -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Профиль группы" - -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Запись" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Не удаётся вставить сообщение." -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Действия группы" +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Не удаётся обновить сообщение с новым URI." -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: classes/Notice.php:164 #, php-format -msgid "Notice feed for %s group" -msgstr "Лента записей от группы %s" +msgid "DB error inserting hashtag: %s" +msgstr "Ошибка баз данных при вставке хеш-тегов для %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Участники" +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблемы с сохранением записи." -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(пока ничего нет)" +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Проблема при сохранении записи. Неизвестный пользователь." -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Все участники" +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Слишком много записей за столь короткий срок; передохните немного и " +"попробуйте вновь через пару минут." -#: actions/showgroup.php:378 -#, php-format +#: classes/Notice.php:194 +#, fuzzy msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -"**%s** - это группа пользователей на сайте %%%%site.name%%%%, для " -"[микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging)" +"Слишком много записей за столь короткий срок; передохните немного и " +"попробуйте вновь через пару минут." -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Только отправитель и получатель могут читать это сообщение." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Вам запрещено поститься на этом сайте (бан)" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Проблемы с сохранением записи." + +#: classes/Notice.php:1120 #, php-format -msgid "%s, page %d" -msgstr "Входящие для %s - страница %d" +msgid "DB error inserting reply: %s" +msgstr "Ошибка баз данных при вставке ответа для %s" -#: actions/showstream.php:143 -msgid "'s profile" +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Сообщение для %1$s на %2$s" + +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" msgstr "Профиль" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Профиль пользователя" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Изменить ваши настройки профиля" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Фото" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Загрузить аватар" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Действия пользователя" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Изменить ваш пароль" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Послать приватное сообщение этому пользователю." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Изменить электронный адрес" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Сообщение" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Все подписчики" +#: lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Профиль пользователя" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Все группы" +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Другое" + +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Другие опции" -#: actions/showstream.php:542 +#: lib/action.php:144 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** зарегистрирован на %%%%site.name%%%%, сервисе для [микроблогинга]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "%s - %s" +msgstr "%s (%s)" -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Номер телефона, без пробелов, с кодом зоны" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Страница без названия" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "" -"Посылать мне записи через СМС; я понимаю, что это может привести к расходам " -"по пересылке." +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Главная навигация" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "В ожидании подтверждения данного номера телефона." +#: lib/action.php:430 +msgid "Home" +msgstr "Моё" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Выбор провайдера" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Личный профиль и лента друзей" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Вы не подписаны на этот профиль." +#: lib/action.php:432 +msgid "Account" +msgstr "Настройки" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Не удаётся сохранить подписку." +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Изменить ваш email, аватар, пароль, профиль и др." -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Не локальный пользователь." +#: lib/action.php:435 +msgid "Connect" +msgstr "Соединить" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Подписано" +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Не удаётся перенаправить на сервер: %s" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "%s подписчики" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Пригласить" -#: actions/subscribers.php:52 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "%s subscribers, page %d" -msgstr "%s подписчики, страница %d" +msgid "Invite friends and colleagues to join you on %s" +msgstr "Пригласи друзей и коллег стать такими же как ты участниками %s" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Это пользователи, которые читают записи %s." +#: lib/action.php:445 +msgid "Logout" +msgstr "Выход" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Это пользователи, которые " +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Выйти" -#: actions/subscriptions.php:52 -#, php-format -msgid "%s subscriptions" -msgstr "Подписки %s" +#: lib/action.php:450 +msgid "Create an account" +msgstr "Создать новый аккаунт" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "Подписки %s, страница %d" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Войти" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Это пользователи, записи которых читает %s." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Помощь" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "Это пользователи, которые " +#: lib/action.php:456 +msgid "Help me!" +msgstr "Помощь" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +#: lib/action.php:459 +msgid "Search" +msgstr "Поиск" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Записи, помеченные %s, страница %d" +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Искать людей или текст" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Записи, помеченные \"%s\", в хронологическом порядке" +#: lib/action.php:480 +msgid "Site notice" +msgstr "Новая запись" -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Не авторизовано" +#: lib/action.php:546 +msgid "Local views" +msgstr "Локальные виды" -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Нет ID аргумента." +#: lib/action.php:612 +msgid "Page notice" +msgstr "Новая запись" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Тэги %s" +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Навигация по подпискам" -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Тэги для пользователя" +#: lib/action.php:721 +msgid "About" +msgstr "О проекте" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: lib/action.php:723 +msgid "FAQ" +msgstr "ЧаВо" + +#: lib/action.php:727 +msgid "TOS" msgstr "" -"Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятой " -"или пробелом" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." +#: lib/action.php:730 +msgid "Privacy" +msgstr "Пользовательское соглашение" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Вы можете помечать тегами только пользователей, на которых подписаны или " -"которые подписаны на Вас." +#: lib/action.php:732 +msgid "Source" +msgstr "Исходник" -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Не удаётся сохранить теги." +#: lib/action.php:734 +msgid "Contact" +msgstr "Контакты" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "\"Подтолкнуть\"" + +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "StatusNet лицензия" + +#: lib/action.php:767 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." +"**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" +"%site.broughtby%%](%%site.broughtbyurl%%). " -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Нет такого тега." +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** — сервис микроблогинга. " -#: actions/tagrss.php:66 actions/tagrss.php:64 +#: lib/action.php:771 #, php-format -msgid "Microblog tagged with %s" -msgstr "Микроблог помеченный для %s" +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Этот сервис работает при помощи [StatusNet](http://status.net/) - " +"программного обеспечения для микроблогинга, версии %s, доступного под " +"лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html)." -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Неудача при блокировке пользователя." +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet лицензия" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Неудача при разблокировке пользователя." +#: lib/action.php:794 +msgid "All " +msgstr "Все" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не найдено." +#: lib/action.php:799 +msgid "license." +msgstr "лицензия." -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" -"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " -"на Твиттер, и подпишитесь на друзей с Твиттера, которые уже здесь." +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Пагинация" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Имя Твиттер-пользователя" +#: lib/action.php:1062 +msgid "After" +msgstr "Сюда" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Твиттер-пароль" +#: lib/action.php:1070 +msgid "Before" +msgstr "Туда" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Твиттер-друзья" +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -"Имя пользователя должно состоят только из цифр, прописных или строчных букв " -"и символа подчеркивания (_). Всего не более 15 символов." - -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "Не удаётся подтвердить данные по аккаунту " -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Ошибка при удалении данного блока." - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "Нет ID профиля в запросе." +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Нет профиля с таким ID." +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профиль" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Отписано" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "Группы %s" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "Группы %s, страница %d" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Команда исполнена" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Проблема при сохранении записи. Неизвестный пользователь." +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Команда завершена" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Слишком много записей за столь короткий срок; передохните немного и " -"попробуйте вновь через пару минут." +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Команда неудачна" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Вам запрещено поститься на этом сайте (бан)" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Простите, эта команда ещё не выполнена." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Загрузить аватар" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Не удаётся одновить пользователя с подтверждённым электронным адресом." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Другое" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Другие опции" +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "\"Подталкивание\" послано" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/command.php:126 #, php-format -msgid "%s - %s" -msgstr "%s (%s)" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Страница без названия" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Главная навигация" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "У пользователя нет записей" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Личный профиль и лента друзей" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Запись помечена как любимая." -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Искать людей или текст" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Настройки" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "Полное имя: %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Изменить ваш email, аватар, пароль, профиль и др." +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Месторасположение: %s" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Соединиться с IM, SMS, Twitter" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Домашняя страница: %s" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Выйти" +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "О пользователе: %s" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Войти" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Создать новый аккаунт" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Ошибка при отправке прямого сообщения." -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Войти с OpenID" +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Помощь" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Ответить на эту запись" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Новая запись" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблемы с сохранением записи." -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Локальные виды" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Определите имя пользователя при подписке на" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "Новая запись" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "Подписано на %s" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Навигация по подпискам" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Определите имя пользователя для отписки от" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "StatusNet лицензия" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "Отписано от %s" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Все" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Команда ещё не выполнена." -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "лицензия." +#: lib/command.php:551 +msgid "Notification off." +msgstr "Оповещение отсутствует." -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Заблокировать пользователя." +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Нет оповещения." -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Блокировать" +#: lib/command.php:574 +msgid "Notification on." +msgstr "Есть оповещение." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Мне не нравиться эта запись" +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Есть оповещение." -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Вы должны авторизоваться чтобы использовать %s приложение" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Не удаётся создать OpenID-форму: %s " -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr "Создать новую учетную запись" +#: lib/command.php:602 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Общее" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Мне нравиться эта запись" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Нет кода подтверждения." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Экспорт потока записей" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Фильтровать тэги" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Все" +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Войти" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Тэги" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Выберите тэг из выпадающего списка" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Обновлено по IM" + +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Обновления по СМС" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "Ошибка базы данных" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Загрузить" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Изменить Ваш пароль" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Соединить" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Поиск" + +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Текст" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Список" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:468 +msgid "Design defaults restored." +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Мне не нравиться эта запись" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Мне нравиться эта запись" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Пометить" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Экспорт потока записей" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Фильтровать тэги" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Все" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Выбор провайдера" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Тэги" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Выберите тэг из выпадающего списка" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" msgstr "Перейти" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес страницы, дневника или профиля группы на другом портале" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опиши группу при помощи 140 символов" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опиши группу при помощи 140 символов" + #: lib/groupeditform.php:172 msgid "Description" msgstr "Описание" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Опиши группу при помощи 140 символов" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Где находится группа, например «Город, область, страна»" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Группа" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Настройки" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блокировать" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Заблокировать пользователя." -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Редактировать информацию о группе %s" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 msgid "Logo" msgstr "Логотип" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Добавить или изменить логотип группы %s" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Добавить или изменить логотип группы %s" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Группы с наибольшим количеством участников" @@ -5428,9 +4060,43 @@ msgid "Tags in %s group's notices" msgstr "Тэги записей группы %s" #: lib/htmloutputter.php:104 -msgid "This page is not available in a " +msgid "This page is not available in a media type you accept" msgstr "Страница недоступна для того типа, который Вы задействовали." +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Тут вы можете загрузить логотип для группы." + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Частичная загрузка." + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Системная ошибка при загрузке файла." + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Не является изображением или разрушенный файл." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Неподдерживаемый формат файла изображения." + +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Потерян файл." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Неподдерживаемый тип файла" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Новая запись" + #: lib/joinform.php:114 msgid "Join" msgstr "Авторизация" @@ -5439,43 +4105,80 @@ msgstr "Авторизация" msgid "Leave" msgstr "Выйти" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#: lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Войти с вашим ником и паролем." -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Создать новый аккаунт" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Войти или зарегистрироваться с OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Только сам пользователь может читать собственный почтовый ящик." + +#: lib/mailbox.php:139 +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:227 lib/noticelist.php:424 +msgid "from" +msgstr "от " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Подтверждение электронного адреса" -#: lib/mail.php:175 +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" -msgstr "" -"Привет, %s.\n" +"Someone just entered this email address on %s.\n" "\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s сейчас слушает ваши заметки на %2$s." -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format -msgid "%1$s is now listening to " -msgstr "%1$s теперь просматривает твои записи " +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Месторасположение: %s\n" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Домашняя страница: %s\n" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -5484,67 +4187,227 @@ msgstr "" "Био: %s\n" "\n" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "Вас \"подтолкнул\" пользователь %s" - -#: lib/mail.php:465 +#: lib/mail.php:285 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" -"%1$s (%2$s) интересуется чем Вы занимались последнее время и предлагает Вам " -"запостить парочку новостей." +msgid "New email address for posting to %s" +msgstr "Новый электронный адрес для постинга %s" -#: lib/mail.php:555 +#: lib/mail.php:288 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s добавил вашу запись от %2$s в состав своих любимых." +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"У Вас новый адрес постинга на %1$s.\n" +"\n" +"Посылайте электронные письма на %2$s для постинга новых записей.\n" +"\n" +"Инструкции по электронным публикациям записей на %3$s.\n" +"\n" +"Искренне Ваш,\n" +"%4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s статус" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Подтверждение СМС" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "Вас \"подтолкнул\" пользователь %s" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Новое приватное сообщение от %s" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s добавил вашу запись в состав своих любимых" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Не удаётся вернуть публичный поток." + +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr " из" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +#: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Послать прямую запись" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Послать запись" +#: lib/messageform.php:146 +msgid "To" +msgstr "Для" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 +#: lib/messageform.php:162 lib/noticeform.php:173 msgid "Available characters" msgstr "6 или больше знаков" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "в ответ на" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Послать запись" + +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Что нового, %s?" + +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Нет контента!" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Удалить эту запись" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Удалить" - #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "\"Подтолкнуть\" этого пользователя" @@ -5557,78 +4420,203 @@ msgstr "\"Подтолкнуть\"" msgid "Send a nudge to this user" msgstr "\"Подтолкнуть\" этого пользователя" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "Тэги записей пользователя %s" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Ошибка при вставке нового профиля" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(пока ничего нет)" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Ошибка при вставке аватара" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Общее" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Ошибка вставки удалённого профиля" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Группы" +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Удалить запись" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Облаго тэгов" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Не удаётся вставить новую подписку." -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Особые" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Личное" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Популярное" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Ответы" -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Запись" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Любимое" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Найти группы на этом сайте" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Пользователь" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Секция без названия" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Входящие" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "Люди на которых подписан %s" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Ваши входящие сообщения" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "Люди подписанные на %s" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Исходящее" + +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Ваши исходящие сообщения" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Тэги записей пользователя %s" + +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Подписки" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Все подписки." + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Подписчики" + +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Все подписчики" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Пользователь" + +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Регистрация" + +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Все группы" + +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Общее" + +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Группы" + +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Облаго тэгов" + +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Особые" + +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Популярное" + +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Поиск" + +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Поиск" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Люди" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Найти человека на этом сайте" + +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Запись" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Найти запись по содержимому" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Найти группы на этом сайте" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Секция без названия" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "Люди на которых подписан %s" + +#: lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" +msgstr "Люди подписанные на %s" + +#: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Группы, в которых состоит %s" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Пригласи друзей и коллег стать такими же как ты участниками %s" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(пока ничего нет)" + +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/subs.php:53 lib/subs.php:52 +#: lib/subs.php:52 msgid "User has blocked you." msgstr "Пользователь заблокировал Вас." -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Подписаться на %s" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Подписка неудачна." + +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Не удаётся подписать других на вашу ленту." + +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Не подписан!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Не удаётся удалить подписку." #: lib/tagcloudsection.php:56 msgid "None" @@ -5638,2117 +4626,106 @@ msgstr "Нет тэгов" msgid "Top posters" msgstr "Самые активные" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Разблокировать пользователя." - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Разблокировать" - #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Отписаться от этого пользователя" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Лента друзей %s (RSS 1.0)" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Лента друзей %s (RSS 2.0)" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Лента друзей %s" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Отписаться" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/userprofile.php:116 #, fuzzy -msgid "You and friends" -msgstr "%s и друзья" +msgid "Edit Avatar" +msgstr "Аватар" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Тут вы можете загрузить свой аватар." +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Действия пользователя" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/userprofile.php:248 #, fuzzy -msgid "Avatar deleted." -msgstr "Аватар обновлён." +msgid "Edit profile settings" +msgstr "Настройки профиля" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Вы окончательно удаляете запись. После того, как это будет сделано, " -"восстановление будет невозможно." +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Послать приватное сообщение этому пользователю." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Сообщение" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" -"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " -"приватное сообщение." +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "пару секунд назад" + +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "около минуты назад" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: lib/util.php:848 #, 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 "" +msgid "about %d minutes ago" +msgstr "около %d минут(ы) назад" + +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "около часа назад" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: lib/util.php:852 #, php-format -msgid "Okay, do it!" -msgstr "" +msgid "about %d hours ago" +msgstr "около %d часа(ов) назад" -#: actions/facebooksettings.php:124 +#: lib/util.php:854 +msgid "about a day ago" +msgstr "около дня назад" + +#: lib/util.php:856 #, 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 "" +msgid "about %d days ago" +msgstr "около %d дня(ей) назад" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Тут вы можете загрузить логотип для группы." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "около месяца назад" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Подберите нужный квадратный ракурс дла вашего аватара" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "около %d месяца(ев) назад" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Микроблог от %s" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "около года назад" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#: lib/webcolor.php:82 #, fuzzy, php-format -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%% по имени, месторасположению или интересам. " -"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." +msgid "%s is not a valid color!" +msgstr "URL Главной страницы неверен." -#: actions/groups.php:90 +#: lib/webcolor.php:123 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Ошибка при отправке прямого сообщения." - -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%s\" on %s" -msgstr "" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Сообщение не удаётся разобрать." -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " -"изменять Ваши установки." +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Незарегистрированный пользователь." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Лента публичного потока" +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Простите, это не Ваш входящий электронный адрес." -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Лента публичного потока" - -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Лента публичного потока" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" -"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" -"Микроблоггинг), созданный с использованием свободного программного " -"обеспечения [StatusNet](http://status.net/). [Стань участником](%%action." -"register%%), чтобы держать в курсе своих событий поклонников, друзей, " -"родственников и коллег! ([Читать далее](%%doc.help%%))" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" -"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " -"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " -"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" -"action.openidlogin%%)!)" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -", за исключением моей приватной информации: пароля, почты, мессенджера, " -"телефона." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Создать" - -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " -"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " -"использованием свободного программного обеспечения [StatusNet](http://status." -"net/). Участники обмениваются короткими сообщениями о своих новостях. " -"[Зарегистрируйся](%%%%action.register%%%%), чтобы стать участником группы и " -"получить множество других возможностей! ([Читать далее](%%%%doc.help%%%%))" - -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Профиль группы" - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Профиль" - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Лента записей для %s" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Лента записей для %s" - -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "Лента записей для %s" - -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Исходящие для %s" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Аватар" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Настройки профиля" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " -"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " -"использованием свободного программного обеспечения [StatusNet](http://status." -"net/). [Зарегистрируйся](%%%%action.register%%%%), чтобы всегда получать " -"сообщения участника **%s** и иметь доступ ко множеству других возможностей! " -"([Читать далее](%%%%doc.help%%%%))" - -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"Код подтверждения выслан на мобильный номер, который вы добавили. " -"Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения " -"этого кода и инструкций по его использованию." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Нет такого пользователя" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " -"на Твиттер," - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Не удаётся подтвердить данные по аккаунту \"%s\" из Твитера." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " -"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" -"\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy -msgid "Search for more groups" -msgstr "Искать людей или текст" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Слишком много записей за столь короткий срок; передохните немного и " -"попробуйте вновь через пару минут." - -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Соединиться с IM, SMS, Twitter" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "\"Подтолкнуть\"" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "Ошибка базы данных" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "Вы должны авторизоваться чтобы использовать %s приложение" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Поиск" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Нет такого документа." - -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Список пользователей, являющихся членами этой группы." - -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Список пользователей, являющихся членами этой группы." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Профиль пользователя" - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s и друзья, страница %d" - -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Список пользователей, являющихся членами этой группы." - -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Неудача при разблокировке пользователя." - -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Код подтверждения" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Не удаётся удалить эту запись." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Неверный тег: \"%s\"" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "Новая запись" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Новая запись" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Неверное имя." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Профиль не определен." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Пользователь заблокировал Вас." - -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Вы не являетесь членом этой группы." - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Заблокировать пользователя." - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Вы должны авторизоваться, чтобы создать новую группу." - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Группы" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Не удаётся обновить пользователя." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Не удаётся сохранить Ваши установки по Твиттеру!" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Настройки синхронизации сохранены." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "Вы должны быть администратором, чтобы изменять информацию о группе" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Настройки" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Нет результатов." - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "Пользователь заблокировал Вас." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Сообщение" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Не удаётся сохранить профиль." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) позволяет вам авторизоваться на многих сайтах при " -"помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " -"аккаунтом OpenIDs отсюда." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Настройки профиля" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" -"Микроблоггинг), созданный с использованием свободного программного " -"обеспечения [StatusNet](http://status.net/)." - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Если вы забыли или потеряли пароль, то вы можете получить новый, послав " -"запрос на тот электронный адрес, который вы указали в вашем аккаунте." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Вы идентифицированны. Введите новый пароль ниже." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Запрошено восстановление пароля" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Ошибка, связанная с кодом подтверждения." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Подписаться на %s" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Любимые записи %s, страница %d" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Лента записей от группы %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Лента записей от группы %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Лента записей от группы %s" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " -"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг) , созданный с " -"использованием свободного программного обеспечения [StatusNet](http://status." -"net/). Участники обмениваются короткими сообщениями о своих новостях. " - -#: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy -msgid "Admins" -msgstr "Настройки" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Не локальный пользователь." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Записи, помеченные %s" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Лента записей от группы %s" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " -"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " -"использованием свободного программного обеспечения [StatusNet](http://status." -"net/)." - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s теперь просматривает твои записи на %2$s." - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Лента записей для %s" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Лента записей для %s" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Эта запись уже входит в число любимых!" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Эта запись не входит в число ваших любимых записей!" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Не удаётся вернуть публичный поток." - -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Нет адресата." - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Нет статусов." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Обновлено от %1$s на %2$s!" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "лицензия." - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Подписки %s" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Настройки профиля" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Вы не являетесь членом этой группы." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Проблемы с сохранением записи." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Сообщение для %1$s на %2$s" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Профиль пользователя" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Профиль" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Загрузить" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Изменить Ваш пароль" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Соединить" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Поиск" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Список" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Блокировать" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Заблокировать пользователя." - -#: lib/groupnav.php:119 -#, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Добавить или изменить логотип группы %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Нет контента!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Пользователь" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Поиск" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "URL Главной страницы неверен." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Нет такого тега." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Прямые сообщения для %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." - -#: actions/apifriendshipsdestroy.php:109 -msgid "Could not unfollow user: User not found." -msgstr "" -"Не удаётся следовать за пользователем, т. к. такого пользователя не " -"существует." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Слишком длинное описание (максимум 140 символов)" - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Вы уже являетесь членом этой группы" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Не удаётся присоеденить пользователя %s к группе %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Вы не являетесь членом этой группы." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Не удаётся удалить пользователя %s из группы %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Группы %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Группы, в которых состоит %s" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Действия группы" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Аватар обновлён." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Неподдерживаемый формат файла изображения." - -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " -msgstr "Фото" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Слишком длинное описание (максимум 140 символов)" - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Обновлено от %1$s на %2$s!" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Пользователь отслеживает несуществующее." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Не авторизовано." - -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Не удаётся преобразовать запросы в доступы." - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Неизвестная версия OMB-протокола." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Нет такой записи." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Потерян файл." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Обновлено от %1$s на %2$s!" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Страница недоступна для того типа, который Вы задействовали." - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." -"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" -"(%%action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Обновлено от %1$s на %2$s!" - -#: actions/noticesearchrss.php:91 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Все обновления, соответствующие поисковому запросу «%s»" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Соединить" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Опиши себя и свои увлечения при помощи 140 символов" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Опиши себя и свои интересы при помощи 140 символов." - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Слишком длинное био (максимум 140 символов)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" -"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " -"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " -"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" -"action.openidlogin%%)!)" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Неверный URL профиля (не YADIS-документ)." - -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Это локальный профиль! Авторизуйтесь для подписки." - -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Не удаётся получить запрос." - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Лента записей для %s" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Лента записей для %s" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Лента записей для %s" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Сообщение для %1$s на %2$s" - -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Лента друзей %s (RSS 1.0)" - -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Лента друзей %s (RSS 2.0)" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Лента друзей %s" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "Исходящие для %s" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Запись опубликована" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Страница недоступна для того типа, который Вы задействовали." - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Лента записей для %s" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " -"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" -"\"." - -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " -"о том, как авторизовать подписку. Ваш подписочный купон: " - -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " -"чтобы полностью отказаться от подписки." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Не удаётся прочитать URL аватары «%s»" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Неверный тип изображения для '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Не удаётся перенаправить на сервер: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "StatusNet лицензия" - -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Не удаётся одновить пользователя с подтверждённым электронным адресом." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "\"Подталкивание\" послано" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" - -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Ответить на эту запись" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Проблемы с сохранением записи." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Нет кода подтверждения." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -#, fuzzy -msgid "Go to the installer." -msgstr "Войти" - -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Выбор провайдера" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Опиши группу при помощи 140 символов" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Опиши группу при помощи 140 символов" - -#: lib/jabber.php:192 -#, fuzzy, php-format -msgid "notice id: %s" -msgstr "Новая запись" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s добавил вашу запись в состав своих любимых" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "от " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Не удаётся вернуть публичный поток." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Удалить запись" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Неверный контент записи" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Не удаётся создать OpenID-форму: %s " - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Тут вы можете загрузить логотип для группы." - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Простите, входящих писем нет." diff --git a/locale/sv/LC_MESSAGES/statusnet.mo b/locale/sv/LC_MESSAGES/statusnet.mo index 9623ef664..d9bcf82c8 100644 Binary files a/locale/sv/LC_MESSAGES/statusnet.mo and b/locale/sv/LC_MESSAGES/statusnet.mo differ diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 75282e518..9a9f25c70 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -1,4621 +1,1748 @@ # Translation of StatusNet to Swedish # -# Author@translatewiki.net: Micke # -- msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:11+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:50+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "Sök i strömmen efter \"%s\"" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"förutom det här, som är privat: lösenord, epostadress, IM-adress, " -"telefonnummer." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "från" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Uppdateringar med svar till %2$s" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s har bjudit in dig till %2$s" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s har bjudit in dig till %2$s (%3$s).\n" -"\n" -"%2$s är en mikroblogg service som låter dig via sidan hålla direktkontakt " -"med människor du känner eller intresserar dig.\n" -"\n" -"Du kan även dela med dig utav nyheter om dig själv, dina tankar, eller ditt " -"liv online som känner igen dig. Det är också perfekt för att möta nya " -"personer som delar ditt intresse.\n" -"\n" -"%1$s sa:\n" -"\n" -"%4$s\n" -"\n" -"Du kan se %1$s's profilsida på %2$s här:\n" -"\n" -"%5$s\n" -"\n" -"Om du vill prova på denna service, klicka på länken nedan för att acceptera " -"denna inbjudan.\n" -"\n" -"%6$s\n" -"\n" -"Om inte, då kan du ignorera detta meddelande. Tack för att du tog dig\n" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s lyssnar nu på dina meddelanden i %1$s.\n" -"\n" -"\tHälsningar,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s uppdateringar med svar till uppdatering från %2$s / %3$s." - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s's status den %2$s" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s(%s)" - -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "%s Publik Ström" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s med vänner" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "%s publika tidslinje" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s status" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidslinje" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "%s uppdateringar ifrån allihop!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Du kommer få ett meddelande med email inom kort med instruktioner hur du " -"bekräftar din emailadress)" - -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%]" -"(%%site.broughtbyurl%%)" - -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** är en mikroblogg service." - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Användarna är tydligt markerade med sitt fulla namn eller smeknamn." - -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" - -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas " -"i." - -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "Minst 6 tecken" - -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "Minst 6 tecken och glöm inte bort det!" - -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 eller fler tecken. Måste fyllas i." - -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 -#, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " -"godkänna att %s får skicka meddelanden till dig." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"En bekräftelsekod har skickats ut till email adressen du fyllde i. " -"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " -"använder den." - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " -"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " -"använder den." - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API-metoden hittades inte!" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API-metoden är under uppbyggnad." - -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Om" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Acceptera" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Lägg till" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Lägg till OpenID" - -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Lägg till eller ta bort OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adress" - -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "Adresser till vänner att bjuda in (en rad per adress)" - -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Alla prenumerationer" - -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "%s alla uppdateringar" - -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Redan inloggad." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Det finns redan en prenumeration!" - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Är du säker på att du vill tabort detta inlägg?" - -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Tillåt prenumeration." - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Logga in automatiskt i framtiden; Ej för publika datorer!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke " -"mänsklig användare) " - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Användarbild" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Användarbilden uppdaterad." - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Väntar bekräftelse på denna adress. Kontrollera ditt Jabber/GTalk konto för " -"vidare instruktioner. (La du till %s i din vännerlista?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Väntar bekräftelse på denna adress. Kontrollera din inbox (och spamlådan!) " -"efter meddelande om vidare instruktioner." - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Väntar bekräftelse på detta telefonnummer. " - -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Före" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Biografi" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Biografin är för lång (max 140 tecken)" - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Kan inte ta bort detta inlägg." - -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Kan inte läsa användarbild URL '%s'" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Kan inte spara det nya lösenordet." - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Avbryt" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Kan inte initiera OpenID objekt." - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Kan inte normalisera det Jabber ID" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Kan inte normalisera den emailadressen" - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Ändra" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Ändra email hantering" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Byt lösenord" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Ändra ditt lösenord" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Ändra dina profilinställningar" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Bekräfta" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Bekräfta adress" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Verifikation avbruten" - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Bekräftelsekod" - -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Bekräftelsekoden kunde inte hittas." - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Grattis, %s! Välkommen till %%%%site.name%%%%. Härifrån, kanske du vill...\n" -"\n" -"* Gå till [din profil](%s) och göra ditt första inlägg.\n" -"* Lägg till en [Jabber/GTalk adress](%%%%action.imsettings%%%%) så du kan " -"skicka inlägg med en IM klient.\n" -"* [Sök efter personer](%%%%action.peoplesearch%%%%) som du kanske känner " -"eller delar dina intressen. \n" -"* Uppdatera din [profil inställning](%%%%action.profilesettings%%%%) för att " -"berätta lite mer om dig själv för andra här. \n" -"* Läs igenom [online dok](%%%%doc.help%%%%) efter funktioner som du kanske " -"missat. \n" -"\n" -"Tack för att du registrerade dig och vi hoppas du kommer trivas med denna " -"service." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Anslut" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Anslut till existerande konto" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Kontakta" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "Kan inte skapa OpenID formulär: %s" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Kunde inte följa användaren: %s finns redan i din lista." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "Kunde inte skicka vidare till servern: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Kunde inte spara informationen om användarbild" - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Kunde inte spara informationen om den nya profilen" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Kunde inte prenumerera på annat åt dig." - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Kunde inte prenumerera." - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Kunde inte uppdatera användaren med bekräftad emailadress." - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Kunde inte konvertera förfrågan tokens till Access tokens." - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Kunde inte radera epost bekräftelsen." - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Kunde inte radera prenumerationen. " - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Kunde inte få fram status." - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Kunde inte få en förfrågan token." - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Kunde inte lägga till bekräftelsekoden." - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Kunde inte lägga till ny prenumeration." - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Kunde inte spara profil." - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Kunde inte uppdatera användarens inställningar." - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Kunde inte uppdatera användare." - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Skapa" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Skapa en ny användare med det här smeknamnet" - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Skapa ett nytt konto" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Skapar ett nytt konto för OpenID som redan har en användare" - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Aktuell bekräftad Jabber/Gtalk-adress." - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Nuvarande bekäftat SMS telefonnummer" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Nuvarande bekräftade emailadress." - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Just nu" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "DB error vid infog av hashtag: %s" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Databasfel för svar: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Tabort inlägg" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Berätta om dig själv och dina intressen inom 140 tecken" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Epost" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Emailadress" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Email inställningar" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Epostadressen finns redan." - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Bekräfta epostadress" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Emailadress såsom \"användare@exempel.se\"" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Emailadresser" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Skriv in ett smeknamn eller en epostadress." - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Fyll i koden du mottog i din telefon." - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Felaktig bekräftelse av token" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Lyckades inte ansluta användaren till OpenID." - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Lyckades inte ansluta användaren." - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Fel uppstog när användarbild skulle läggas till" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Fel uppstog när nya profilen skulle läggas till" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Fel uppstog när fjärrprofilen skulle läggas till" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Fel uppstog när adressen skulle bekräftas." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Fel uppstog när fjärrprofil skulle sparas" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Fel uppstog när profilen skulle sparas." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Fel uppstog när användaren skulle sparas." - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Fel uppstog när användare skulle sparas." - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Fel uppstog i användarens inställning" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Fel uppstog vid uppdatering av profilen" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Fel uppstog under uppdatering av fjärranvändare" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Fel uppstog med bekräftelsekoden." - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Nuvarande smeknamn" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "Frågor & svar" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Uppdatering av profilbild misslyckades." - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Flöden för $s vänner" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Flöde för svar till %s" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Feed för taggar %s" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Sök innehåll i inlägg" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Sök personer på denna sida" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " -"du ändrar dina inställningar." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Ditt fulla namn." - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Ditt namn är för långt (max 255 tecken)." - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Hjälp" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Hem" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Hemsida" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Hemsidan har ingen giltig URL" - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Jag vill posta inlägg via min email." - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM adress" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM inställningar" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " -"att koppla det till ditt OpenID" - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Om du vill lägga till OpenID till ditt konto, fyll i fältet nedan och tryck " -"på \"Add\"" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat " -"till den emailadress du sparat till ditt konto." - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Inkommande email" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Inkommande emailadress borttagen." - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Felaktigt, gammalt lösenord" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Felaktigt användarnamn eller lösenord." - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instruktioner om hur du återställer ditt lösenord har sänts till din e-" -"postadress " - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Ogiltig användarbild URL '%s'" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Ogiltig emailadress: %s" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Ogiltig hemsideadress '%s'" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Ogiltig licens URL '%s'" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Ogiltig innehåll i inlägget " - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Ogiltig inlägg uri" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Ogiltig inlägg url" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Ogiltig profil URL '%s' " - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Nåt är fel med profil URL (Format fel)" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Felaktig profil URL skickades åter av servern." - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Felaktig storlek" - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Felaktigt användarnamn eller lösenord." - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Inbjudan(ar) skickad" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Inbjudan(ar) är skickade till följande personer:" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Bjud in" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Bjud in nya användare" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Det drivs med [StatusNet](http://status.net/) mikroblogging software, " -"version %s, tillgängligt under [GNU Affero General Public License](http://" -"www.fsf.org/licensing/licenses/agpl-3.0.html)." - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID används redan utav en annan användare." - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber eller GTalk adress liknande \"användare@exempel.se\". Först se till " -"att lägga till %s i din vännerlista i IM klienten eller GTalk." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Språk" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Språket är för långt(max 50 tecken)." - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Plats" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Platse är för lång (max 255 tecken)." - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Logga in" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Logga in med ett [OpenID](%%doc.openid%%) konto." - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " -"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" -"action.openidlogin%%)." - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Logga ut" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Långt namn, förslagsvis ditt \"riktiga\" namn" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Glömt bort lösenord?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Skapa en ny emailadress för att posta till, avaktiverar den gamla" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Ställ in hur du tar emot email ifrån %%site.name%%" - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Medlem sedan" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Mikroblogg av %s" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Mobiloperatör för din telefon. Vet du nån operatör som kan taemot SMS över " -"email som inte finns med i listan, skicka ett email till oss och tala det " -"hit %s" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Min text och filer finns tillgängliga under" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Ny" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Ny emailadress för att skicka till %s" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "Ny inkommande emailadress inlagd." - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Nytt användarnamn" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Nytt inlägg" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Nytt lösenord" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Nya lösenordet har blivit sparat. Du är nu även inloggad." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Smeknamn" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Användarnamnet används redan, försök med ett annat." - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Inget giltigt smeknamn." - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Smeknamnet på användaren du vill följa" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Smeknamn eller epost" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Nej" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Inget Jabber ID." - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Ingen rättighet förfrågan!" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Ingen operatör vald." - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Ingen kod är ifylld" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Ingen bekräftelsekod." - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Inget innehåll!" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Ingen emailadress." - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Inget id." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Ingen inkommande emailadress." - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Inget smeknamn lämnades ut av fjärrservern." - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Inget användarnamn" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Ingen väntande bekräftelse att avbryta." - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Inget telefonnummer." - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Ingen profil URL lämnades ut av servern." - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Ingen registrerad epost adress för den användaren." - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Ingen begäran funnen!" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Inget resultat" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Ingen storlek" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Ingen status hittad med det ID" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Ingen status med det ID hittades." - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Det existerar inget sådant OpenID" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Inget sådant dokument." - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Inget sådant inlägg." - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Ingen sådan återställningskod. " - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Ingen sådan prenumeration" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Ingen sådan användare" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Ingen användare med den emailadressen eller användarnamn." - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Finns inget att visa!" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Det är ingen kod för återställning." - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Inte registrerad användare." - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Ingen support för det formatet." - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Det är inget giltigt Jabber ID" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Det är inget giltigt OpenID." - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Ingen giltig emailadress" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Det är ingen giltig epost adress." - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Det är inget giltigt användarnamn." - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Det är ingen giltig profil URL (felaktig service)." - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Det är ingen giltig profil URL (ingen XRDS angiven)." - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Det verkar inte vara en bildfil, annars korrupt." - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Inte tillstånd ännu." - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Väntade mig inte detta svar!" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Hittades inte" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Inte inloggad." - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Ingen prenumerant!" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Inlägg sökning" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Inlägg flöde för %s" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Inlägget har ingen profil" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Inlägg" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Inlägg taggade med %s" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Gammalt lösenord" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID konto setup" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID skicka automatiskt" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID inloggning" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID bekäftelse ångrad." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID bekräftelse misslyckad: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID misslyckades: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID borttagen." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID inställningar" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Om du vill, skriv ett personligt meddelande med inbjudan." - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Bitvis uppladdad." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Lösenord" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Lösenord och bekräftelse matchar inte." - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Lösenordet måste vara 6 tecken eller fler." - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Förfrågan om återställning av lösenord" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Lösenord är sparat." - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Lösenorden matchar inte." - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Personer" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Personer sökning" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Sökning personer" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Personlig" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Personligt meddelande" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Kontrollera dessa detajer noga så att du verkligen vet att du vill " -"prenumerera på denna användares inlägg. Om du inte frågade efter att " -"prenumerera på någons inlägg, klicka på \"Cancel\"" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Posta ett inlägg när min Jabber/GTalk status ändras." - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Inställningar" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Inställningar sparade." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Språkval" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Sekretesspolicy" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Det var ett problem när inlägget sparades." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profil" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Profil URL" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Profil inställningar" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Okänd profil" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Publik ström" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Publik tidslinje" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Publicera ett MicroID för min Jabber/GTalk adress." - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Publicera ett MicroID för min emailadress." - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Tidigare taggar" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Återställ" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Återställ lösenord" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Kod för återställning av okänd användare." - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Registrera" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Registrering är inte möjlig." - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Registreringen är genomförd" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Avvisa" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Kom ihåg mig" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Fjärrprofil utan motsvarande profil" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Fjärrprenumerera" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Ta bort" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Ta bort OpenID" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Tar du bort din OpenID så gör du det omöjligt att logga in! Om du behöver ta " -"bort den, lägg till en annan OpenID först." - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Svar" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "Svarat på %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Återställ" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Återställ lösenord" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS Telefonnummer" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS Inställningar" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Inget sådant meddelande." -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS Bekräftelse" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Ingen sådan användare" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Samma som lösenordet ovan" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s med vänner" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Samma som lösenordet ovan. Måste fyllas i." +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 +#, php-format +msgid "%s and friends" +msgstr "%s med vänner" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Spara" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Flöden för $s vänner" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Sök" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Flöden för $s vänner" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Sök strömflöde" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Flöden för $s vänner" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/all.php:127 #, php-format msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"Sök efter innehåll i inlägg på %%site.name%%. Skilj söktermerna åt med " -"mellanslag; dom måste vara minst tre tecken långa." -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/all.php:132 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " -"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Välj en operatör" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Skicka" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Skicka email till denna adress för att posta ett nya inlägg." - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Skicka meddelande till mig via email vid nya prenumerationer." -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Skicka inlägg till mig via Jabber/GTalk." - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 +#: actions/all.php:134 +#, php-format msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -"Skicka inlägg till mig via SMS; Jag är införstådd att min operatör kan " -"debitera mig." -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -"Skicka svar till mig via Jabber/GTalk från personer som inte jag " -"prenumererar på." - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Inställningar" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Inställningar sparade." - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Visar dom populäraste taggarna ifrån den senaste veckan." - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Någon annan använder redan denna OpenID." - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Någonting konstigt inträffade." - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Ledsen, men inga inkommande email är tillåtna." - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Ledsen, men det är inte din inkommande emailadress." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Källa" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s med vänner" -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Statistik" +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Uppdateringar från %1$s och vänner på %2$s!" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Sparade OpenID kunde inte hittas." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Prenumerera" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API-metoden hittades inte!" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Prenumerant" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Denna metod kräver skicka." -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Prenumeration accepterad" +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Prenumeration avvisad" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Användaren har ingen profil." -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Prenumerationer" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Systemfel när filen laddades upp." +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Taggar" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Ingen meddelande text!" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Text" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Det är för långt. Max är 140 tecken. " -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Text sökning" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Mottagaren kunde inte hittas." -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Det OpenID du angav tillhör inte dig." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" +"Kan inte skicka direktmeddelanden till användare som inte är dina vänner." -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Den adressen har redan blivit bekräftad en gång." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direktmeddelande till %s" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Den bekräftelsekoden är inte för dig!" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "Alla direktmeddelanden skickade ifrån %s" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Den emailadressen tillhör redan en annan användare." +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Direktmeddelande till %s" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Filen är för stor." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Alla direktmeddelanden skickade till %s" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Det är redan din Jabber ID." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Ingen status hittad med det ID" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Det är redan din emailadress." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Detta inlägg är redan en favorit!" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Det är redan ditt telefonnummer." +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Kunde inte skapa favorit." -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Det är inte ditt Jabber ID." +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Det inlägget är ingen favorit!" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Det är inte din emailadress." +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Kunde inte tabort favoriten." -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Det är inte ditt telefonnummer." +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Det är fel IM adress." +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Kunde inte följa användaren: %s finns redan i din lista." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Det är fel nummer i bekräftelsen" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Det numret tillhör en annan användare." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "För långt. Maximalt 140 tecken" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Två användarid eller namn måste läggas till." -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Det är för långt. Max antal tecken är 255." +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kunde inte ta emot favoritinläggen." -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kunde inte få fram status." -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Adressen är borttagen." +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Kunde inte skapa favorit." -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " -"med sidans instruktioner hur du bekräftar en prenumeration. Din " -"prenumerering token är:" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kunde inte skapa favorit." -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Kunde inte skapa prenumeration." + +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " -"sidans instruktioner hur du avvisar en prenumeration." +"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Dessa personer är dom som lyssnar på %s inlägg." +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Användarnamnet används redan, försök med ett annat." -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Dessa personer är dom som lyssnar på dina inlägg." +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Det är inget giltigt användarnamn." -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Detta är personer och inlägg som %s lyssnar på." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Hemsidan har ingen giltig URL" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Detta är personer och inlägg som du lyssnar på." +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Ditt namn är för långt (max 255 tecken)." -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Platse är för lång (max 255 tecken)." + +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." msgstr "" -"Dom personerna är redan registrerade användare och du blev nu automatiskt " -"prenumerant till dom:" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Denna bekräftelsekod är för gammal. Du får starta om på nytt igen." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ogiltig hemsideadress '%s'" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Användarnamnet används redan, försök med ett annat." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Detta formulär skall automatiskt skicka själv. Om den inte gör det, klicka " -"på skicka för att gå dit där du skapade ditt OpenID." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Detta är första gången du loggade in till %s så vi måste koppla sitt OpenID " -"till ett lokalt konto. Du kan antingen skapa ett nytt konto eller med ett " -"existerande konto, om du har något." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Denna metod kräver antingen skicka eller tabort." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du prenumererar redan på dessa användare:" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Denna metod kräver skicka." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Tidszon" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du skickade inte oss den profilen" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Du har inte valt tidszon" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgid "%s groups" msgstr "" -"För att prenumerera så kan du [logga in](%%action.login%%) eller [registrera]" -"(%%action.register%%) ett nytt konto. Om du redan har ett konto på en " -"[kompatibel mikroblogg sida](%%doc.openmublog%%) fyll i din profils URL " -"nedan." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Två användarid eller namn måste läggas till." -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL till din hemsida, blog eller profil på en annan sida." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Sök personer på denna sida" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL till din profil på en annan kompatibel mikroblogg" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s / Favoriter från %s" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Oväntat utskick av formuläret." +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Du skickade inte oss den profilen" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Oväntad rensning av lösenord." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Denna metod kräver antingen skicka eller tabort." -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Okänd funktion" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Du kan inte tabort nån annan användares status." -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Okänd version av OMB protokollet." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Användarbilden uppdaterad." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Om inget annat anges, innehåll på denna sida skyddas utav copyright ifrån " -"användarna och tillgängliga under" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Ingen status med det ID hittades." -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Adresstypen känns inte igen %s" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "För långt. Maximalt 140 tecken" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Lämnar pren." +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Hittades inte" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "OMB versionen stöds inte" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." msgstr "Bildfilens format stödjs inte." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Uppdateringar via SMS" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "%s / Favoriter från %s" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Uppdateringar via instant messenger (IM)" +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s uppdaterade favoriter av %s / %s." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Uppdateringar från %1$s och vänner på %2$s!" +msgid "%s timeline" +msgstr "%s tidslinje" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 #: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Ladda upp" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Ladda upp en ny \"avatar\" (användarbild) här. Du kan inte göra ändringar i " -"bilden efter uppladdning, försök att se till att den är så fykantig som " -"möjligt. Den måste följa licensvillkoren, använd en bild som du äger och som " -"du vill dela med dig utav." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Ladda upp en ny profilbild" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Använd detta formulär för att bjuda in dina vänner och kollegor till denna " -"sida." - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Används endast för uppdateringar, annonsering och återställning av lösenord" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Användaren som avlyssnas existerar inte." - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Användaren har ingen profil." - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Användarens smeknamn" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Användare hittades inte." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "Vilken tidszon befinner du dig normalt?" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Uppdateringar med svar till %2$s" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 +#: actions/apitimelinementions.php:126 #, php-format -msgid "What's up, %s?" -msgstr "Vad är på gång, %s?" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Var du håller till, såsom \"Stad, Län, Land\"" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s uppdateringar med svar till uppdatering från %2$s / %3$s." -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "Wrong image type for '%s'" -msgstr "Fel filtyp för bild '%s'" +msgid "%s public timeline" +msgstr "%s publika tidslinje" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "Wrong size image at '%s'" -msgstr "Fel bildstorlek för '%s'" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Ja" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Du handhar redan denna OpenID!" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " -"ångra dig." +msgid "%s updates from everyone!" +msgstr "%s uppdateringar ifrån allihop!" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Du är redan inloggad!" +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "Inlägg taggade med %s" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Du prenumererar redan på dessa användare:" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Du är inte vän med den användaren." +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "Hittades inte" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Du kan ändra ditt lösenord här. Välj ett bra!" +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Inget sådant dokument." -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Du kan skapa ett nytt konto och börja skriva inlägg." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Inget användarnamn" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Du kan ta emot SMS meddelande via email från %%site.name%%." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Ingen storlek" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Du kan ta bort en OpenID ifrån ditt konto genom att klicka på knappen " -"\"Remove\"" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Felaktig storlek" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Du kan skicka och ta emot inlägg genom Jabber/GTalk [instant messages](%%doc." -"im%%). Konfigurera din adress och inställningar nedan. " +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Användarbild" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Du kan uppdatera din personliga profil här så personer får veta mer om dig." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kan uppdatera din personliga profil här" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Du kan använda lokala prenumerationer!" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Användare utan matchande profil" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Du kan inte registrera dig om du inte godkänner licensvillkor." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Twitter inställningar" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Du skickade inte oss den profilen" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -"Du har en ny adress %1$s.\n" -"\n" -"Skicka email till %2$s för att göra ett nytt inlägg.\n" -"\n" -"Mer information får du på %3$s.\n" -"\n" -"Mvh,\n" -"%4$s" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Du kan inte tabort nån annan användares status." +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#, fuzzy +msgid "Delete" +msgstr "Ta bort" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Ladda upp" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -"du kommer bli meddelad när någon du bjudit in accepterar inbjudan och " -"registrerar sig. Tack för att du hjälper oss växa!" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Du är identifierad. Skriv ett nytt lösenord nedan." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Det var något problem med din session. Försök igen, tack." -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "Din OpenID URL" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Oväntat utskick av formuläret." -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Ditt användarnamn på denna server eller registrerad epost adress." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -"[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " -"Ställ in ditt OpenID konto härifrån." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "ett par sekunder sedan" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Användarbilden uppdaterad." -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "för %d dagar sedan" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Uppdatering av profilbild misslyckades." -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "för %d timmar sedan" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Användarbilden uppdaterad." -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "för %d minuter sedan" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "Inget användarnamn" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "för %d månader sedan" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Ingen sådan användare" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "för en dag sedan" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Användaren har ingen profil." -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "för nån minut sedan" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s med vänner" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "för en månad sedan" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "för ett år sedan" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Ingen sådan användare" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "för en timma sedan" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "Tabort" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "svar till..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "svar" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "Ingen sådan användare" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "samma som lösenordet ovan" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Inte inloggad." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "okänd fil typ" +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +#, fuzzy +msgid "No profile specified." +msgstr "Ingen mottagare tillagd." -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "Efter" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "Det var något problem med din session. Försök igen, tack." +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +#, fuzzy +msgid "No profile with that ID." +msgstr "Ingen status hittad med det ID" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Det inlägget är ingen favorit!" +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "Ingen sådan användare" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Kunde inte tabort favoriten." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Favorisera" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Nej" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Skicka mig ett email när någon lägger till mitt inlägg som favorit." +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Skicka mig ett email när någon sänder ett privat meddelande." +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Ja" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Detta inlägg är redan en favorit!" +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ingen sådan användare" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Kunde inte skapa favorit." +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "Du prenumererar redan på dessa användare:" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Avfavorisera" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "%s favoriter" +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Feed över %s favoriter" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Ingen bekräftelsekod." -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Inbox för %s - sida %d" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Bekräftelsekoden kunde inte hittas." + +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Den bekräftelsekoden är inte för dig!" -#: actions/inbox.php:30 actions/inbox.php:62 +#: actions/confirmaddress.php:90 #, php-format -msgid "Inbox for %s" -msgstr "Inbox för %s" +msgid "Unrecognized address type %s" +msgstr "Adresstypen känns inte igen %s" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "Detta är din inbox som innehåller dina privata meddelanden." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Den adressen har redan blivit bekräftad en gång." -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s har bjudit in dig till %2$s(%3$s).\n" -"\n" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Kunde inte uppdatera användare." -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Logga in automatiskt;" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Kunde inte radera epost bekräftelsen." -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "För säkerhets skull, skriv in dina" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Bekräfta adress" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Logga in med ditt användarnamn och lösenord." +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Det är för långt. Max är 140 tecken. " +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bekräftelsekod" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Ingen mottagare tillagd." +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Inlägg" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Du kan inte skicka meddelande till den användaren." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Inget sådant inlägg." -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Kan inte ta bort detta inlägg." + +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Skicka inte meddelande till dig själv, viska lite tyst istället." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " +"ångra dig." -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Ingen sådan användare" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Tabort inlägg" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Nytt meddelande" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Är du säker på att du vill tabort detta inlägg?" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Inlägg utan matchande profil" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan inte ta bort detta inlägg." -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) låter dig logga in på många sidor" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy +msgid "Delete this notice" +msgstr "Ta bort inlägg" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Om du vill lägga till en OpenID till ditt konto," +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Det var något problem med din session. Försök igen, tack." -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Att tabort ditt enda OpenID skulle göra det omöjligt att logga in!" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Det inlägget är ingen favorit!" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Du kan tabort ett OpenID ifrån ditt konto" +#: actions/disfavor.php:94 +#, fuzzy +msgid "Add to favorites" +msgstr "Feed för %s favoriter" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Outbox för %s - sida %d" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Inget sådant dokument." -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/editgroup.php:56 #, php-format -msgid "Outbox for %s" -msgstr "Outbox för %s" +msgid "Edit %s group" +msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "Detta är din outbox som innehåller meddelanden som du skickat." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +#, fuzzy +msgid "You must be logged in to create a group." +msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#, fuzzy +msgid "You must be an admin to edit the group" +msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Du kan uppdatera din personliga profil här" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Användare utan matchande profil" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Denna bekräftelsekod är för gammal." +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Kunde inte uppdatera användare." -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Om du har glömt eller tappat bort din" +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "Inställningar sparade." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Du är identifierad. Skriv in" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Email inställningar" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Ditt smeknamn på denna server," +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Ställ in hur du tar emot email ifrån %%site.name%%" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Instruktioner för att återfå ditt lösenord" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adress" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Nya lösenordet är sparat." +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Nuvarande bekräftade emailadress." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Lösenordet måste vara minst 6 tecken." +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Ta bort" -#: actions/register.php:216 -#, php-format +#: actions/emailsettings.php:113 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Du kommer inom kort få ett email med" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "För att prenumerera så kan du [login](%%action.login%%)," - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Feed för %s favoriter" +"Väntar bekräftelse på denna adress. Kontrollera din inbox (och spamlådan!) " +"efter meddelande om vidare instruktioner." -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Kunde inte ta emot favoritinläggen." +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Avbryt" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Inget sådant meddelande." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Emailadress" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Emailadress såsom \"användare@example.org\"" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Meddelande till %1$s på %2$s" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Lägg till" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Meddelande från %1$s på %2$s" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Inkommande email" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Skicka ett meddelande" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Skicka email till denna adress för att posta ett nya inlägg." -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Mobiloperatören för din telefon." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Skapa en ny emailadress för att posta till, avaktiverar den gamla" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Direktmeddelande till %s" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Ny" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "Alla direktmeddelanden skickade till %s" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Inställningar" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Direktmeddelanden du skickat" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Skicka meddelande till mig via email vid nya prenumerationer." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Alla direktmeddelanden skickade ifrån %s" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Skicka mig ett email när någon lägger till mitt inlägg som favorit." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Ingen meddelande text!" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Skicka mig ett email när någon sänder ett privat meddelande." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Mottagaren kunde inte hittas." +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Skicka mig ett email när någon sänder ett privat meddelande." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -"Kan inte skicka direktmeddelanden till användare som inte är dina vänner." - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Favoriter från %s" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s uppdaterade favoriter av %s / %s." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s la till ditt inlägg som favorit" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Jag vill posta inlägg via min email." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit.\n" -"\n" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publicera ett MicroID för min emailadress." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " -"Twitter," +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Spara" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Twitter inställningar" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Inställningar sparade." -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Twitter konto" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Verifierat Twitter konto." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Twitter användarnamn" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Inga mellanslag tack." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Twitter lösenord" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Skicka automatiskt mina inlägg till Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Skicka lokala \"@\" svar till Twitter." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Prenumerera på mina Twitter vänner här." +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Ingen emailadress." -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Användarnamn får bara innehålla nummer, stora och små bokstäver, och " -"underscore(_). 15 tecken max." +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Kan inte normalisera den emailadressen" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Kunde inte verifiera din Twitter!" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Ingen giltig emailadress" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Det är redan din emailadress." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Kunde inte spara dina Twitter inställningar!" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Den emailadressen tillhör redan en annan användare." -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Twitter inställningar sparade." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Det är inte ditt Twitter konto." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Kunde inte tabort Twitter användaren." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Twitterkontot borttaget." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Kunde inte spara Twitter inställningar." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Twitterinställningar sparade." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Vänligen kontrollera dessa uppgifter för att försäkra dig om " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Abonnemanget har godkänts, men ingen " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Abonnemanget har nekats, men ingen " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Kunde inte lägga till bekräftelsekoden." -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/emailsettings.php:358 +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 "" +"En bekräftelsekod har skickats ut till email adressen du fyllde i. " +"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " +"använder den." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Ingen väntande bekräftelse att avbryta." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Det är fel IM adress." -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Verifikation avbruten" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Det är inte din emailadress." -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Adressen är borttagen." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Ingen inkommande emailadress." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Fullt namn: %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Kunde inte uppdatera användarens inställningar." -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Plats: %s" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Inkommande emailadress borttagen." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Hemsida: %s" +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "Ny inkommande emailadress inlagd." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Om: %s" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "Inget sådant inlägg." -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Inget sådant inlägg." -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" +#: actions/favorited.php:79 +#, fuzzy +msgid "The most popular notices on the site right now." +msgstr "Visar dom populäraste taggarna ifrån den senaste veckan." -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +#: 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 "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/favorited.php:156 #, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 #, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +msgid "%s's favorite notices" msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Detta inlägg är redan en favorit!" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" +#: actions/favor.php:92 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor favorite" +msgstr "Avfavorisera" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nytt inlägg" -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nytt inlägg" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Väntade mig inte detta svar!" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Användaren som avlyssnas existerar inte." -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Du kan använda lokala prenumerationer!" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Inte tillstånd ännu." -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Kunde inte konvertera förfrågan tokens till Access tokens." -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Okänd version av OMB protokollet." -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Fel uppstog under uppdatering av fjärranvändare" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Inget sådant meddelande." -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Inget sådant inlägg." -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Inget sådant inlägg." -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Ingen mottagare tillagd." -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s med vänner" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Du kan ladda upp din profilbild." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Användaren har ingen profil." -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 +#: actions/groupblock.php:100 #, fuzzy -msgid "Avatar settings" -msgstr "Twitter inställningar" +msgid "User is not a member of group." +msgstr "Du skickade inte oss den profilen" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Ingen sådan användare" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 +#: actions/groupdesignsettings.php:68 #, fuzzy -msgid "There was a problem with your session token. " -msgstr "Det var något problem med din session. Försök igen, tack." +msgid "You must be logged in to edit a group." +msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -#, fuzzy -msgid "Lost our file." -msgstr "Inget sådant inlägg." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -#, fuzzy -msgid "Unknown file type" -msgstr "okänd fil typ" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -#, fuzzy -msgid "No profile specified." -msgstr "Ingen mottagare tillagd." - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 #, fuzzy -msgid "No profile with that ID." -msgstr "Ingen status hittad med det ID" +msgid "Couldn't update your design." +msgstr "Kunde inte uppdatera användare." -#: actions/block.php:111 actions/block.php:134 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy -msgid "Block user" -msgstr "Ingen sådan användare" +msgid "Unable to save your design settings!" +msgstr "Kunde inte spara dina Twitter inställningar!" -#: actions/block.php:129 +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 #, fuzzy -msgid "Are you sure you want to block this user? " -msgstr "Är du säker på att du vill tabort detta inlägg?" +msgid "Design preferences saved." +msgstr "Inställningar sparade." -#: actions/block.php:162 actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "Du prenumererar redan på dessa användare:" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/confirmaddress.php:159 -#, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "Adressen är borttagen." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" -#: actions/deletenotice.php:73 +#: actions/grouplogo.php:396 #, fuzzy -msgid "You are about to permanently delete a notice. " -msgstr "" -"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " -"ångra dig." +msgid "Logo updated." +msgstr "Användarbilden uppdaterad." -#: actions/disfavor.php:94 +#: actions/grouplogo.php:398 #, fuzzy -msgid "Add to favorites" -msgstr "Feed för %s favoriter" +msgid "Failed updating logo." +msgstr "Uppdatering av profilbild misslyckades." + +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/groupmembers.php:96 #, php-format -msgid "Edit %s group" +msgid "%s group members, page %d" msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -#, fuzzy -msgid "You must be logged in to create a group." -msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "Inget användarnamn" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "" -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 #, fuzzy -msgid "No such group" +msgid "Block this user" msgstr "Ingen sådan användare" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 +#: actions/groupmembers.php:441 #, fuzzy -msgid "You must be an admin to edit the group" +msgid "Make user an admin of the group" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/groupmembers.php:473 +msgid "Make Admin" msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Biografin är för lång (max 140 tecken)" - -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "Kunde inte uppdatera användare." -#: actions/editgroup.php:226 actions/editgroup.php:269 -#, fuzzy -msgid "Options saved." -msgstr "Inställningar sparade." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/groupsearch.php:52 #, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Väntar bekräftelse på detta telefonnummer. " +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 "" +"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " +"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " -#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/groupsearch.php:58 #, fuzzy -msgid "Make a new email address for posting to; " -msgstr "Ny emailadress för att skicka till %s" +msgid "Group search" +msgstr "Sökning personer" -#: actions/emailsettings.php:157 +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 #, fuzzy -msgid "Send me email when someone " -msgstr "Skicka mig ett email när någon sänder ett privat meddelande." +msgid "No results." +msgstr "Inget resultat" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "Den emailadressen tillhör redan en annan användare." - -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -"En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " -"godkänna att %s får skicka meddelanden till dig." -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: actions/facebookhome.php:196 +#: actions/groups.php:64 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "Groups, page %d" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/groups.php:90 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 #, fuzzy -msgid "No notice content!" -msgstr "Inget innehåll!" +msgid "Create a new group" +msgstr "Skapa ett nytt konto" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 +#: actions/groupunblock.php:95 #, fuzzy -msgid "After" -msgstr "« Nyare" +msgid "User is not blocked from group." +msgstr "Användaren har ingen profil." -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 +#: actions/groupunblock.php:128 actions/unblock.php:108 #, fuzzy -msgid "Before" -msgstr "Tidigare »" +msgid "Error removing the block." +msgstr "Fel uppstog när användaren skulle sparas." + +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM inställningar" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/imsettings.php:70 #, php-format -msgid "Thanks for inviting your friends to use %s" +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." msgstr "" +"Du kan skicka och ta emot inlägg genom Jabber/GTalk [instant messages](%%doc." +"im%%). Konfigurera din adress och inställningar nedan. " -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +#: actions/imsettings.php:89 #, fuzzy -msgid "Invitations have been sent to the following users:" -msgstr "Inbjudan(ar) är skickade till följande personer:" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, fuzzy, php-format -msgid "You have been invited to %s" -msgstr "Du är identifierad. Skriv in" +msgid "IM is not available." +msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Flöden för $s vänner" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Aktuell bekräftad Jabber/Gtalk-adress." -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/imsettings.php:114 #, php-format -msgid "Friends already using %s:" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"Väntar bekräftelse på denna adress. Kontrollera ditt Jabber/GTalk konto för " +"vidare instruktioner. (La du till %s i din vännerlista?)" + +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM adress" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/imsettings.php:126 #, php-format -msgid "Send invitations" +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" +"Jabber eller GTalk adress liknande \"användare@exempel.se\". Först se till " +"att lägga till %s i din vännerlista i IM klienten eller GTalk." -#: actions/facebookremove.php:56 -#, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "Kunde inte tabort Twitter användaren." - -#: actions/facebooksettings.php:65 -#, fuzzy -msgid "There was a problem saving your sync preferences!" -msgstr "Det var något problem med din session. Försök igen, tack." - -#: actions/facebooksettings.php:67 -#, fuzzy -msgid "Sync preferences saved." -msgstr "Inställningar sparade." - -#: actions/facebooksettings.php:90 -#, fuzzy -msgid "Automatically update my Facebook status with my notices." -msgstr "Skicka automatiskt mina inlägg till Twitter." - -#: actions/facebooksettings.php:97 -#, fuzzy -msgid "Send \"@\" replies to Facebook." -msgstr "Skicka lokala \"@\" svar till Twitter." +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Skicka inlägg till mig via Jabber/GTalk." -#: actions/facebooksettings.php:106 -#, fuzzy -msgid "Prefix" -msgstr "Profil" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Posta ett inlägg när min Jabber/GTalk status ändras." -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" +"Skicka svar till mig via Jabber/GTalk från personer som inte jag " +"prenumererar på." -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Publicera ett MicroID för min Jabber/GTalk adress." -#: actions/facebooksettings.php:147 -#, fuzzy -msgid "Sync preferences" -msgstr "Inställningar" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Inget Jabber ID." -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -#, fuzzy -msgid "Disfavor favorite" -msgstr "Avfavorisera" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Kan inte normalisera det Jabber ID" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -#, fuzzy -msgid "Popular notices" -msgstr "Inget sådant inlägg." +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Det är inget giltigt Jabber ID" -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "Inget sådant inlägg." +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Det är redan din Jabber ID." -#: actions/favorited.php:79 -#, fuzzy -msgid "The most popular notices on the site right now." -msgstr "Visar dom populäraste taggarna ifrån den senaste veckan." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID används redan utav en annan användare." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" +"En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " +"godkänna att %s får skicka meddelanden till dig." -#: actions/featured.php:71 +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Det är inte ditt Jabber ID." + +#: actions/inbox.php:59 #, php-format -msgid "Featured users, page %d" -msgstr "" +msgid "Inbox for %s - page %d" +msgstr "Inbox för %s - sida %d" -#: actions/featured.php:99 +#: actions/inbox.php:62 #, php-format -msgid "A selection of some of the great users on %s" -msgstr "" +msgid "Inbox for %s" +msgstr "Inbox för %s" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "Detta är din inbox som innehåller dina privata meddelanden." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Ogiltig emailadress: %s" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "Användarbilden uppdaterad." +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Inbjudan(ar) skickad" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "Uppdatering av profilbild misslyckades." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Bjud in nya användare" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Du prenumererar redan på dessa användare:" -#: actions/groupmembers.php:96 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "%s group members, page %d" -msgstr "" +msgid "%s (%s)" +msgstr "%s(%s)" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "" +"Dom personerna är redan registrerade användare och du blev nu automatiskt " +"prenumerant till dom:" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Inbjudan(ar) är skickade till följande personer:" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" +"du kommer bli meddelad när någon du bjudit in accepterar inbjudan och " +"registrerar sig. Tack för att du hjälper oss växa!" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" +"Använd detta formulär för att bjuda in dina vänner och kollegor till denna " +"sida." -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Skapa ett nytt konto" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Emailadresser" -#: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Adresser till vänner att bjuda in (en rad per adress)" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "Sökning personer" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Personligt meddelande" -#: actions/imsettings.php:70 -#, fuzzy -msgid "You can send and receive notices through " -msgstr "Du kan inte skicka meddelande till den användaren." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Om du vill, skriv ett personligt meddelande med inbjudan." -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Skicka" -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Skicka inlägg till mig via Jabber/GTalk." +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s har bjudit in dig till %2$s" -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Ingen bekräftelsekod." +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s har bjudit in dig till %2$s (%3$s).\n" +"\n" +"%2$s är en mikroblogg service som låter dig via sidan hålla direktkontakt " +"med människor du känner eller intresserar dig.\n" +"\n" +"Du kan även dela med dig utav nyheter om dig själv, dina tankar, eller ditt " +"liv online som känner igen dig. Det är också perfekt för att möta nya " +"personer som delar ditt intresse.\n" +"\n" +"%1$s sa:\n" +"\n" +"%4$s\n" +"\n" +"Du kan se %1$s's profilsida på %2$s här:\n" +"\n" +"%5$s\n" +"\n" +"Om du vill prova på denna service, klicka på länken nedan för att acceptera " +"denna inbjudan.\n" +"\n" +"%6$s\n" +"\n" +"Om inte, då kan du ignorera detta meddelande. Tack för att du tog dig\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du prenumererar redan på dessa användare:" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s / Favoriter från %s" #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "Inget sådant meddelande." - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Du skickade inte oss den profilen" -#: actions/leavegroup.php:100 -#, fuzzy -msgid "You may not leave a group while you are its administrator." -msgstr "Du kan inte tabort nån annan användares status." +#: actions/leavegroup.php:119 lib/command.php:278 +#, fuzzy +msgid "Could not find membership record." +msgstr "Kunde inte uppdatera användarens inställningar." + +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Redan inloggad." + +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Ogiltig innehåll i inlägget " + +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Felaktigt användarnamn eller lösenord." + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Fel uppstog i användarens inställning" + +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Logga in" + +#: actions/login.php:243 +msgid "Login to site" +msgstr "" + +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Smeknamn" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Lösenord" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Kom ihåg mig" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Logga in automatiskt i framtiden; Ej för publika datorer!" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -#, fuzzy -msgid "Could not find membership record." -msgstr "Kunde inte uppdatera användarens inställningar." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Glömt bort lösenord?" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " +"du ändrar dina inställningar." + +#: actions/login.php:286 #, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " +"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" +"action.openidlogin%%)." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 #, php-format -msgid "%s left group %s" +msgid "%s is already an admin for group \"%s\"." msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" msgstr "" #: actions/microsummary.php:69 @@ -4626,44 +1753,97 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 +#: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "Kunde inte skapa favorit." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Nytt meddelande" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "Kunde inte skapa prenumeration." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Du kan inte skicka meddelande till den användaren." -#: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy -msgid "That's too long. " -msgstr "Filen är för stor." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Inget innehåll!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Ingen mottagare tillagd." -#: actions/newmessage.php:134 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Skicka inte meddelande till dig själv, viska lite tyst istället." + +#: actions/newmessage.php:181 #, fuzzy -msgid "Don't send a message to yourself; " -msgstr "Du kan inte skicka meddelande till den användaren." +msgid "Message sent" +msgstr "Nytt meddelande" + +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nytt inlägg" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 +#: actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Inlägg" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Sök efter innehåll i inlägg på %%site.name%%. Skilj söktermerna åt med " +"mellanslag; dom måste vara minst tre tecken långa." + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Text sökning" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Sök i strömmen efter \"%s\"" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Uppdateringar från %1$s på %2$s!" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" + #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set his email yet." @@ -4677,15 +1857,36 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy -msgid "OpenID login" -msgstr "OpenID inloggning" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Inlägget har ingen profil" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s's status den %2$s" -#: actions/openidsettings.php:128 +#: actions/oembed.php:157 #, fuzzy -msgid "Removing your only OpenID " -msgstr "Ta bort OpenID" +msgid "content type " +msgstr "Anslut" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Ingen support för det formatet." + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Personer sökning" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Inlägg sökning" #: actions/othersettings.php:60 #, fuzzy @@ -4696,2441 +1897,2400 @@ msgstr "Twitter inställningar" msgid "Manage various other options." msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: actions/othersettings.php:112 -#, fuzzy -msgid "Service" -msgstr "Sök" - -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 +#: actions/othersettings.php:122 #, fuzzy -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Språket är för långt(max 50 tecken)." +msgid "View profile designs" +msgstr "Profil inställningar" -#: actions/passwordsettings.php:69 -#, fuzzy -msgid "Change your password." -msgstr "Ändra ditt lösenord" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#: actions/othersettings.php:153 #, fuzzy -msgid "Password change" -msgstr "Lösenord är sparat." - -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "Ingen giltig emailadress" +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Språket är för långt(max 50 tecken)." -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/outbox.php:58 #, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" +msgid "Outbox for %s - page %d" +msgstr "Outbox för %s - sida %d" -#: actions/peopletag.php:91 +#: actions/outbox.php:61 #, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy -msgid "Profile information" -msgstr "Okänd profil" - -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " -msgstr "" -"Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke " -"mänsklig användare) " - -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Ogiltig hemsideadress '%s'" +msgid "Outbox for %s" +msgstr "Outbox för %s" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "Kunde inte spara profil." +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "Detta är din outbox som innehåller meddelanden som du skickat." -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Publik tidslinje" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Byt lösenord" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 +#: actions/passwordsettings.php:69 #, fuzzy -msgid "Could not retrieve public stream." -msgstr "Kunde inte ta emot favoritinläggen." - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" +msgid "Change your password." +msgstr "Ändra ditt lösenord" -#: actions/publictagcloud.php:57 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy -msgid "Public tag cloud" -msgstr "Publik ström" - -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" +msgid "Password change" +msgstr "Lösenord är sparat." -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Gammalt lösenord" -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Du kan inte registrera dig om du inte godkänner licensvillkor." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Nytt lösenord" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "Minst 6 tecken" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Bekräfta" -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "" -"Används endast för uppdateringar, annonsering och återställning av lösenord" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "samma som lösenordet ovan" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "URL till din hemsida, blog eller profil på en annan sida." +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Ändra" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "Berätta om dig själv och dina intressen inom 140 tecken" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Lösenordet måste vara minst 6 tecken." -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "Var du håller till, såsom \"Stad, Län, Land\"" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Lösenorden matchar inte." -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " -msgstr "" -"förutom det här, som är privat: lösenord, epostadress, IM-adress, " -"telefonnummer." +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Felaktigt, gammalt lösenord" -#: actions/register.php:471 -#, fuzzy, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" -"Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Fel uppstog när användare skulle sparas." -#: actions/register.php:495 -#, fuzzy -msgid "(You should receive a message by email " -msgstr "(Du kommer inom kort få ett email med" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Kan inte spara det nya lösenordet." -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Lösenord är sparat." + +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " +"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "Svarat på %s" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Sökning personer" -#: actions/showfavorites.php:79 +#: actions/peopletag.php:70 #, fuzzy, php-format -msgid "%s favorite notices, page %d" -msgstr "%s favoriter" +msgid "Not a valid people tag: %s" +msgstr "Ingen giltig emailadress" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: actions/peopletag.php:144 #, php-format -msgid "%s group" +msgid "Users self-tagged with %s - page %d" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Ogiltig innehåll i inlägget " + +#: actions/postnotice.php:90 #, php-format -msgid "%s group, page %d" +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy -msgid "Group profile" -msgstr "Inget sådant inlägg." +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Profil inställningar" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." msgstr "" +"Du kan uppdatera din personliga profil här så personer får veta mer om dig." -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 +#: actions/profilesettings.php:99 #, fuzzy -msgid "Note" -msgstr "Inlägg" - -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" +msgid "Profile information" +msgstr "Okänd profil" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "Inlägg flöde för %s" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -#, fuzzy -msgid "Members" -msgstr "Medlem sedan" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Ditt fulla namn." -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Hemsida" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL till din hemsida, blog eller profil på en annan sida." -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" -#: actions/showmessage.php:98 +#: actions/profilesettings.php:125 actions/register.php:463 #, fuzzy -msgid "Only the sender and recipient " -msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." +msgid "Describe yourself and your interests" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, fuzzy, php-format -msgid "%s, page %d" -msgstr "Inbox för %s - sida %d" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Biografi" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Profil" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Plats" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "Användaren har ingen profil." +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Var du håller till, såsom \"Stad, Län, Land\"" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Taggar" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -#, fuzzy -msgid "User actions" -msgstr "Okänd funktion" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -#, fuzzy -msgid "Send a direct message to this user" -msgstr "Du kan inte skicka meddelande till den användaren." +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Språk" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -#, fuzzy -msgid "Message" -msgstr "Nytt meddelande" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Språkval" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "Prenumerant" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Tidszon" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "Vilken tidszon befinner du dig normalt?" -#: actions/showstream.php:542 -#, php-format +#: actions/profilesettings.php:160 msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" +"Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke " +"mänsklig användare) " -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" - -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Skicka inlägg till mig via Jabber/GTalk." +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Väntar bekräftelse på detta telefonnummer. " +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Du har inte valt tidszon" -#: actions/smssettings.php:453 actions/smssettings.php:465 -#, fuzzy -msgid "Mobile carrier" -msgstr "Välj en operatör" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Språket är för långt(max 50 tecken)." -#: actions/subedit.php:70 -#, fuzzy -msgid "You are not subscribed to that profile." -msgstr "Du skickade inte oss den profilen" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Ogiltig hemsideadress '%s'" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "Kunde inte skapa prenumeration." +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "Ingen sådan användare" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Kunde inte spara profil." -#: actions/subscribe.php:69 +#: actions/profilesettings.php:336 #, fuzzy -msgid "Subscribed" -msgstr "Prenumerera" +msgid "Couldn't save tags." +msgstr "Kunde inte spara profil." -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "Prenumerant" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Inställningar sparade." -#: actions/subscribers.php:52 +#: actions/public.php:83 #, php-format -msgid "%s subscribers, page %d" +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/subscribers.php:63 +#: actions/public.php:92 #, fuzzy -msgid "These are the people who listen to " -msgstr "Dessa personer är dom som lyssnar på %s inlägg." +msgid "Could not retrieve public stream." +msgstr "Kunde inte ta emot favoritinläggen." -#: actions/subscribers.php:67 +#: actions/public.php:129 #, fuzzy, php-format -msgid "These are the people who " -msgstr "Dessa personer är dom som lyssnar på %s inlägg." +msgid "Public timeline, page %d" +msgstr "Publik tidslinje" -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Alla prenumerationer" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Publik tidslinje" -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "Alla prenumerationer" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Publik ström" -#: actions/subscriptions.php:65 +#: actions/public.php:155 #, fuzzy -msgid "These are the people whose notices " -msgstr "Detta är personer och inlägg som %s lyssnar på." +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Publik ström" -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "Dessa personer är dom som lyssnar på %s inlägg." +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Publik ström" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "Inget Jabber ID." +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Inlägg taggade med %s" +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/tag.php:66 actions/tag.php:73 +#: actions/public.php:238 #, php-format -msgid "Messages tagged \"%s\", most recent first" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/tagother.php:33 +#: actions/publictagcloud.php:57 #, fuzzy -msgid "Not logged in" -msgstr "Inte inloggad." +msgid "Public tag cloud" +msgstr "Publik ström" -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "Inget sådant dokument." +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" -#: actions/tagother.php:65 -#, fuzzy, php-format -msgid "Tag %s" -msgstr "Taggar" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/tagother.php:141 -#, fuzzy -msgid "Tag user" -msgstr "Taggar" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 +#: actions/publictagcloud.php:75 +#, php-format msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/tagother.php:164 -#, fuzzy -msgid "There was a problem with your session token." -msgstr "Det var något problem med din session. Försök igen, tack." - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy -msgid "Could not save tags." -msgstr "Kunde inte spara informationen om användarbild" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Du är redan inloggad!" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Ingen sådan återställningskod. " -#: actions/tagrss.php:35 -#, fuzzy -msgid "No such tag." -msgstr "Inget sådant meddelande." +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Det är ingen kod för återställning." -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "Inlägg taggade med %s" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Kod för återställning av okänd användare." -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Fel uppstog med bekräftelsekoden." + +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Denna bekräftelsekod är för gammal. Du får starta om på nytt igen." + +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Kunde inte uppdatera användaren med bekräftad emailadress." + +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "Hittades inte" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/twittersettings.php:71 -#, fuzzy -msgid "Add your Twitter account to automatically send " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " -"Twitter," -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -#, fuzzy -msgid "Twitter user name" -msgstr "Twitter användarnamn" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Ditt användarnamn på denna server eller registrerad epost adress." -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy -msgid "Twitter password" -msgstr "Twitter lösenord" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Återställ" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -#, fuzzy -msgid "Twitter Friends" -msgstr "Twitter inställningar" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Återställ lösenord" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Återställ lösenord" -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Förfrågan om återställning av lösenord" -#: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy -msgid "Error removing the block." -msgstr "Fel uppstog när användaren skulle sparas." +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Okänd funktion" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "Ingen profil URL lämnades ut av servern." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "Minst 6 tecken och glöm inte bort det!" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -#, fuzzy -msgid "No profile with that id." -msgstr "Ingen status hittad med det ID" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Samma som lösenordet ovan" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -#, fuzzy -msgid "Unsubscribed" -msgstr "Lämnar pren." +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Återställ" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Skriv in ett smeknamn eller en epostadress." -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Ingen användare med den emailadressen eller användarnamn." -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -#, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "Det var ett problem när inlägget sparades." +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Ingen registrerad epost adress för den användaren." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Fel uppstog när adressen skulle bekräftas." + +#: actions/recoverpassword.php:325 msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" +"Instruktioner om hur du återställer ditt lösenord har sänts till din e-" +"postadress " -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Oväntad rensning av lösenord." -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "Uppdatering av profilbild misslyckades." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Lösenordet måste vara 6 tecken eller fler." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Lösenord och bekräftelse matchar inte." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Nya lösenordet har blivit sparat. Du är nu även inloggad." + +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format -msgid "%s - %s" -msgstr "%s(%s)" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Fel uppstog med bekräftelsekoden." -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Registreringen är genomförd" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Registrera" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Registrering är inte möjlig." -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Du kan inte registrera dig om du inte godkänner licensvillkor." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Account" -msgstr "Om" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Det är ingen giltig epost adress." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Change your email, avatar, password, profile" -msgstr "Ändra ditt lösenord" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Epostadressen finns redan." -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Felaktigt användarnamn eller lösenord." -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" +"1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas " +"i." -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Skapa ett nytt konto" - -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "Det existerar inget sådant OpenID" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 eller fler tecken. Måste fyllas i." -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Hjälp" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Samma som lösenordet ovan. Måste fyllas i." -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "Nytt inlägg" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Epost" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" msgstr "" +"Används endast för uppdateringar, annonsering och återställning av lösenord" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Nytt inlägg" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Långt namn, förslagsvis ditt \"riktiga\" namn" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "Prenumerationer" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Min text och filer finns tillgängliga under" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" +"förutom det här, som är privat: lösenord, epostadress, IM-adress, " +"telefonnummer." -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" +"Grattis, %s! Välkommen till %%%%site.name%%%%. Härifrån, kanske du vill...\n" +"\n" +"* Gå till [din profil](%s) och göra ditt första inlägg.\n" +"* Lägg till en [Jabber/GTalk adress](%%%%action.imsettings%%%%) så du kan " +"skicka inlägg med en IM klient.\n" +"* [Sök efter personer](%%%%action.peoplesearch%%%%) som du kanske känner " +"eller delar dina intressen. \n" +"* Uppdatera din [profil inställning](%%%%action.profilesettings%%%%) för att " +"berätta lite mer om dig själv för andra här. \n" +"* Läs igenom [online dok](%%%%doc.help%%%%) efter funktioner som du kanske " +"missat. \n" +"\n" +"Tack för att du registrerade dig och vi hoppas du kommer trivas med denna " +"service." -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "Ingen sådan användare" - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" +"(Du kommer få ett meddelande med email inom kort med instruktioner hur du " +"bekräftar din emailadress)" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -#, fuzzy -msgid "Disfavor this notice" -msgstr "%s favoriter" - -#: lib/facebookaction.php:268 +#: actions/remotesubscribe.php:98 #, php-format -msgid "To use the %s Facebook Application you need to login " +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" +"För att prenumerera så kan du [logga in](%%action.login%%) eller [registrera]" +"(%%action.register%%) ett nytt konto. Om du redan har ett konto på en " +"[kompatibel mikroblogg sida](%%doc.openmublog%%) fyll i din profils URL " +"nedan." -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "Skapa ett nytt konto" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "Publik" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Fjärrprenumerera" -#: lib/favorform.php:114 lib/favorform.php:140 +#: actions/remotesubscribe.php:124 #, fuzzy -msgid "Favor this notice" -msgstr "%s favoriter" +msgid "Subscribe to a remote user" +msgstr "Prenumerera på mina Twitter vänner här." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Användarens smeknamn" -#: lib/galleryaction.php:121 -#, fuzzy -msgid "Filter tags" -msgstr "Feed för taggar %s" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Smeknamnet på användaren du vill följa" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Profil URL" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -#, fuzzy -msgid "Tag" -msgstr "Taggar" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL till din profil på en annan kompatibel mikroblogg" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Prenumerera" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Nåt är fel med profil URL (Format fel)" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: actions/remotesubscribe.php:168 #, fuzzy -msgid "URL of the homepage or blog of the group or topic" -msgstr "URL till din hemsida, blog eller profil på en annan sida." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Prenumerationer" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 +#: actions/remotesubscribe.php:183 #, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Berätta om dig själv och dina intressen inom 140 tecken" +msgid "Couldn’t get a request token." +msgstr "Kunde inte få en förfrågan token." -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -#, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Var du håller till, såsom \"Stad, Län, Land\"" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Svarat på %s" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "Svarat på %s" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Inlägg flöde för %s" -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "Logga ut" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Inlägg flöde för %s" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/replies.php:198 #, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: lib/grouptagcloudsection.php:56 +#: actions/replies.php:205 #, php-format -msgid "Tags in %s group's notices" +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Meddelande till %1$s på %2$s" -#: lib/joinform.php:114 -#, fuzzy -msgid "Join" -msgstr "Logga in" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favoriter" -#: lib/leaveform.php:114 -#, fuzzy -msgid "Leave" -msgstr "Spara" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Kunde inte ta emot favoritinläggen." -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "Logga in med ditt användarnamn och lösenord." +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Flöden för $s vänner" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "Skapa ett nytt konto" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Flöden för $s vänner" + +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Flöden för $s vänner" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: actions/showfavorites.php:205 +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 "" -#: lib/mail.php:175 +#: actions/showfavorites.php:207 #, php-format msgid "" -"Hey, %s.\n" -"\n" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." - -#: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format -msgid "Location: %s\n" -msgstr "Plats: %s\n" - -#: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format -msgid "Homepage: %s\n" -msgstr "Hemsida: %s\n" - -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showfavorites.php:211 #, php-format msgid "" -"Bio: %s\n" -"\n" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: lib/mail.php:461 lib/mail.php:462 -#, fuzzy, php-format -msgid "You've been nudged by %s" -msgstr "Du är identifierad. Skriv in" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: lib/mail.php:465 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "%s group" msgstr "" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit." +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +#: actions/showgroup.php:218 #, fuzzy -msgid "From" -msgstr "från" +msgid "Group profile" +msgstr "Inget sådant inlägg." -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -#, fuzzy -msgid "Send a direct notice" -msgstr "Tabort inlägg" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 #, fuzzy -msgid "Send a notice" -msgstr "Skicka ett meddelande" +msgid "Note" +msgstr "Inlägg" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "Minst 6 tecken" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy -msgid "in reply to" -msgstr "svar till..." +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -#, fuzzy -msgid "Reply to this notice" -msgstr "Svara på detta inlägg" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Inlägg flöde för %s" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -#, fuzzy -msgid "Reply" -msgstr "svar" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Inlägg flöde för %s" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -#, fuzzy -msgid "Delete this notice" -msgstr "Ta bort inlägg" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Outbox för %s" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 #, fuzzy -msgid "Delete" -msgstr "Ta bort" +msgid "Members" +msgstr "Medlem sedan" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: lib/nudgeform.php:128 +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Statistik" + +#: actions/showgroup.php:432 #, fuzzy -msgid "Send a nudge to this user" -msgstr "Du kan inte skicka meddelande till den användaren." +msgid "Created" +msgstr "Skapa" -#: lib/personaltagcloudsection.php:56 +#: actions/showgroup.php:448 #, php-format -msgid "Tags in %s's notices" +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 "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: actions/showgroup.php:454 +#, 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 "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Publik" - -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -#, fuzzy -msgid "Recent tags" -msgstr "Tidigare taggar" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Inget sådant meddelande." -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy -msgid "Popular" -msgstr "Personer" +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "Meddelande till %1$s på %2$s" -#: lib/searchgroupnav.php:82 +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Meddelande från %1$s på %2$s" + +#: actions/shownotice.php:90 #, fuzzy -msgid "Notice" +msgid "Notice deleted." msgstr "Inlägg" -#: lib/searchgroupnav.php:85 -#, fuzzy -msgid "Find groups on this site" -msgstr "Sök personer på denna sida" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Inlägg taggade med %s" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%s, page %d" +msgstr "Inbox för %s - sida %d" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: actions/showstream.php:122 #, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "Fjärrprenumerera" +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: actions/showstream.php:129 #, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "Fjärrprenumerera" +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Inlägg flöde för %s" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: actions/showstream.php:143 #, fuzzy, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Notice feed for %s (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Outbox för %s" + +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -"Använd detta formulär för att bjuda in dina vänner och kollegor till denna " -"sida." -#: lib/subs.php:53 lib/subs.php:52 -#, fuzzy -msgid "User has blocked you." -msgstr "Användaren har ingen profil." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -#, fuzzy -msgid "Subscribe to this user" -msgstr "Prenumerera på mina Twitter vänner här." +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/tagcloudsection.php:56 -#, fuzzy -msgid "None" -msgstr "Nej" +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS Inställningar" + +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Du kan ta emot SMS meddelande via email från %%site.name%%." + +#: actions/smssettings.php:91 #, fuzzy -msgid "Unblock this user" -msgstr "Ingen sådan användare" +msgid "SMS is not available." +msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" + +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Nuvarande bekäftat SMS telefonnummer" + +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Väntar bekräftelse på detta telefonnummer. " + +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Bekräftelsekod" + +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Fyll i koden du mottog i din telefon." + +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS Telefonnummer" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" +"Skicka inlägg till mig via SMS; Jag är införstådd att min operatör kan " +"debitera mig." -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Flöden för $s vänner" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Inget telefonnummer." -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Flöden för $s vänner" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Ingen operatör vald." -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Flöden för $s vänner" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Det är redan ditt telefonnummer." + +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Det numret tillhör en annan användare." -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: actions/smssettings.php:347 #, fuzzy -msgid "You and friends" -msgstr "%s med vänner" +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 "" +"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " +"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " +"använder den." -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Du kan uppdatera din personliga profil här" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Det är fel nummer i bekräftelsen" + +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Det är inte ditt telefonnummer." -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: actions/smssettings.php:465 #, fuzzy -msgid "Avatar deleted." -msgstr "Användarbilden uppdaterad." +msgid "Mobile carrier" +msgstr "Välj en operatör" -#: actions/block.php:129 actions/block.php:136 +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Välj en operatör" + +#: actions/smssettings.php:476 +#, php-format msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +"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 "" +"Mobiloperatör för din telefon. Vet du nån operatör som kan taemot SMS över " +"email som inte finns med i listan, skicka ett email till oss och tala det " +"hit %s" + +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Ingen kod är ifylld" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#: actions/subedit.php:70 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " -"ångra dig." +msgid "You are not subscribed to that profile." +msgstr "Du skickade inte oss den profilen" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#: actions/subedit.php:83 #, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "Det var något problem med din session. Försök igen, tack." +msgid "Could not save subscription." +msgstr "Kunde inte skapa prenumeration." -#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#: actions/subscribe.php:55 #, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Skicka mig ett email när någon sänder ett privat meddelande." +msgid "Not a local user." +msgstr "Ingen sådan användare" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: actions/subscribe.php:69 +#, fuzzy +msgid "Subscribed" +msgstr "Prenumerera" + +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Prenumerant" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: actions/subscribers.php:52 #, php-format -msgid "Okay, do it!" +msgid "%s subscribers, page %d" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Dessa personer är dom som lyssnar på dina inlägg." + +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Dessa personer är dom som lyssnar på %s inlägg." + +#: actions/subscribers.php:108 msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: actions/subscribers.php:110 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 +#: actions/subscriptions.php:52 #, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Mikroblogg av %s" +msgid "%s subscriptions" +msgstr "Alla prenumerationer" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#: actions/subscriptions.php:54 #, fuzzy, php-format -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 "" -"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " -"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " +msgid "%s subscriptions, page %d" +msgstr "Alla prenumerationer" -#: actions/groups.php:90 +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Detta är personer och inlägg som du lyssnar på." + +#: actions/subscriptions.php:69 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +msgid "These are the people whose notices %s listens to." +msgstr "Detta är personer och inlägg som %s lyssnar på." -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "Sök i strömmen efter \"%s\"" - -#: actions/openidlogin.php:66 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " -"du ändrar dina inställningar." +msgid "%s is not listening to anyone." +msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: actions/subscriptions.php:194 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Publik ström" +msgid "Jabber" +msgstr "Inget Jabber ID." + +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#: actions/tagother.php:33 #, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Publik ström" +msgid "Not logged in" +msgstr "Inte inloggad." -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: actions/tagother.php:39 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Publik ström" +msgid "No id argument." +msgstr "Inget sådant dokument." -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "Taggar" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +#, fuzzy +msgid "User profile" +msgstr "Användaren har ingen profil." -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: actions/tagother.php:141 #, fuzzy +msgid "Tag user" +msgstr "Taggar" + +#: actions/tagother.php:151 msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -"förutom det här, som är privat: lösenord, epostadress, IM-adress, " -"telefonnummer." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Skapa" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format +#: actions/tagother.php:193 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%%%%))" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/showstream.php:147 +#: actions/tagother.php:200 #, fuzzy -msgid "Your profile" -msgstr "Inget sådant inlägg." - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Profil" +msgid "Could not save tags." +msgstr "Kunde inte spara informationen om användarbild" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Inlägg flöde för %s" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "Inlägg flöde för %s" +msgid "Notices tagged with %s, page %d" +msgstr "Inlägg taggade med %s" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Inlägg flöde för %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Outbox för %s" +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Inlägg flöde för %s" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Användarbild" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Inlägg flöde för %s" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 +#: actions/tagrss.php:35 #, fuzzy -msgid "Edit profile settings" -msgstr "Profil inställningar" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +msgid "No such tag." +msgstr "Inget sådant meddelande." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API-metoden är under uppbyggnad." -#: actions/smssettings.php:335 actions/smssettings.php:347 +#: actions/unsubscribe.php:77 #, fuzzy -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 "" -"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " -"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " -"använder den." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "No profile id in request." +msgstr "Ingen profil URL lämnades ut av servern." -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 +#: actions/unsubscribe.php:84 #, fuzzy -msgid "No such user!" -msgstr "Ingen sådan användare" +msgid "No profile with that id." +msgstr "Ingen status hittad med det ID" -#: actions/twittersettings.php:72 +#: actions/unsubscribe.php:98 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +msgid "Unsubscribed" +msgstr "Lämnar pren." + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " -"Twitter," -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Tillåt prenumeration." -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:110 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" "Kontrollera dessa detajer noga så att du verkligen vet att du vill " "prenumerera på denna användares inlägg. Om du inte frågade efter att " "prenumerera på någons inlägg, klicka på \"Cancel\"" -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Acceptera" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +#, fuzzy +msgid "Subscribe to this user" +msgstr "Prenumerera på mina Twitter vänner här." -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Avvisa" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Alla prenumerationer" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Ingen rättighet förfrågan!" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Prenumeration accepterad" + +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -"Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " -"att koppla det till ditt OpenID" +"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " +"med sidans instruktioner hur du bekräftar en prenumeration. Din " +"prenumerering token är:" -#: lib/feed.php:85 -msgid "RSS 1.0" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Prenumeration avvisad" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" +"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " +"sidans instruktioner hur du avvisar en prenumeration." -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/imagefile.php:75 +#: actions/userauthorization.php:322 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: actions/userauthorization.php:338 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s lyssnar nu på dina meddelanden i %1$s.\n" -"\n" -"\tHälsningar,\n" -"%4$s.\n" +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan inte läsa användarbild URL '%s'" -#: lib/mail.php:466 -#, php-format +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Fel filtyp för bild '%s'" + +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Inget id." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil inställningar" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 +#: actions/usergroups.php:64 #, php-format -msgid "%s sent a notice to your attention" +msgid "%s groups, page %d" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Sök" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du skickade inte oss den profilen" -#: lib/section.php:106 -msgid "More..." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/all.php:80 actions/all.php:127 +#: classes/File.php:137 #, php-format msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/all.php:85 actions/all.php:132 +#: classes/File.php:147 #, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/all.php:87 actions/all.php:134 +#: classes/File.php:154 #, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +#: classes/Message.php:55 +msgid "Could not insert message." msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Inget sådant dokument." +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" -#: actions/block.php:149 +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "DB error vid infog av hashtag: %s" + +#: classes/Notice.php:179 #, fuzzy -msgid "Do not block this user from this group" -msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." +msgid "Problem saving notice. Too long." +msgstr "Det var ett problem när inlägget sparades." -#: actions/block.php:150 +#: classes/Notice.php:183 #, fuzzy -msgid "Block this user from this group" -msgstr "Ingen sådan användare" +msgid "Problem saving notice. Unknown user." +msgstr "Det var ett problem när inlägget sparades." -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Användaren har ingen profil." +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s med vänner" +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Ingen sådan användare" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Det var ett problem när inlägget sparades." -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "Bekräftelsekod" +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "Databasfel för svar: %s" + +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Meddelande till %1$s på %2$s" + +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Ändra dina profilinställningar" + +#: lib/accountsettingsaction.php:112 #, fuzzy -msgid "Do not delete this notice" -msgstr "Kan inte ta bort detta inlägg." +msgid "Upload an avatar" +msgstr "Uppdatering av profilbild misslyckades." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Ändra ditt lösenord" + +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Ändra email hantering" + +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Ogiltig hemsideadress '%s'" +#: lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Användaren har ingen profil." -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Användarnamnet används redan, försök med ett annat." +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Kunde inte skapa favorit." +#: lib/action.php:144 +#, fuzzy, php-format +msgid "%s - %s" +msgstr "%s(%s)" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/action.php:159 +msgid "Untitled page" 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." +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +#: lib/action.php:430 +msgid "Home" +msgstr "Hem" + +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/file.php:34 +#: lib/action.php:432 #, fuzzy -msgid "No notice id" -msgstr "Nytt inlägg" +msgid "Account" +msgstr "Om" -#: actions/file.php:38 +#: lib/action.php:432 #, fuzzy -msgid "No notice" -msgstr "Nytt inlägg" +msgid "Change your email, avatar, password, profile" +msgstr "Ändra ditt lösenord" -#: actions/file.php:42 -msgid "No attachments" +#: lib/action.php:435 +msgid "Connect" +msgstr "Anslut" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Kunde inte skicka vidare till servern: %s" + +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Bjud in" + +#: lib/action.php:440 lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" +"Använd detta formulär för att bjuda in dina vänner och kollegor till denna " +"sida." -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/action.php:445 +msgid "Logout" +msgstr "Logga ut" + +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/finishopenidlogin.php:211 +#: lib/action.php:450 #, fuzzy -msgid "Not a valid invitation code." -msgstr "Det är inget giltigt användarnamn." +msgid "Create an account" +msgstr "Skapa ett nytt konto" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 +#: lib/action.php:453 +msgid "Login to the site" +msgstr "" + +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Hjälp" + +#: lib/action.php:456 #, fuzzy -msgid "No group specified." -msgstr "Ingen mottagare tillagd." +msgid "Help me!" +msgstr "Hjälp" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: lib/action.php:459 +msgid "Search" +msgstr "Sök" + +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/groupblock.php:95 +#: lib/action.php:480 #, fuzzy -msgid "User is already blocked from group." -msgstr "Användaren har ingen profil." +msgid "Site notice" +msgstr "Nytt inlägg" -#: actions/groupblock.php:100 +#: lib/action.php:546 +msgid "Local views" +msgstr "" + +#: lib/action.php:612 #, fuzzy -msgid "User is not a member of group." -msgstr "Du skickade inte oss den profilen" +msgid "Page notice" +msgstr "Nytt inlägg" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 +#: lib/action.php:714 #, fuzzy -msgid "Block user from group" -msgstr "Ingen sådan användare" +msgid "Secondary site navigation" +msgstr "Prenumerationer" -#: actions/groupblock.php:155 +#: lib/action.php:721 +msgid "About" +msgstr "Om" + +#: lib/action.php:723 +msgid "FAQ" +msgstr "Frågor & svar" + +#: lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/action.php:730 +msgid "Privacy" +msgstr "Sekretesspolicy" + +#: lib/action.php:732 +msgid "Source" +msgstr "Källa" + +#: lib/action.php:734 +msgid "Contact" +msgstr "Kontakta" + +#: lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:767 #, php-format msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%]" +"(%%site.broughtbyurl%%)" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** är en mikroblogg service." + +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Det drivs med [StatusNet](http://status.net/) mikroblogging software, " +"version %s, tillgängligt under [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#: lib/action.php:785 #, fuzzy -msgid "You must be logged in to edit a group." -msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" +msgid "Site content license" +msgstr "Sök innehåll i inlägg" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Kunde inte uppdatera användare." +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: lib/action.php:1062 #, fuzzy -msgid "Unable to save your design settings!" -msgstr "Kunde inte spara dina Twitter inställningar!" +msgid "After" +msgstr "« Nyare" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 +#: lib/action.php:1070 #, fuzzy -msgid "Design preferences saved." -msgstr "Inställningar sparade." +msgid "Before" +msgstr "Tidigare »" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#: lib/action.php:1119 #, fuzzy -msgid "Make user an admin of the group" -msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" +msgid "There was a problem with your session token." +msgstr "Det var något problem med din session. Försök igen, tack." -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "No results." -msgstr "Inget resultat" +msgid "Provider" +msgstr "Profil" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "Användaren har ingen profil." +#: lib/channel.php:210 +msgid "Command complete" +msgstr "" -#: actions/invite.php:39 -msgid "Invites have been disabled." +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Kunde inte uppdatera användaren med bekräftad emailadress." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/makeadmin.php:95 +#: lib/command.php:99 #, php-format -msgid "%s is already an admin for group \"%s\"." +msgid "Nudge sent to %s" msgstr "" -#: actions/makeadmin.php:132 +#: lib/command.php:126 #, php-format -msgid "Can't get membership record for %s in group %s" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy -msgid "Message sent" -msgstr "Nytt meddelande" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#: lib/command.php:315 #, php-format -msgid " Try using another %s format." -msgstr "" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#: lib/command.php:318 #, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" +msgid "Fullname: %s" +msgstr "Fullt namn: %s" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Plats: %s" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "Hemsida: %s" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "Om: %s" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Kunde inte spara profil." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svara på detta inlägg" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Det var ett problem när inlägget sparades." -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/noticesearch.php:124 +#: lib/command.php:530 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgid "Unsubscribed from %s" msgstr "" -#: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -"[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " -"Ställ in ditt OpenID konto härifrån." -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "Profil inställningar" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Kan inte skapa OpenID formulär: %s" -#: actions/public.php:186 +#: lib/command.php:602 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/public.php:245 actions/public.php:238 -#, php-format +#: lib/command.php:613 msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ingen bekräftelsekod." -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -"Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat " -"till den emailadress du sparat till ditt konto." -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Du är identifierad. Skriv ett nytt lösenord nedan." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Förfrågan om återställning av lösenord" +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Fel uppstog med bekräftelsekoden." +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Prenumerera på mina Twitter vänner här." +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Uppdateringar via instant messenger (IM)" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Uppdateringar via SMS" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s favoriter" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Ladda upp" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 +#: lib/designsettings.php:109 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." +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Inlägg flöde för %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Inlägg flöde för %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Inlägg flöde för %s" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Ändra ditt lösenord" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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. " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Anslut" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "Ingen sådan användare" +msgid "Sidebar" +msgstr "Sök" -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Inlägg taggade med %s" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Text" -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Inlägg flöde för %s" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logga in" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "%s favoriter" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "%s favoriter" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Favorisera" + +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Inlägg flöde för %s" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Inlägg flöde för %s" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Detta inlägg är redan en favorit!" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#: lib/galleryaction.php:121 #, fuzzy -msgid "That status is not a favorite!" -msgstr "Det inlägget är ingen favorit!" +msgid "Filter tags" +msgstr "Feed för taggar %s" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Kunde inte ta emot favoritinläggen." +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" -#: actions/twitapifriendships.php:215 +#: lib/galleryaction.php:139 #, fuzzy -msgid "Target user not specified." -msgstr "Ingen mottagare tillagd." +msgid "Select tag to filter" +msgstr "Välj en operatör" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#: lib/galleryaction.php:140 #, fuzzy -msgid "Could not find target user." -msgstr "Kunde inte få fram status." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Uppdateringar med svar till %2$s" +msgid "Tag" +msgstr "Taggar" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Uppdateringar från %1$s på %2$s!" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." +#: lib/galleryaction.php:143 +msgid "Go" msgstr "" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" +#: lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL till din hemsida, blog eller profil på en annan sida." -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/groupeditform.php:168 #, fuzzy -msgid "Reject this subscription" -msgstr "Alla prenumerationer" +msgid "Describe the group or topic" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: lib/groupeditform.php:172 #, fuzzy -msgid "Profile design" -msgstr "Profil inställningar" +msgid "Description" +msgstr "Prenumerationer" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#: lib/groupeditform.php:179 +#, fuzzy msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Var du håller till, såsom \"Stad, Län, Land\"" + +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" msgstr "" -#: actions/usergroups.php:153 +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Ingen sådan användare" + +#: lib/groupnav.php:101 #, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Du skickade inte oss den profilen" +msgid "%s blocked users" +msgstr "Ingen sådan användare" -#: actions/usergroups.php:158 +#: lib/groupnav.php:107 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgid "Edit %s group properties" msgstr "" -#: classes/File.php:127 classes/File.php:137 +#: lib/groupnav.php:112 +#, fuzzy +msgid "Logo" +msgstr "Logga ut" + +#: lib/groupnav.php:113 #, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." +msgid "Add or edit %s logo" msgstr "" -#: classes/File.php:137 classes/File.php:147 +#: lib/groupnav.php:119 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." +msgid "Add or edit %s design" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" msgstr "" -#: classes/File.php:145 classes/File.php:154 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." +msgid "Tags in %s group's notices" msgstr "" -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Det var ett problem när inlägget sparades." +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Meddelande till %1$s på %2$s" +msgid "That file is too big. The maximum file size is %s." +msgstr "Du kan uppdatera din personliga profil här" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Bitvis uppladdad." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Användaren har ingen profil." +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Systemfel när filen laddades upp." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Det verkar inte vara en bildfil, annars korrupt." -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Bildfilens format stödjs inte." -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Inget sådant inlägg." -#: lib/attachmentlist.php:278 +#: lib/imagefile.php:150 lib/imagefile.php:197 #, fuzzy -msgid "Provider" -msgstr "Profil" +msgid "Unknown file type" +msgstr "okänd fil typ" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Nytt inlägg" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "Logga in" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Spara" -#: lib/designsettings.php:105 +#: lib/logingroupnav.php:80 #, fuzzy -msgid "Upload file" -msgstr "Ladda upp" +msgid "Login with a username and password" +msgstr "Logga in med ditt användarnamn och lösenord." -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Skapa ett nytt konto" -#: lib/designsettings.php:139 -msgid "On" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:139 +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/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "från" -#: lib/designsettings.php:161 -msgid "Tile background image" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Bekräfta epostadress" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Ändra ditt lösenord" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." -#: lib/designsettings.php:178 -msgid "Background" +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s lyssnar nu på dina meddelanden i %1$s.\n" +"\n" +"\tHälsningar,\n" +"%4$s.\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Anslut" +#: lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "Plats: %s\n" -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Sök" +#: lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "Hemsida: %s\n" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Logga in" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Ny emailadress för att skicka till %s" + +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"Du har en ny adress %1$s.\n" +"\n" +"Skicka email till %2$s för att göra ett nytt inlägg.\n" +"\n" +"Mer information får du på %3$s.\n" +"\n" +"Mvh,\n" +"%4$s" -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s status" -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS Bekräftelse" -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" +#: lib/mail.php:462 +#, fuzzy, php-format +msgid "You've been nudged by %s" +msgstr "Du är identifierad. Skriv in" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" msgstr "" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:513 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Ingen sådan användare" - -#: lib/groupnav.php:101 +#: lib/mail.php:554 #, fuzzy, php-format -msgid "%s blocked users" -msgstr "Ingen sådan användare" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s la till ditt inlägg som favorit" #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -7148,651 +4308,453 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"\t%3$s\n" "\n" -"\t%2$s\n" +"It reads:\n" +"\n" +"\t%4$s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mailbox.php:139 +#: lib/mediafile.php:147 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." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Inget innehåll!" - -#: lib/profileaction.php:177 -msgid "User ID" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Sök" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Hemsidan har ingen giltig URL" +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Kunde inte ta emot favoritinläggen." -#: lib/webcolor.php:123 +#: lib/mediafile.php:270 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid " Try using another %s format." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Inget sådant meddelande." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Direktmeddelande till %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Det är för långt. Max är 140 tecken. " +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" -#: actions/apifriendshipsdestroy.php:109 +#: lib/messageform.php:120 #, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." +msgid "Send a direct notice" +msgstr "Tabort inlägg" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Biografin är för lång (max 140 tecken)" - -#: actions/apigroupjoin.php:110 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "You are already a member of that group." -msgstr "Du prenumererar redan på dessa användare:" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." +msgid "Available characters" +msgstr "Minst 6 tecken" -#: actions/apigroupleave.php:114 +#: lib/noticeform.php:145 #, fuzzy -msgid "You are not a member of this group." -msgstr "Du skickade inte oss den profilen" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s / Favoriter från %s" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Du skickade inte oss den profilen" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Sök personer på denna sida" +msgid "Send a notice" +msgstr "Skicka ett meddelande" -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Användarbilden uppdaterad." +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Vad är på gång, %s?" -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "För långt. Maximalt 140 tecken" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#: lib/noticelist.php:478 #, fuzzy -msgid "Unsupported format." -msgstr "Bildfilens format stödjs inte." - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Biografin är för lång (max 140 tecken)" - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Uppdateringar från %1$s på %2$s!" +msgid "in context" +msgstr "Inget innehåll!" -#: actions/finishremotesubscribe.php:80 +#: lib/noticelist.php:498 #, fuzzy -msgid "User being listened to does not exist." -msgstr "Användaren som avlyssnas existerar inte." +msgid "Reply to this notice" +msgstr "Svara på detta inlägg" -#: actions/finishremotesubscribe.php:106 +#: lib/noticelist.php:499 #, fuzzy -msgid "You are not authorized." -msgstr "Inte tillstånd ännu." +msgid "Reply" +msgstr "svar" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Kunde inte konvertera förfrågan tokens till Access tokens." +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Okänd version av OMB protokollet." +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" -#: actions/getfile.php:75 +#: lib/nudgeform.php:128 #, fuzzy -msgid "No such file." -msgstr "Inget sådant inlägg." +msgid "Send a nudge to this user" +msgstr "Du kan inte skicka meddelande till den användaren." -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Inget sådant inlägg." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Fel uppstog när nya profilen skulle läggas till" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Uppdateringar från %1$s på %2$s!" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Fel uppstog när användarbild skulle läggas till" -#: actions/imsettings.php:89 +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Fel uppstog när fjärrprofilen skulle läggas till" + +#: lib/oauthstore.php:345 #, fuzzy -msgid "IM is not available." -msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" +msgid "Duplicate notice" +msgstr "Tabort inlägg" -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " -"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" -"action.openidlogin%%)." +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Kunde inte lägga till ny prenumeration." -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Uppdateringar från %1$s på %2$s!" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Personlig" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Svar" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Anslut" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" -#: actions/oembed.php:160 -msgid "Only " +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Berätta om dig själv och dina intressen inom 140 tecken" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Berätta om dig själv och dina intressen inom 140 tecken" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Biografin är för lång (max 140 tecken)" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" msgstr "" -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Prenumerationer" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Alla prenumerationer" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Kunde inte få en förfrågan token." +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Prenumerant" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Inlägg flöde för %s" +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Prenumerant" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Inlägg flöde för %s" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Inlägg flöde för %s" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Medlem sedan" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Meddelande till %1$s på %2$s" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Flöden för $s vänner" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Publik" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Flöden för $s vänner" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Flöden för $s vänner" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#, fuzzy +msgid "Recent tags" +msgstr "Tidigare taggar" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Outbox för %s" +#: lib/publicgroupnav.php:92 +#, fuzzy +msgid "Popular" +msgstr "Personer" -#: actions/shownotice.php:90 +#: lib/searchaction.php:120 #, fuzzy -msgid "Notice deleted." -msgstr "Inlägg" +msgid "Search site" +msgstr "Sök" -#: actions/smssettings.php:91 +#: lib/searchaction.php:162 #, fuzzy -msgid "SMS is not available." -msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" +msgid "Search help" +msgstr "Sök" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Inlägg flöde för %s" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Personer" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Sök personer på denna sida" -#: actions/userauthorization.php:110 +#: lib/searchgroupnav.php:82 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Kontrollera dessa detajer noga så att du verkligen vet att du vill " -"prenumerera på denna användares inlägg. Om du inte frågade efter att " -"prenumerera på någons inlägg, klicka på \"Cancel\"" +msgid "Notice" +msgstr "Inlägg" -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " -"med sidans instruktioner hur du bekräftar en prenumeration. Din " -"prenumerering token är:" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Sök innehåll i inlägg" -#: actions/userauthorization.php:261 +#: lib/searchgroupnav.php:85 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." +msgid "Find groups on this site" +msgstr "Sök personer på denna sida" + +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " -"sidans instruktioner hur du avvisar en prenumeration." -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:301 +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Fjärrprenumerera" + +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "Fjärrprenumerera" + +#: lib/subgroupnav.php:99 #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Groups %s is a member of" msgstr "" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Kan inte läsa användarbild URL '%s'" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Fel filtyp för bild '%s'" +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/action.php:435 +#: lib/subs.php:52 #, fuzzy -msgid "Connect to services" -msgstr "Kunde inte skicka vidare till servern: %s" +msgid "User has blocked you." +msgstr "Användaren har ingen profil." -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Sök innehåll i inlägg" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Kunde inte prenumerera." -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Kunde inte uppdatera användaren med bekräftad emailadress." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Kunde inte prenumerera på annat åt dig." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Ingen prenumerant!" -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Kunde inte radera prenumerationen. " -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +#: lib/tagcloudsection.php:56 +#, fuzzy +msgid "None" +msgstr "Nej" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Svara på detta inlägg" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Lämnar pren." -#: lib/command.php:441 +#: lib/userprofile.php:116 #, fuzzy -msgid "Error saving notice." -msgstr "Det var ett problem när inlägget sparades." +msgid "Edit Avatar" +msgstr "Användarbild" -#: lib/common.php:191 +#: lib/userprofile.php:236 #, fuzzy -msgid "No configuration file found. " -msgstr "Ingen bekräftelsekod." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +msgid "User actions" +msgstr "Okänd funktion" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profil inställningar" -#: lib/common.php:194 -msgid "Go to the installer." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/galleryaction.php:139 +#: lib/userprofile.php:272 #, fuzzy -msgid "Select tag to filter" -msgstr "Välj en operatör" +msgid "Send a direct message to this user" +msgstr "Du kan inte skicka meddelande till den användaren." -#: lib/groupeditform.php:168 +#: lib/userprofile.php:273 #, fuzzy -msgid "Describe the group or topic" -msgstr "Berätta om dig själv och dina intressen inom 140 tecken" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Berätta om dig själv och dina intressen inom 140 tecken" +msgid "Message" +msgstr "Nytt meddelande" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Nytt inlägg" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "ett par sekunder sedan" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s la till ditt inlägg som favorit" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "för nån minut sedan" -#: lib/mail.php:556 +#: lib/util.php:848 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "about %d minutes ago" +msgstr "för %d minuter sedan" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "för en timma sedan" -#: lib/mail.php:613 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgid "about %d hours ago" +msgstr "för %d timmar sedan" -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr "från" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "för en dag sedan" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "för %d dagar sedan" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Kunde inte ta emot favoritinläggen." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "för en månad sedan" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Tabort inlägg" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "för %d månader sedan" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Ogiltig innehåll i inlägget " +#: lib/util.php:862 +msgid "about a year ago" +msgstr "för ett år sedan" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Kan inte skapa OpenID formulär: %s" +msgid "%s is not a valid color!" +msgstr "Hemsidan har ingen giltig URL" -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Du kan uppdatera din personliga profil här" - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" + +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Inte registrerad användare." + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Ledsen, men det är inte din inkommande emailadress." + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Ledsen, men inga inkommande email är tillåtna." diff --git a/locale/te/LC_MESSAGES/statusnet.mo b/locale/te/LC_MESSAGES/statusnet.mo index bc88e32ad..ca72f004c 100644 Binary files a/locale/te/LC_MESSAGES/statusnet.mo and b/locale/te/LC_MESSAGES/statusnet.mo differ diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 2848e1c8c..00d73df85 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -6,5215 +6,3811 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:14+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:53+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "\"%s\"కై అన్వేషణ వాహిని" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "అటువంటి వాడుకరి లేరు." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " నుండి " +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s మరియు మిత్రులు" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgid "%s and friends" +msgstr "%s మరియు మిత్రులు" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s యొక్క మిత్రుల ఫీడు" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:134 #, php-format -msgid "%1$s's status on %2$s" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" - -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s ప్రజా వాహిని" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s మరియు మిత్రులు" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "%s బహిరంగ కాలరేఖ" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s స్థితి" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s timeline" -msgstr "%s కాలరేఖ" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, fuzzy, php-format +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 +#, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** " -"అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు, మర్చిపోకండి!" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు. తప్పనిసరి." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:89 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "Direct messages from %s" msgstr "" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "గురించి" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "అంగీకరించు" +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "చేర్చు" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "ఓపెన్ఐడీని చేర్చు" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." msgstr "" -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "చిరునామా" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." msgstr "" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "అన్ని చందాలు" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "%s కోసం అన్ని తాజాకరణలూ" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "" -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "ఇప్పటికే లోనికి ప్రవేశించారు." +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "ఇప్పటికే చేరారు!" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "చందాని సృష్టించలేకపోయాం." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "అవతారం" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "అవతారాన్ని తాజాకరించాం." - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "సరైన పేరు కాదు." -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "ఇంతక్రితం »" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "స్వపరిచయం" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "ఈ నోటీసుని తొలగించలేము." +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Can't read avatar URL '%s'" +msgid "Too many aliases! Maximum %d." msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "రద్దుచేయి" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "మార్చు" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "సంకేతపదం మార్చుకోండి" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" +msgstr "%s గుంపులు" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "నిర్థారించు" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s గుంపులు" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "చిరునామాని నిర్ధారించు" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "నిర్ధారణ రద్దయింది." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "నిర్ధారణ సంకేతం" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "నిర్ధారణ సంకేతం కనబడలేదు." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "అవతారాన్ని తాజాకరించాం." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "అనుసంధానించు" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "ఇప్పటికే ఉన్న ఖాతాతో అనుసంధానించండి" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "సంప్రదించు" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "దొరకలేదు" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." msgstr "" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" msgstr "" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinefavorites.php:119 #, php-format -msgid "Could not redirect to server: %s" +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s కాలరేఖ" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "కొత్త ప్రొఫైలు సమాచారాన్ని భద్రపరచలేకున్నాం" +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." +#: actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s బహిరంగ కాలరేఖ" + +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" msgstr "" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%s యొక్క మైక్రోబ్లాగు" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "చందాని తొలగించలేకపోయాం." +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "అభ్యర్థనలేమీ కనబడలేదు!" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "అటువంటి పత్రమేమీ లేదు." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +#, fuzzy +msgid "No nickname." +msgstr "పేరు లేదు." -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "పరిమాణం లేదు." -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "తప్పుడు పరిమాణం." -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "అవతారం" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "వాడుకరిని తాజాకరించలేకున్నాం." - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "సృష్టించు" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "అవతారపు అమరికలు" -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "ఈ పేరుతో కొత్త వాడుకరిని సృష్టించు" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "అసలు" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "కొత్త ఖాతా సృష్టించుకోండి" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "మునుజూపు" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "తొలగించు" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "ఎగుమతించు" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "ప్రస్తుతం" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." msgstr "" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "అవతారాన్ని తాజాకరించాం." -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "ఈమెయిల్" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "అవతారపు తాజాకరణ విఫలమైంది." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "ఈమెయిల్ చిరునామా" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "అవతారాన్ని తాజాకరించాం." -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "ఈమెయిల్ అమరికలు" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "పేరు లేదు." -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "ఈమెయిల్ చిరునామా ఇప్పటికే ఉంది." +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s మరియు మిత్రులు" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "పేరు లేదా ఈమెయిల్ చిరునామా ఇవ్వండి." +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "అటువంటి వాడుకరి లేరు." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "లోనికి ప్రవేశించలేదు." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "వాడుకరిని ఓపెన్ఐడీకి అనుసంధానించటంలో పొరపాటు." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "వాడుకరిని అనుసంధానించడంలో పొరపాటు." +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 +#: actions/block.php:111 actions/block.php:134 #, fuzzy -msgid "Error inserting avatar" -msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" +msgid "Block user" +msgstr "అటువంటి వాడుకరి లేరు." -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "కొత్త ప్రొపైలుని చేర్చటంలో పొరపాటు" +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "దూరపు ప్రొపైలుని చేర్చటంలో పొరపాటు" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "కాదు" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "చిరునామా నిర్ధారణని భద్రపరచడంలో పొరపాటు." +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "దూరపు ప్రొఫైలుని భద్రపరచడంలో పొరపాటు" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "అవును" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "ప్రొఫైలుని భద్రపరచడంలో పొరపాటు." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "అటువంటి వాడుకరి లేరు." -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "" -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." +#: actions/bookmarklet.php:50 +msgid "Post to " msgstr "" -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "ప్రొపైలుని తాజాకరించటంలో పొరపాటు" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "నిర్ధారణ సంకేతం లేదు." -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "నిర్ధారణ సంకేతం కనబడలేదు." -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "ప్రస్తుత పేరు" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "గుర్తుతెలియని చిరునామా రకం %s" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -#, fuzzy -msgid "FAQ" -msgstr "తవసం" +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధారితమైంది." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "అవతారపు తాజాకరణ విఫలమైంది." +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "%s యొక్క మిత్రుల ఫీడు" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "%sకి వచ్చిన స్పందనల ఫీడు" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "చిరునామాని నిర్ధారించు" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for tag %s" -msgstr "" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి నిర్ధారితమైంది." -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "ప్రాంతం" -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "సందేశాలు" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "పూర్తి పేరు" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "ఈ నోటీసుని తొలగించలేము." -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "సహాయం" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "ముంగిలి" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 +#: actions/deletenotice.php:145 #, fuzzy -msgid "Homepage" -msgstr "హోమ్ పేజీ" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "హోమ్ పేజీ URL సరైనది కాదు." +msgid "Do not delete this notice" +msgstr "ఈ నోటీసుని తొలగించలేము." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" msgstr "" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM చిరునామా" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM అమరికలు" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -"మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " -"జతచేసుకోండి." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +#: actions/doc.php:69 +msgid "No such document." +msgstr "అటువంటి పత్రమేమీ లేదు." + +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "పాత సంకేతపదం తప్పు" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "మీ సంకేతపదాన్ని తిరిగి పొందడానికై అవసరమైన సూచనలని మీ ఖాతాతో నమోదైన ఈమెయిల్ చిరునామాకి పంపించాం." +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "అమరికలు భద్రమయ్యాయి." -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "'%s' అనే అవతారపు URL తప్పు" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "ఈమెయిల్ అమరికలు" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "తప్పుడు లైసెన్సు URL '%s'" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "చిరునామా" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "సందేశపు విషయం సరైనది కాదు" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "సందేశపు URI తప్పు" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "తొలగించు" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "సందేశపు URL తప్పు" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "ప్రొపైల్ URL '%s' తప్పు." +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "రద్దుచేయి" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "ప్రొపైల్ URL తప్పు (చెడు ఫార్మాట్)" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "ఈమెయిల్ చిరునామా" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "తప్పుడు పరిమాణం." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "చేర్చు" -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "ఆహ్వానించు" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "కొత్తది" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "అభిరుచులు" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "భాష" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "ప్రాంతం" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "ప్రవేశించండి" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "భద్రపరచు" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "[ఓపెన్ఐడీ](%%doc.openid%%) ఖాతాతో ప్రవేశించండి." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "అభిరుచులు భద్రమయ్యాయి." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "నిష్క్రమించు" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "మీ సంకేతపదం మర్చిపోయారా?" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." + +#: actions/emailsettings.php:358 +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 "" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "సభ్యులైన తేదీ" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "%s యొక్క మైక్రోబ్లాగు" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "ఆ IM చిరునామా సరైనది కాదు." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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." +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "నిర్ధారణ రద్దయింది." + +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "ఆ చిరునామాని తొలగించాం." + +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "కొత్తది" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "కొత్త పేరు" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "కొత్త సందేశం" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "కొత్త సంకేతపదం" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "మీ కొత్త సంకేతపదం భద్రమైంది. మీరు ఇప్పుడు లోనికి ప్రవేశించారు." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "పేరు" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: 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/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "ఆ పేరుని అనుమతించము." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" msgstr "" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "పేరు లేదా ఈమెయిల్" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%s యొక్క మైక్రోబ్లాగు" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "కాదు" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Jabber ID లేదు." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "నిర్ధారణ సంకేతం లేదు." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "కొత్త సందేశం" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "విషయం లేదు!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "కొత్త సందేశం" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "ఐడీ లేదు." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" msgstr "" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "దూరపు సర్వర్ పేరుని ఇవ్వలేదు." +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -#, fuzzy -msgid "No nickname." -msgstr "పేరు లేదు." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "" -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." msgstr "" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు." +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "అభ్యర్థనలేమీ కనబడలేదు!" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "ఫలితాలేమీ లేవు" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "పరిమాణం లేదు." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "అటువంటి ఓపెన్ఐడీ లేదు." - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "అటువంటి పత్రమేమీ లేదు." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." +#: actions/groupblock.php:100 +msgid "User is not a member of group." msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" msgstr "అటువంటి వాడుకరి లేరు." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "సరైన Jabber ఐడీ కాదు" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "సరైన ఓపెన్ఐడీ కాదు." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "అభిరుచులు భద్రమయ్యాయి." -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "సరైన పేరు కాదు." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "గుంపు చిహ్నం" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "అవతారాన్ని తాజాకరించాం." -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు." +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "అవతారపు తాజాకరణ విఫలమైంది." -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "%s గుంపు సభ్యులు" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "దొరకలేదు" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "లోనికి ప్రవేశించలేదు." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "ఈ గుంపులో వాడుకరులు జాబితా." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" msgstr "" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "%s యొక్క సందేశముల ఫీడు" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "అటువంటి వాడుకరి లేరు." -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "సందేశాలు" +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "పాత సంకేతపదం" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%s యొక్క మైక్రోబ్లాగు" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "ఓపెన్ఐడీ" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "ఓపెన్ఐడీ ఖాతా అమర్పు" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "ఓపెన్ఐడీ ప్రవేశం" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "ఓపెన్ఐడీ URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "ఓపెన్ఐడీ అధీకరణ రద్దు చేయబడింది." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "ఓపెన్ఐడీ అధీకరణ విఫలమైంది: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "ఓపెన్ఐడీ వైఫల్యం: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "ఓపెన్ఐడీని తొలగించాం." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "ఓపెన్ఐడీ అమరికలు" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " +"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "పాక్షిక ఎగుమతి." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "సంకేతపదం" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "సంకేతపదం మరియు నిర్ధారణ సరిపోలేదు." +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "వ్యక్తుల అన్వేషణ" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్కవ అక్షరాలుండాలి." +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "ఫలితాలేమీ లేవు" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "సంకేతపదం భద్రమయ్యింది." - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "సంకేతపదాలు సరిపోలలేదు." - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "ప్రజలు" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "వ్యక్తుల అన్వేషణ" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "వ్యక్తిగత" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "వ్యక్తిగత సందేశం" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "గుంపులు" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" msgstr "" -#: ../actions/userauthorization.php:78 +#: actions/groups.php:90 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "అభిరుచులు" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "అభిరుచులు భద్రమయ్యాయి." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "ప్రాథాన్యతా భాష" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "అంతరంగికత" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "ప్రొఫైలు" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "ప్రొఫైలు URL" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "ఫ్రొఫైలు అమరికలు" +#: actions/groupunblock.php:128 actions/unblock.php:108 +#, fuzzy +msgid "Error removing the block." +msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "అజ్ఞాత ప్రొఫైలు" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM అమరికలు" -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "ప్రజా వాహిని ఫీడు" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "ప్రజా కాలరేఖ" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM చిరునామా" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." msgstr "" -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "నమోదు" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "తిరస్కరించు" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "నన్ను గుర్తుంచుకో" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Jabber ID లేదు." -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "సరైన Jabber ఐడీ కాదు" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "తొలగించు" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "ఓపెన్ఐడీని తొలగించండి" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది." -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/imsettings.php:327 +#, php-format msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "" -"మీకున్న ఒకే ఓపెన్ఐడీని తొలగిస్తే మీరు లోనికి ప్రవేశించడం అసాధ్యమవవచ్చు. మీరు దాన్ని తొలగించాలనుకుంటే, " -"ముందు వేరే ఓపెన్ఐడీని చేర్చండి." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "స్పందనలు" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "ఇది మీ Jabber ID కాదు" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/inbox.php:59 #, php-format -msgid "Replies to %s" -msgstr "%sకి స్పందనలు" +msgid "Inbox for %s - page %d" +msgstr "" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS అమరికలు" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" +#: actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "పై సంకేతపదం వలెనే" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "భద్రపరచు" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "వెతుకు" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "అన్వేషణ వాహిని ఫీడు" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format +#: actions/invite.php:150 msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -"%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా " -"అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format +#: actions/invite.php:162 msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " -"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "పంపించు" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "వ్యక్తిగత సందేశం" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "పంపించు" + +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 +#: actions/invite.php:228 +#, php-format msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "అమరికలు" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "అమరికలు భద్రమయ్యాయి." +#: actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" +#: actions/joingroup.php:128 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" msgstr "" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "ఈ ఓపెన్ఐడీని ఇప్పటికే ఎవరో వాడుతున్నారు." - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "జరగకూడనిదేదో జరిగింది." - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "మూలము" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "గణాంకాలు" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." msgstr "" -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." msgstr "" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "చందాదార్లు" +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" msgstr "" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "చందాని తిరస్కరించారు." +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "ఇప్పటికే లోనికి ప్రవేశించారు." -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "చందాలు" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "సందేశపు విషయం సరైనది కాదు" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." msgstr "" -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "పాఠ్యం" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "పాఠ్య అన్వేషణ" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "ప్రవేశించండి" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "ఆ ఓపెన్ఐడీ మీది కాదు." +#: actions/login.php:243 +msgid "Login to site" +msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధారితమైంది." +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "పేరు" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "సంకేతపదం" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది." +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "నన్ను గుర్తుంచుకో" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "ఆ ఫైలు చాలా పెద్దగా ఉంది." +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "మీ సంకేతపదం మర్చిపోయారా?" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." +#: actions/login.php:286 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "ఇది మీ Jabber ID కాదు" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." msgstr "" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "ఆ IM చిరునామా సరైనది కాదు." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "కొత్త గుంపు" + +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "కొత్త సందేశం" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి నిర్ధారితమైంది." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "విషయం లేదు!" -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "ఆ చిరునామాని తొలగించాం." +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "These are the people who listen to %s's notices." +msgid "Direct message to %s sent" msgstr "" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "కొత్త సందేశం" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "" +#: actions/newnotice.php:199 +#, fuzzy +msgid "Notice posted" +msgstr "సందేశాలు" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 +#: actions/noticesearch.php:68 +#, php-format msgid "" -"These people are already users and you were automatically subscribed to them:" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" +"%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా " +"అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "ఈ నిర్ధారణ సంకేతం చాలా పాతది. మళ్ళీ మొదలుపెట్టండి." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "పాఠ్య అన్వేషణ" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "\"%s\"కై అన్వేషణ వాహిని" -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:121 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/noticesearch.php:124 #, 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 "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%s యొక్క మైక్రోబ్లాగు" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "కాలమండలం" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "కాలమండలాన్ని ఎంచుకోలేదు." - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." +#: actions/nudge.php:97 +msgid "Nudge sent!" msgstr "" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" msgstr "" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" msgstr "" -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "అనుసంధానించు" + +#: actions/oembed.php:160 +msgid "Only " msgstr "" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." +#: actions/opensearch.php:64 +msgid "People Search" msgstr "" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "గుర్తుతెలియని చిరునామా రకం %s" +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "ఇతర అమరికలు" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" +#: actions/othersettings.php:71 +msgid "Manage various other options." msgstr "" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "ఫ్రొఫైలు అమరికలు" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s on %2$s!" +msgid "Outbox for %s - page %d" msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "ఎగుమతించు" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" msgstr "" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "సంకేతపదం మార్చుకోండి" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "సంకేతపదం మార్చుకోండి" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "వాడుకరికి ప్రొఫైలు లేదు." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "సంకేతపదం భద్రమయ్యింది." -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "వాడుకరి పేరు" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "పాత సంకేతపదం" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "వాడుకరి దొరకలేదు." +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "కొత్త సంకేతపదం" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "%s, సంగతులేమిటి?" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "నిర్థారించు" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "పై సంకేతపదం వలెనే" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "మార్చు" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." msgstr "" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "అవును" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "సంకేతపదాలు సరిపోలలేదు." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "ఈ ఓపెన్ఐడీ మీకు ఇప్పటికే ఉంది!" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "పాత సంకేతపదం తప్పు" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "సంకేతపదం భద్రమయ్యింది." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " +"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "మీ సంకేతపదాన్ని ఇక్కడ మార్చుకోవచ్చు. మంచిది ఎంచుకోండి!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "వ్యక్తుల అన్వేషణ" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "సందేశాలు పంపించడానికి మీరు కొత్త ఖాతా సృష్టించుకోవచ్చు." +#: actions/peopletag.php:70 +#, fuzzy, php-format +msgid "Not a valid people tag: %s" +msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/peopletag.php:144 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." +msgid "Users self-tagged with %s - page %d" msgstr "" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "\"తొలగించు\" అనే బొత్తంపై నొక్కడం ద్వారా ఒక ఓపెన్ఐడీని మీ ఖాతా నుండి తొలగించుకోవచ్చు." +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "సందేశపు విషయం సరైనది కాదు" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/postnotice.php:90 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "ఫ్రొఫైలు అమరికలు" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "" +#: actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "అజ్ఞాత ప్రొఫైలు" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "పూర్తి పేరు" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +#, fuzzy +msgid "Homepage" +msgstr "హోమ్ పేజీ" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "స్వపరిచయం" + +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "ప్రాంతం" + +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" + +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 +#: actions/profilesettings.php:140 msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "మిమ్మల్ని గుర్తించాం. కొత్త సంకేతపదాన్ని క్రింద ఇవ్వండి." +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "భాష" + +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "ప్రాథాన్యతా భాష" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "మీ ఓపెన్ఐడీ URL" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "కాలమండలం" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "ఈ సర్వరులో మీ పేరు, లేదా నమౌదైన మీ ఈమెయిల్ చిరునామా." +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format +#: actions/profilesettings.php:160 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -"ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " -"ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "కొన్ని క్షణాల క్రితం" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "%d రోజుల క్రితం" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "%d గంటల క్రితం" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "%d నిమిషాల క్రితం" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "%d నెలల క్రితం" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "ఓ రోజు క్రితం" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "ఓ నిమిషం క్రితం" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "ఓ నెల క్రితం" +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "కాలమండలాన్ని ఎంచుకోలేదు." -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "ఒక సంవత్సరం క్రితం" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "ఒక గంట క్రితం" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "తొలగించు" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "దీనికి స్పందనగా..." +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "స్పందించు" +#: actions/profilesettings.php:336 +#, fuzzy +msgid "Couldn't save tags." +msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "పై సంకేతపదం వలెనే" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "అమరికలు భద్రమయ్యాయి." -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« తర్వాత" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "ప్రజా కాలరేఖ" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "ప్రజా కాలరేఖ" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "ప్రజా వాహిని ఫీడు" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "ప్రజా వాహిని ఫీడు" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "ప్రజా వాహిని ఫీడు" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/public.php:186 #, php-format -msgid "%s favorite notices" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 +#: actions/public.php:233 #, php-format -msgid "Feed of favorite notices of %s" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/public.php:238 #, php-format -msgid "Inbox for %s - page %d" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "ప్రజా వాహిని ఫీడు" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " msgstr "" -#: actions/invite.php:178 actions/invite.php:213 +#: actions/publictagcloud.php:69 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." +#: actions/recoverpassword.php:62 +msgid "No such recovery code." msgstr "" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." msgstr "" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "అటువంటి వాడుకరి లేరు" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "కొత్త సందేశం" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "ఈ నిర్ధారణ సంకేతం చాలా పాతది. మళ్ళీ మొదలుపెట్టండి." -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "ఈ సర్వరులో మీ పేరు, లేదా నమౌదైన మీ ఈమెయిల్ చిరునామా." -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/recoverpassword.php:208 +msgid "Reset password" msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +#: actions/recoverpassword.php:209 +msgid "Recover password" msgstr "" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు, మర్చిపోకండి!" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "పై సంకేతపదం వలెనే" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " +#: actions/recoverpassword.php:243 +msgid "Reset" msgstr "" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "పేరు లేదా ఈమెయిల్ చిరునామా ఇవ్వండి." -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "చిరునామా నిర్ధారణని భద్రపరచడంలో పొరపాటు." -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:325 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "మీ సంకేతపదాన్ని తిరిగి పొందడానికై అవసరమైన సూచనలని మీ ఖాతాతో నమోదైన ఈమెయిల్ చిరునామాకి పంపించాం." -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్కవ అక్షరాలుండాలి." -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "సంకేతపదం మరియు నిర్ధారణ సరిపోలేదు." -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "మీ కొత్త సంకేతపదం భద్రమైంది. మీరు ఇప్పుడు లోనికి ప్రవేశించారు." + +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "అటువంటి సందేశం లేదు." +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "నమోదు" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/showstream.php:154 -msgid "Send a message" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "ఈమెయిల్ చిరునామా ఇప్పటికే ఉంది." -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు. తప్పనిసరి." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "ఈమెయిల్" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." + +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: actions/register.php:493 +msgid "My text and files are available under " msgstr "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." + +#: actions/register.php:537 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/twittersettings.php:27 +#: actions/register.php:561 msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "ట్విట్టర్ అమరికలు" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "ట్విట్టర్ ఖాతా" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "ట్విట్టర్ వాడుకరిపేరు" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "దయచేసి, ఖాళీలు వద్దు" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "ట్విట్టర్ సంకేతపదం" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 +#: actions/remotesubscribe.php:98 +#, php-format msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" msgstr "" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "చందాదార్లు" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "వాడుకరి పేరు" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "ప్రొఫైలు URL" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" msgstr "" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "ప్రొపైల్ URL తప్పు (చెడు ఫార్మాట్)" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "%sకి స్పందనలు" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "ఆదేశ ఫలితాలు" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "%sకి స్పందనలు" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "ఆదేశం పూర్తయ్యింది" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "ఆదేశం విఫలమైంది" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: classes/Command.php:96 classes/Command.php:113 +#: actions/replies.php:198 #, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 +#: actions/replies.php:205 #, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "పూర్తిపేరు: %s" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%sకి స్పందనలు" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "ప్రాంతం: %s" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "అటువంటి సందేశమేమీ లేదు." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "గురించి: %s" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s యొక్క మిత్రుల ఫీడు" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." +#: actions/showfavorites.php:205 +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 "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/showfavorites.php:211 #, php-format -msgid "Subscribed to %s" +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "Unsubscribed from %s" -msgstr "" +msgid "%s group" +msgstr "%s గుంపు" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" msgstr "" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" +#: actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "అటువంటి సందేశమేమీ లేదు." -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +#, fuzzy +msgid "Note" +msgstr "సందేశాలు" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "ఆదేశాలు:\n" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "గుంపు చర్యలు" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/showgroup.php:345 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" +msgid "FOAF for %s group" +msgstr "%s గుంపు" + +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "సభ్యులు" + +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(ఏమీలేదు)" + +#: actions/showgroup.php:392 +msgid "All members" +msgstr "అందరు సభ్యులూ" + +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "గణాంకాలు" + +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "సృష్టించు" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/showgroup.php:448 #, php-format -msgid "New private message from %s" +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 "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/showgroup.php:454 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"**%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 "" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "అటువంటి సందేశం లేదు." -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showmessage.php:108 #, php-format -msgid "%s's favorite notices" +msgid "Message to %1$s on %2$s" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "వాడుకరి" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "మీకు వచ్చిన సందేశాలు" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "సందేశాలు" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "మీరు పంపిన సందేశాలు" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "ట్విట్టర్" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "%s, పేజీ %d" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showstream.php:143 #, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s మరియు మిత్రులు" +msgid "Notice feed for %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "అవతారపు అమరికలు" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "అసలు" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "మునుజూపు" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -#, fuzzy -msgid "Lost our file." -msgstr "అటువంటి సందేశమేమీ లేదు." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS అమరికలు" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/block.php:111 actions/block.php:134 +#: actions/smssettings.php:91 #, fuzzy -msgid "Block user" -msgstr "అటువంటి వాడుకరి లేరు." +msgid "SMS is not available." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/block.php:162 actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/confirmaddress.php:159 -#, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "ఆ చిరునామాని తొలగించాం." +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "నిర్ధారణ సంకేతం" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: actions/disfavor.php:94 -msgid "Add to favorites" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "పేరు లేదు." - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "అటువంటి సందేశమేమీ లేదు." - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." - -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "వాడుకరిని తాజాకరించలేకున్నాం." - -#: actions/editgroup.php:226 actions/editgroup.php:269 +#: actions/smssettings.php:347 #, fuzzy -msgid "Options saved." -msgstr "అమరికలు భద్రమయ్యాయి." - -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." +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 "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది." - -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " -msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: actions/facebookhome.php:196 +#: actions/smssettings.php:476 #, php-format -msgid "If you would like the %s app to automatically update " +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 "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 +#: actions/subedit.php:83 #, fuzzy -msgid "No notice content!" -msgstr "విషయం లేదు!" +msgid "Could not save subscription." +msgstr "చందాని సృష్టించలేకపోయాం." -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" +#: actions/subscribe.php:55 +#, fuzzy +msgid "Not a local user." +msgstr "అటువంటి వాడుకరి లేరు." -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "తర్వాత" +#: actions/subscribe.php:69 +#, fuzzy +msgid "Subscribed" +msgstr "చందాదార్లు" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "ఇంతక్రితం" +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "%s చందాదార్లు" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/subscribers.php:52 #, php-format -msgid "Thanks for inviting your friends to use %s" +msgid "%s subscribers, page %d" msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/subscribers.php:67 #, php-format -msgid "You have been invited to %s" +msgid "These are the people who listen to %s's notices." msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "%s యొక్క మిత్రుల ఫీడు" +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/subscribers.php:110 #, php-format -msgid "Friends already using %s:" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/subscribers.php:114 #, php-format -msgid "Send invitations" +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/facebookremove.php:56 -#, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "వాడుకరిని తాజాకరించలేకున్నాం." - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "అన్ని చందాలు" -#: actions/facebooksettings.php:67 -#, fuzzy -msgid "Sync preferences saved." -msgstr "అభిరుచులు భద్రమయ్యాయి." +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "అన్ని చందాలు" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." msgstr "" -#: actions/facebooksettings.php:106 -#, fuzzy -msgid "Prefix" -msgstr "ప్రొఫైలు" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, php-format -msgid "If you would like %s to automatically update " +msgid "%s is not listening to anyone." msgstr "" -#: actions/facebooksettings.php:147 +#: actions/subscriptions.php:194 #, fuzzy -msgid "Sync preferences" -msgstr "అభిరుచులు" +msgid "Jabber" +msgstr "Jabber ID లేదు." -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 +#: actions/tagother.php:33 #, fuzzy -msgid "Popular notices" -msgstr "అటువంటి సందేశమేమీ లేదు." +msgid "Not logged in" +msgstr "లోనికి ప్రవేశించలేదు." -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/tagother.php:39 +#, fuzzy +msgid "No id argument." +msgstr "అటువంటి పత్రమేమీ లేదు." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +#, fuzzy +msgid "User profile" +msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "గుంపు చిహ్నం" +#: actions/tagother.php:200 +#, fuzzy +msgid "Could not save tags." +msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "అవతారాన్ని తాజాకరించాం." - -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "అవతారపు తాజాకరణ విఫలమైంది." +#: actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %s, page %d" +msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "%s గుంపు సభ్యులు" +#: actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "ఈ గుంపులో వాడుకరులు జాబితా." +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "గుంపులు" +#: actions/tagrss.php:35 +#, fuzzy +msgid "No such tag." +msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" +#: actions/twitapitrends.php:87 +msgid "API method under construction." msgstr "" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " +#: actions/unsubscribe.php:77 +msgid "No profile id in request." msgstr "" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "కొత్త ఖాతా సృష్టించుకోండి" - -#: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +#: actions/unsubscribe.php:84 +msgid "No profile with that id." msgstr "" -"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " -"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: actions/groupsearch.php:63 actions/groupsearch.php:58 +#: actions/unsubscribe.php:98 #, fuzzy -msgid "Group search" -msgstr "వ్యక్తుల అన్వేషణ" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" +msgid "Unsubscribed" +msgstr "చందాదార్లు" -#: actions/imsettings.php:120 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "Jabber or GTalk address, " +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " +#: actions/userauthorization.php:105 +msgid "Authorize subscription" msgstr "" -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "నిర్ధారణ సంకేతం లేదు." +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "అంగీకరించు" + +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "You are already a member of that group" -msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" +msgid "Subscribe to this user" +msgstr "చందాదార్లు" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "" +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "తిరస్కరించు" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "అన్ని చందాలు" + +#: actions/userauthorization.php:225 +msgid "No authorization request!" msgstr "" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +#: actions/userauthorization.php:247 +msgid "Subscription authorized" msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "చందాని తిరస్కరించారు." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" - -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/userauthorization.php:307 #, php-format -msgid "%s left group %s" +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "కొత్త గుంపు" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" - -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "చందాని సృష్టించలేకపోయాం." +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "'%s' అనే అవతారపు URL తప్పు" -#: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy -msgid "That's too long. " -msgstr "ఆ ఫైలు చాలా పెద్దగా ఉంది." +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" +#: actions/userbyid.php:70 +msgid "No id." +msgstr "ఐడీ లేదు." -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #, fuzzy -msgid "Notice posted" -msgstr "సందేశాలు" +msgid "Profile design" +msgstr "ఫ్రొఫైలు అమరికలు" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" msgstr "" -#: actions/nudge.php:97 -msgid "Nudge sent!" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "ఓపెన్ఐడీ ప్రవేశం" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "ఓపెన్ఐడీని తొలగించండి" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "ఇతర అమరికలు" +#: classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" -#: actions/othersettings.php:71 -msgid "Manage various other options." +#: classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/othersettings.php:112 -msgid "Service" -msgstr "సేవ" +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -#, fuzzy -msgid "URL shortening service is too long (max 50 chars)." -msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" -#: actions/passwordsettings.php:69 +#: classes/Notice.php:179 #, fuzzy -msgid "Change your password." -msgstr "సంకేతపదం మార్చుకోండి" +msgid "Problem saving notice. Too long." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#: classes/Notice.php:183 #, fuzzy -msgid "Password change" -msgstr "సంకేతపదం భద్రమయ్యింది." +msgid "Problem saving notice. Unknown user." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy -msgid "Profile information" -msgstr "అజ్ఞాత ప్రొఫైలు" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" msgstr "" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: classes/User.php:333 +#, php-format +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "ప్రొఫైలు" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "" + +#: lib/accountsettingsaction.php:112 #, fuzzy -msgid "Couldn't save tags." -msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." +msgid "Upload an avatar" +msgstr "అవతారపు తాజాకరణ విఫలమైంది." -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "ప్రజా కాలరేఖ" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/publictagcloud.php:57 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Public tag cloud" -msgstr "ప్రజా వాహిని ఫీడు" +msgid "Design your profile" +msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/publictagcloud.php:63 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "ఇతర" + +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "ఇతర ఎంపికలు" + +#: lib/action.php:144 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "" +msgid "%s - %s" +msgstr "%s - %s" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "" +#: lib/action.php:430 +msgid "Home" +msgstr "ముంగిలి" -#: actions/register.php:286 -msgid "With this form you can create " +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" - -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." +#: lib/action.php:432 +msgid "Account" +msgstr "ఖాతా" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" +#: lib/action.php:435 +msgid "Connect" +msgstr "అనుసంధానించు" -#: actions/register.php:410 -#, fuzzy -msgid "Where you are, like \"City, " -msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " -msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "ఆహ్వానించు" -#: actions/register.php:471 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" +#: lib/action.php:445 +msgid "Logout" +msgstr "నిష్క్రమించు" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "%sకి స్పందనలు" +#: lib/action.php:450 +#, fuzzy +msgid "Create an account" +msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" +#: lib/action.php:453 +msgid "Login to the site" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "%s గుంపు" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "సహాయం" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" +#: lib/action.php:456 +#, fuzzy +msgid "Help me!" +msgstr "సహాయం" + +#: lib/action.php:459 +msgid "Search" +msgstr "వెతుకు" + +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 +#: lib/action.php:480 #, fuzzy -msgid "Group profile" -msgstr "అటువంటి సందేశమేమీ లేదు." +msgid "Site notice" +msgstr "కొత్త సందేశం" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/action.php:546 +msgid "Local views" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 +#: lib/action.php:612 #, fuzzy -msgid "Note" -msgstr "సందేశాలు" +msgid "Page notice" +msgstr "కొత్త సందేశం" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "గుంపు చర్యలు" +#: lib/action.php:714 +#, fuzzy +msgid "Secondary site navigation" +msgstr "చందాలు" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "%s యొక్క సందేశముల ఫీడు" +#: lib/action.php:721 +msgid "About" +msgstr "గురించి" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "సభ్యులు" +#: lib/action.php:723 +#, fuzzy +msgid "FAQ" +msgstr "తవసం" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(ఏమీలేదు)" +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "అందరు సభ్యులూ" +#: lib/action.php:730 +msgid "Privacy" +msgstr "అంతరంగికత" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/action.php:732 +msgid "Source" +msgstr "మూలము" + +#: lib/action.php:734 +msgid "Contact" +msgstr "సంప్రదించు" + +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: lib/action.php:767 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** " +"అనేది మైక్రో బ్లాగింగు సదుపాయం." + +#: lib/action.php:769 #, php-format -msgid "%s, page %d" -msgstr "%s, పేజీ %d" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "ప్రొఫైలు" +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 +#: lib/action.php:785 #, fuzzy -msgid "User profile" -msgstr "వాడుకరికి ప్రొఫైలు లేదు." +msgid "Site content license" +msgstr "కొత్త సందేశం" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "వాడుకరి చర్యలు" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "చందాదార్లు" +#: lib/action.php:1062 +msgid "After" +msgstr "తర్వాత" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "అన్ని గుంపులు" +#: lib/action.php:1070 +msgid "Before" +msgstr "ఇంతక్రితం" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "జోడింపులు" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/smssettings.php:335 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" +msgid "Provider" +msgstr "ప్రొఫైలు" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "చందాని సృష్టించలేకపోయాం." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "ఆదేశ ఫలితాలు" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "అటువంటి వాడుకరి లేరు." +#: lib/channel.php:210 +msgid "Command complete" +msgstr "ఆదేశం పూర్తయ్యింది" -#: actions/subscribe.php:69 -#, fuzzy -msgid "Subscribed" -msgstr "చందాదార్లు" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "ఆదేశం విఫలమైంది" -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "%s చందాదార్లు" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" -#: actions/subscribers.php:52 +#: lib/command.php:88 #, php-format -msgid "%s subscribers, page %d" +msgid "Could not find a user with nickname %s" +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" msgstr "" -#: actions/subscribers.php:67 +#: lib/command.php:126 #, php-format -msgid "These are the people who " +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "అన్ని చందాలు" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "అన్ని చందాలు" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/subscriptions.php:69 +#: lib/command.php:315 #, php-format -msgid "These are the people whose " -msgstr "" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "Jabber ID లేదు." +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "పూర్తిపేరు: %s" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "%s యొక్క మైక్రోబ్లాగు" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "ప్రాంతం: %s" -#: actions/tag.php:66 actions/tag.php:73 +#: lib/command.php:324 #, php-format -msgid "Messages tagged \"%s\", most recent first" +msgid "Homepage: %s" msgstr "" -#: actions/tagother.php:33 -#, fuzzy -msgid "Not logged in" -msgstr "లోనికి ప్రవేశించలేదు." - -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "అటువంటి పత్రమేమీ లేదు." - -#: actions/tagother.php:65 +#: lib/command.php:327 #, php-format -msgid "Tag %s" -msgstr "" +msgid "About: %s" +msgstr "గురించి: %s" -#: actions/tagother.php:141 -msgid "Tag user" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "%sకి స్పందనలు" -#: actions/tagother.php:198 actions/tagother.php:200 +#: lib/command.php:441 #, fuzzy -msgid "Could not save tags." -msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" +msgid "Error saving notice." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/tagrss.php:35 -#, fuzzy -msgid "No such tag." -msgstr "అటువంటి సందేశమేమీ లేదు." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "%s యొక్క మైక్రోబ్లాగు" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "అభ్యర్థనలేమీ కనబడలేదు!" - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -#, fuzzy -msgid "Twitter user name" -msgstr "ట్విట్టర్ అమరికలు" - -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "ట్విట్టర్ సంకేతపదం" - -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -#, fuzzy -msgid "Twitter Friends" -msgstr "ట్విట్టర్ అమరికలు" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." +#: lib/command.php:551 +msgid "Notification off." +msgstr "" -#: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy -msgid "Error removing the block." -msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -#, fuzzy -msgid "Unsubscribed" -msgstr "చందాదార్లు" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: lib/command.php:602 #, php-format -msgid "%s groups" -msgstr "%s గుంపులు" +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 +#: lib/common.php:191 #, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +msgid "No configuration file found. " +msgstr "నిర్ధారణ సంకేతం లేదు." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "అవతారపు తాజాకరణ విఫలమైంది." - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "ఇతర" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "ఇతర ఎంపికలు" +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "%s - %s" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "ఖాతా" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "ఎగుమతించు" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "కొత్త ఖాతా సృష్టించుకోండి" +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" -#: lib/action.php:341 lib/action.php:418 +#: lib/designsettings.php:170 #, fuzzy -msgid "Login with OpenID" -msgstr "అటువంటి ఓపెన్ఐడీ లేదు." +msgid "Change colours" +msgstr "సంకేతపదం మార్చుకోండి" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +#: lib/designsettings.php:191 #, fuzzy -msgid "Help me!" -msgstr "సహాయం" +msgid "Content" +msgstr "అనుసంధానించు" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +#: lib/designsettings.php:204 #, fuzzy -msgid "Site notice" -msgstr "కొత్త సందేశం" +msgid "Sidebar" +msgstr "వెతుకు" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "పాఠ్యం" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +#: lib/designsettings.php:230 #, fuzzy -msgid "Page notice" -msgstr "కొత్త సందేశం" +msgid "Links" +msgstr "ప్రవేశించండి" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "చందాలు" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "అటువంటి వాడుకరి లేరు." +#: lib/designsettings.php:372 +msgid "Bad default color settings: " +msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "కొత్త ఖాతా సృష్టించుకోండి" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "ప్రజా" - #: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy msgid "Favor this notice" msgstr "అటువంటి సందేశమేమీ లేదు." +#: lib/favorform.php:140 +msgid "Favor" +msgstr "" + #: lib/feedlist.php:64 msgid "Export data" msgstr "" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + #: lib/galleryaction.php:121 msgid "Filter tags" msgstr "" @@ -5223,65 +3819,85 @@ msgstr "" msgid "All" msgstr "అన్నీ" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" msgstr "వెళ్ళు" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + #: lib/groupeditform.php:172 msgid "Description" msgstr "వివరణ" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "గుంపు" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "అటువంటి వాడుకరి లేరు." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "అటువంటి వాడుకరి లేరు." -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 +#: lib/groupnav.php:112 msgid "Logo" msgstr "చిహ్నం" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "" @@ -5296,2231 +3912,676 @@ msgid "Tags in %s group's notices" msgstr "" #: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "హోమ్ పేజీ URL సరైనది కాదు." +msgid "This page is not available in a media type you accept" +msgstr "" -#: lib/joinform.php:114 -#, fuzzy -msgid "Join" -msgstr "ప్రవేశించండి" +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." -#: lib/leaveform.php:114 -#, fuzzy -msgid "Leave" -msgstr "భద్రపరచు" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "పాక్షిక ఎగుమతి." -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు." + +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "" + +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "కొత్త సందేశం" + +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "ప్రవేశించండి" + +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "భద్రపరచు" + +#: lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." + +#: lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/mailbox.php:139 +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/mail.php:175 +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " నుండి " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ" + +#: lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" "\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:236 +#: lib/mail.php:240 #, php-format -msgid "%1$s is now listening to " +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:254 lib/mail.php:253 +#: lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "ప్రాంతం: %s\n" -#: lib/mail.php:256 lib/mail.php:255 +#: lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "హోమ్ పేజీ\n" -#: lib/mail.php:258 lib/mail.php:257 +#: lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 lib/mail.php:462 +#: lib/mail.php:285 #, php-format -msgid "You've been nudged by %s" +msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:465 +#: lib/mail.php:288 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/mail.php:555 +#: lib/mail.php:412 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "" +msgid "%s status" +msgstr "%s స్థితి" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "కొత్త సందేశం" - -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" - -#: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy -msgid "in reply to" -msgstr "దీనికి స్పందనగా..." - -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -#, fuzzy -msgid "Reply" -msgstr "స్పందించు" - -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "తొలగించు" - -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" msgstr "" -#: lib/personaltagcloudsection.php:56 +#: lib/mail.php:611 #, php-format -msgid "Tags in %s's notices" +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "ప్రజా" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy -msgid "Popular" -msgstr "వ్యక్తుల అన్వేషణ" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" -#: lib/searchgroupnav.php:82 -#, fuzzy -msgid "Notice" -msgstr "సందేశాలు" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "%sకి స్పందనలు" +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: lib/mediafile.php:270 #, php-format -msgid "Groups %s is a member of" +msgid " Try using another %s format." msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: lib/mediafile.php:275 #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "%s is not a supported filetype on this server." msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -#, fuzzy -msgid "User has blocked you." -msgstr "వాడుకరికి ప్రొఫైలు లేదు." - -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -#, fuzzy -msgid "Subscribe to this user" -msgstr "చందాదార్లు" - -#: lib/tagcloudsection.php:56 -msgid "None" +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "Unblock this user" -msgstr "అటువంటి వాడుకరి లేరు." +msgid "Available characters" +msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" +#: lib/noticeform.php:145 +#, fuzzy +msgid "Send a notice" +msgstr "కొత్త సందేశం" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "%s యొక్క మిత్రుల ఫీడు" +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "%s, సంగతులేమిటి?" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "%s యొక్క మిత్రుల ఫీడు" +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "%s యొక్క మిత్రుల ఫీడు" +#: lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/noticelist.php:478 #, fuzzy -msgid "You and friends" -msgstr "%s మరియు మిత్రులు" +msgid "in context" +msgstr "విషయం లేదు!" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +#: lib/noticelist.php:498 +msgid "Reply to this notice" msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/noticelist.php:499 #, fuzzy -msgid "Avatar deleted." -msgstr "అవతారాన్ని తాజాకరించాం." +msgid "Reply" +msgstr "స్పందించు" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +#: lib/nudgeform.php:116 +msgid "Nudge this user" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "కొత్త ప్రొపైలుని చేర్చటంలో పొరపాటు" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: lib/oauthstore.php:291 +#, fuzzy +msgid "Error inserting avatar" +msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "దూరపు ప్రొపైలుని చేర్చటంలో పొరపాటు" -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "కొత్త సందేశం" + +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "వ్యక్తిగత" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "స్పందనలు" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "వాడుకరి" + +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "%s యొక్క మైక్రోబ్లాగు" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "మీకు వచ్చిన సందేశాలు" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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." +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " -"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: actions/groups.php:90 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "మీరు పంపిన సందేశాలు" + +#: lib/personaltagcloudsection.php:56 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +msgid "Tags in %s's notices" msgstr "" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "చందాలు" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "\"%s\"కై అన్వేషణ వాహిని" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "అన్ని చందాలు" -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "చందాదార్లు" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: lib/profileaction.php:157 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "ప్రజా వాహిని ఫీడు" +msgid "All subscribers" +msgstr "చందాదార్లు" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#: lib/profileaction.php:177 #, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "ప్రజా వాహిని ఫీడు" +msgid "User ID" +msgstr "వాడుకరి" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "ప్రజా వాహిని ఫీడు" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "సభ్యులైన తేదీ" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "అన్ని గుంపులు" + +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "ప్రజా" + +#: lib/publicgroupnav.php:82 +msgid "User groups" msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: lib/publicgroupnav.php:92 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." +msgid "Popular" +msgstr "వ్యక్తుల అన్వేషణ" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 +#: lib/searchaction.php:120 #, fuzzy -msgid "Created" -msgstr "సృష్టించు" +msgid "Search site" +msgstr "వెతుకు" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "వెతుకు" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "ప్రజలు" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/showstream.php:147 +#: lib/searchgroupnav.php:82 #, fuzzy -msgid "Your profile" -msgstr "అటువంటి సందేశమేమీ లేదు." +msgid "Notice" +msgstr "సందేశాలు" -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "ప్రొఫైలు" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "%s యొక్క సందేశముల ఫీడు" +#: lib/section.php:106 +msgid "More..." +msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: lib/subgroupnav.php:83 #, php-format -msgid "FOAF for %s" +msgid "People %s subscribes to" msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "అవతారం" +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "%sకి స్పందనలు" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "ఫ్రొఫైలు అమరికలు" +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "ఆ నిర్ధారణా సంకేతం మీది కాదు!" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 +#: lib/subs.php:52 #, fuzzy -msgid "No such user!" -msgstr "అటువంటి వాడుకరి లేరు." +msgid "User has blocked you." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: lib/subs.php:124 +msgid "Not subscribed!." msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "చందాని తొలగించలేకపోయాం." -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: lib/tagcloudsection.php:56 +msgid "None" msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, 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 "" -"మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " -"జతచేసుకోండి." +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "అవతారం" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "వాడుకరి చర్యలు" -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "ఫ్రొఫైలు అమరికలు" -#: lib/feed.php:89 -msgid "Atom" +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "కొన్ని క్షణాల క్రితం" -#: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "ఓ నిమిషం క్రితం" -#: lib/mail.php:466 +#: lib/util.php:848 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" +msgid "about %d minutes ago" +msgstr "%d నిమిషాల క్రితం" -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "ఒక గంట క్రితం" -#: lib/mail.php:598 lib/mail.php:600 +#: lib/util.php:852 #, php-format -msgid "%s sent a notice to your attention" -msgstr "" +msgid "about %d hours ago" +msgstr "%d గంటల క్రితం" -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "ఓ రోజు క్రితం" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "వెతుకు" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "%d రోజుల క్రితం" -#: lib/section.php:106 -msgid "More..." -msgstr "" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "ఓ నెల క్రితం" -#: actions/all.php:80 actions/all.php:127 +#: lib/util.php:860 #, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" +msgid "about %d months ago" +msgstr "%d నెలల క్రితం" -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "ఒక సంవత్సరం క్రితం" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: lib/webcolor.php:123 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "అటువంటి పత్రమేమీ లేదు." - -#: actions/block.php:149 -msgid "Do not block this user from this group" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "అటువంటి వాడుకరి లేరు." - -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "వాడుకరికి ప్రొఫైలు లేదు." - -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s మరియు మిత్రులు" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: scripts/maildaemon.php:53 +msgid "Not a registered user." msgstr "" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "అటువంటి వాడుకరి లేరు." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "" -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "ప్రాంతం" - -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "ఈ నోటీసుని తొలగించలేము." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "కొత్త సందేశం" - -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "కొత్త సందేశం" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "సరైన పేరు కాదు." - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "వాడుకరికి ప్రొఫైలు లేదు." - -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "అటువంటి వాడుకరి లేరు." - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "వాడుకరిని తాజాకరించలేకున్నాం." - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "అభిరుచులు భద్రమయ్యాయి." - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "ఫలితాలేమీ లేవు" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -#, fuzzy -msgid "User is not blocked from group." -msgstr "వాడుకరికి ప్రొఫైలు లేదు." - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " -"ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy -msgid "View profile designs" -msgstr "ఫ్రొఫైలు అమరికలు" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "మీరు మీ సంకేతపదాన్ని మర్చిపోతే, మీ ఖాతాలో భద్రపరచిన ఈమెయిలుకి కొత్తదాన్ని పంపించుకోవచ్చు." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "మిమ్మల్ని గుర్తించాం. కొత్త సంకేతపదాన్ని క్రింద ఇవ్వండి." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "సంకేతపదం భద్రమయ్యింది." - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "చందాదార్లు" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "అటువంటి సందేశమేమీ లేదు." - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "అటువంటి వాడుకరి లేరు." - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "" - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "వాడుకరిని తాజాకరించలేకున్నాం." - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "వాడుకరిని తాజాకరించలేకున్నాం." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "%s యొక్క మైక్రోబ్లాగు" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "అన్ని చందాలు" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "ఫ్రొఫైలు అమరికలు" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "వాడుకరికి ప్రొఫైలు లేదు." - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "జోడింపులు" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "ప్రొఫైలు" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "ఎగుమతించు" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "సంకేతపదం మార్చుకోండి" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "అనుసంధానించు" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "వెతుకు" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "ప్రవేశించండి" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "అటువంటి వాడుకరి లేరు." - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "అటువంటి వాడుకరి లేరు." - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "విషయం లేదు!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "వాడుకరి" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "వెతుకు" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "హోమ్ పేజీ URL సరైనది కాదు." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "అటువంటి సందేశమేమీ లేదు." - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s గుంపులు" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "అవతారాన్ని తాజాకరించాం." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "" - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "%s యొక్క మైక్రోబ్లాగు" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." -msgstr "" - -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "అటువంటి సందేశమేమీ లేదు." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "అటువంటి సందేశమేమీ లేదు." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "%s యొక్క మైక్రోబ్లాగు" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "హోమ్ పేజీ URL సరైనది కాదు." - -#: actions/login.php:259 actions/login.php:286 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "%s యొక్క మైక్రోబ్లాగు" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "అనుసంధానించు" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "%sకి స్పందనలు" - -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "%s యొక్క మిత్రుల ఫీడు" - -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "%s యొక్క మిత్రుల ఫీడు" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "%s యొక్క మిత్రుల ఫీడు" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "%s గుంపు" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "సందేశాలు" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "హోమ్ పేజీ URL సరైనది కాదు." - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "%s యొక్క సందేశముల ఫీడు" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "'%s' అనే అవతారపు URL తప్పు" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" - -#: lib/action.php:435 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "కొత్త సందేశం" - -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "వాడుకరిని తాజాకరించలేకున్నాం." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "%sకి స్పందనలు" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "నిర్ధారణ సంకేతం లేదు." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "కొత్త సందేశం" - -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " నుండి " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "వాడుకరిని తాజాకరించలేకున్నాం." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "కొత్త సందేశం" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "సందేశపు విషయం సరైనది కాదు" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/tr/LC_MESSAGES/statusnet.mo b/locale/tr/LC_MESSAGES/statusnet.mo index f017ec257..166d3bad6 100644 Binary files a/locale/tr/LC_MESSAGES/statusnet.mo and b/locale/tr/LC_MESSAGES/statusnet.mo differ diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 3519942ec..c27caff29 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -5,3050 +5,1977 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:17+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:56+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " \"%s\" için arama sonuçları" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Böyle bir durum mesajı yok." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " -"numarası." +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Böyle bir kullanıcı yok." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s ve arkadaşları" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgid "%s and friends" +msgstr "%s ve arkadaşları" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s %2$s'da durumunuzu takip ediyor" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" -"\n" -"\t%3$s\n" -"\n" -"Kendisini durumsuz bırakmayın!,\n" -"%4$s.\n" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s'in %2$s'deki durum mesajları " - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 -#, php-format -msgid "%s Public Stream" -msgstr "%s Genel Durum Mesajları" - -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" -msgstr "%s ve arkadaşları" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s public timeline" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s durum" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s ve arkadaşları" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s timeline" +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " -"hazırlanan anında mesajlaşma ağıdır. " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Kullanıcının profili yok." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "Katkı sunanlar tam ad veya takma ad ile atfedilmelidir." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." msgstr "" -"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " -"verilmez" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 veya daha fazla karakter" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "Unutmayın, 6 veya daha fazla karakter" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:89 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "Direct messages from %s" msgstr "" -"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " -"mesaj yollanabilmesi için onaylamanız gerekmektedir." -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Hakkında" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Kabul et" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Ekle" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "OpenID ekle" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" msgstr "" -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Adres" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Bütün abonelikler" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "%s için bütün güncellemeler" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Zaten giriş yapılmış." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Zaten abone olunmuş!." - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" +msgid "Could not follow user: %s is already on your list." msgstr "" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Takip isteğini onayla" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -"Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Avatar" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kullanıcı güncellenemedi." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Avatar güncellendi." +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kullanıcı güncellenemedi." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Bu adresten onay bekleniyor. Jabber/Google Talk hesabınızı ayrıntılı bilgi " -"içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Avatar bilgisi kaydedilemedi" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Avatar bilgisi kaydedilemedi" -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Abonelik oluşturulamadı." + +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" +"Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " +"kullanılamaz. " -#: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy -msgid "Before »" -msgstr "Önce »" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Takma ad kullanımda. Başka bir tane deneyin." -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Hakkında" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Geçersiz bir takma ad." + +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Başlangıç sayfası adresi geçerli bir URL değil." + +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Tam isim çok uzun (azm: 255 karakter)." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Avatar URLi '%s' okunamıyor" +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Yeni parola kaydedilemedi." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "%s Geçersiz başlangıç sayfası" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "İptal et" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Takma ad kullanımda. Başka bir tane deneyin." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "OpenID işlemlerinde hata oluştu." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Jabber işlemlerinde bir hata oluştu." +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Zaten giriş yapmış durumdasıznız!" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Değiştir" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Bize o profili yollamadınız" -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Parolayı değiştir" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenID formu yaratılamadı: %s" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" msgstr "" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" msgstr "" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Onayla" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Profil" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Adresi Onayla" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Bize o profili yollamadınız" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Onaylama iptal edildi." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Onay kodu bulunamadı." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar güncellendi." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Bağlan" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Varolan hesaba bağlan" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "İletişim" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "Could not create OpenID form: %s" -msgstr "OpenID formu yaratılamadı: %s" +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Desteklenmeyen görüntü dosyası biçemi." + +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "Could not follow user: %s is already on your list." +msgid "%s / Favorites from %s" msgstr "" -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Sunucuya yönlendirme yapılamadı: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Avatar bilgisi kaydedilemedi" - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Yeni profil bilgisi kaydedilemedi" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." +msgid "%s timeline" msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" msgstr "" -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s'in %2$s'deki durum mesajları " -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Eposta onayı silinemedi." - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Abonelik silinemedi." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" msgstr "" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Onay kodu eklenemedi." +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Yeni abonelik eklenemedi." +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "İstek bulunamadı!" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Profil kaydedilemedi." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Böyle bir belge yok." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Takma ad yok" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." +#: actions/avatarbynickname.php:64 +msgid "No size." msgstr "" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Kullanıcı güncellenemedi." - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Yarat" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Geçersiz büyüklük." -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Bu takma ad ile yeni bir kullanıcı oluştur." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Avatar" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Yeni hesap oluştur" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "OpenID kullanıcısı için hesap oluşturuluyor" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "" -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Onaylanmış Jabber/Gtalk adresi." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Ayarlar" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Şu anda" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" msgstr "" -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Cevap eklenirken veritabanı hatası: %s" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Yükle" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Eposta" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Beklenmeğen form girdisi." -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Eposta adresi zaten var." +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Avatar güncellendi." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Eposta adresi onayı" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Avatar güncellemede hata." -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar güncellendi." + +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "Takma ad yok" + +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Böyle bir durum mesajı yok." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Kullanıcının profili yok." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s ve arkadaşları" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Böyle bir kullanıcı yok." + +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Bir takma ad veya eposta adresi girin." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "Böyle bir kullanıcı yok." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Giriş yapılmadı." + +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Kullanıcıyı OpenID'ye bağlarken hata oluştu." +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "Böyle bir kullanıcı yok." -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Kullanıcı bağlamada hata oluştu." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Avatar eklemede hata oluştu" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Yeni profil eklemede hata oluştu" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Uzak profil eklemede hata oluştu" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "" -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Adres onayını kaydetmede hata." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Böyle bir kullanıcı yok." -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Uzaktaki profili kaydetmede hata oluştu" +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "Zaten giriş yapmış durumdasıznız!" -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Profili kaydetmede hata oluştu." +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "" -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Kullanıcıyı kaydetmede hata oluştu." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Onay kodu yok." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Kullanıcı ayarlamada hata oluştu." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Onay kodu bulunamadı." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Profil güncellemede hata oluştu" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "O onay kodu sizin için değil!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Uzaktaki profili güncellemede hata oluştu" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Tanınmayan adres türü %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Onay kodu hatası." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "O adres daha önce onaylanmış." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Varolan takma ad" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Kullanıcı güncellenemedi." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "SSS" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Eposta onayı silinemedi." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Avatar güncellemede hata." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Adresi Onayla" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "%s için arkadaş güncellemeleri RSS beslemesi" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "\"%s\" adresi hesabınız için onaylandı." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Cevaplar için RSS Beslemesi: %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Yer" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Durum mesajları" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Böyle bir durum mesajı yok." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." msgstr "" -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " -"ve parolanızı tekrar giriniz." -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Tam İsim" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Tam isim çok uzun (azm: 255 karakter)." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Yardım" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Böyle bir durum mesajı yok." -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Başlangıç" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Başlangıç Sayfası" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Başlangıç sayfası adresi geçerli bir URL değil." - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM adresi" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM Ayarları" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Böyle bir belge yok." -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" msgstr "" -"Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " -"yapıp hesabınızı OpenID'nize bağlayabilirsiniz." -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -"Eğer hesabınıza bir OpenID eklemek istiyorsanız, aşağıdaki kutuya girin ve " -"\"Add\" düğmesine tıklayın." -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Eski parola yanlış" +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Kullanıcı güncellenemedi." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Yanlış kullanıcı adı veya parola." +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "Ayarlar kaydedildi." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +#: actions/emailsettings.php:60 +msgid "Email Settings" msgstr "" -"Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için " -"gerekli olan talimatlar yollanmıştır." - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Geçersiz avatar URLi '%s'" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid email address: %s" +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "%s Geçersiz başlangıç sayfası" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Geçersiz lisans URLi '%s'" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Adres" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Geçersiz durum mesajı" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Geçersiz durum adresi" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Kaldır" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Geçersiz durum adresi" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "'%s' geçersiz profil adresi." +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "İptal et" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" +#: actions/emailsettings.php:121 +msgid "Email Address" msgstr "" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Geçersiz büyüklük." - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Geçersiz kullanıcı adı veya parola." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Ekle" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" msgstr "" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Tercihler" + +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -"nedurum.com [GNU Affero General Public License](http://www.fsf.org/licensing/" -"licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " -"microbloglama yazılımının %s. versiyonunu kullanmaktadır." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID başka bir kullanıcıya ait." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -"Jabber veya Gtalk adresi: \"KullaniciAdi@ornek.org\" gibi. Öncelikle %s, IM " -"istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Yer" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Giriş" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Kaydet" -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Bir [OpenID](%%doc.openid%%) hesabı ile giriş yapın." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Tercihler kaydedildi." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " -"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " -"[OpenID](%%action.openidlogin%%) ile giriş yapın." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Çıkış" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Parolamı unuttum veya kaybettim" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Onay kodu eklenemedi." + +#: actions/emailsettings.php:358 +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 "" -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Üyelik başlangıcı" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "İptal etmek için beklenen onay yok." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "%s adli kullanicinin durum mesajlari" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Yanlış IM adresi." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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." +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Onaylama iptal edildi." + +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Durum mesajlarim ve dosyalarim şu lisans ile korunmaktadır: " +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Bu adres kaldırılmıştı." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Yeni takma ad" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Yeni durum mesajı" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "Böyle bir durum mesajı yok." -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Yeni parola" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Böyle bir durum mesajı yok." -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Takma ad" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Takma ad kullanımda. Başka bir tane deneyin." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." +#: 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 "" -"Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " -"kullanılamaz. " -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Takma ada izin verilmiyor." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Takip etmek istediğiniz kullanıcının takma adı" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Takma ad veya eposta" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "JabberID yok." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Yetkilendirme isteği yok!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Onay kodu yok." +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Yeni durum mesajı" -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "İçerik yok!" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Yeni durum mesajı" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Kullanıcı numarası yok" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Uzaktaki sunucu tarafından bir takma ad sağlanmadı." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Takma ad yok" +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "İptal etmek için beklenen onay yok." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Yerel aboneliği kullanabilirsiniz!" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Yetkilendirilmemiş." + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." msgstr "" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "OMB protokolünün bilinmeğen sürümü." -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "İstek bulunamadı!" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Uzaktaki profili güncellemede hata oluştu" -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Sonuç yok" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Böyle bir durum mesajı yok." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Böyle bir durum mesajı yok." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Böyle bir durum mesajı yok." -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Böyle bir OpenID yok." - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Böyle bir belge yok." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Böyle bir durum mesajı yok." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Kullanıcının profili yok." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Böyle bir geri alma kodu yok." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Bize o profili yollamadınız" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Böyle bir abonelik yok" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" msgstr "Böyle bir kullanıcı yok." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Gösterecek hiç kimse yok!" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Bir geri alma kodu değil." +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Geçersiz bir Jabber ID" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Geçersiz bir OpenID." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kullanıcı güncellenemedi." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Geçersiz bir eposta adresi." - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Geçersiz bir takma ad." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Tercihler kaydedildi." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Geçersiz profil adresi (yanlış hizmetler)." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Geçersiz profil adresi (tanımlanmış XRDS yok)." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Geçersiz profil adresi (YADIS belgesi yok)." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Bu bir resim dosyası değil ya da dosyada hata var" +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Avatar güncellendi." -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Yetkilendirilmemiş." +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Avatar güncellemede hata." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" msgstr "" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Giriş yapılmadı." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "%s için durum RSS beslemesi" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "Böyle bir kullanıcı yok." -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Durum mesajları" +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Eski parola" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID Hesabı Kurulumu" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID Girişi" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URLi" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID yetkilendirilmesi iptal edildi." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID yetkilendirmesi başarız oldu: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID hatası: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID kaldırıldı." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID ayarları" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " +"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " +"karakterden oluşmalı. " -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Kısmi yükleme." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Parola" +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Kişi Arama" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Parola ve onaylaması birbirini tutmuyor." +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Sonuç yok" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Parola geri alma isteği" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Parola kaydedildi." +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Parolalar birbirini tutmuyor." +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Yeni hesap oluştur" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Kişi Arama" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Kullanıcının profili yok." -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Kişisel" +#: actions/groupunblock.php:128 actions/unblock.php:108 +#, fuzzy +msgid "Error removing the block." +msgstr "Kullanıcıyı kaydetmede hata oluştu." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM Ayarları" + +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." msgstr "" +"Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " +"ayarlarinizi aşağıda yapın." -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Onaylanmış Jabber/Gtalk adresi." + +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"Bu adresten onay bekleniyor. Jabber/Google Talk hesabınızı ayrıntılı bilgi " +"içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" + +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM adresi" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " -"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " -"bulunmadıysanız \"İptal\" tuşuna basın. " +"Jabber veya Gtalk adresi: \"KullaniciAdi@ornek.org\" gibi. Öncelikle %s, IM " +"istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Tercihler" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Tercihler kaydedildi." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Gizlilik" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Durum mesajını kaydederken hata oluştu." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "JabberID yok." -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Profil" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Jabber işlemlerinde bir hata oluştu." -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "Profil Adresi" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Geçersiz bir Jabber ID" -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Profil ayarları" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Bu zaten sizin Jabber ID'niz." -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Profil bilinmiyor" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID başka bir kullanıcıya ait." -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Genel Durum Akış RSS Beslemesi" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " +"mesaj yollanabilmesi için onaylamanız gerekmektedir." -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Genel zaman çizgisi" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Bu sizin Jabber ID'niz değil." -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" msgstr "" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" msgstr "" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." msgstr "" -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Geri al" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Parolanı geri al" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Bilinmeye kullanıcı için geri alma kodu" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Kayıt" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" msgstr "" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" +#: actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Reddet" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Beni hatırla" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" msgstr "" -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Uzaktan abonelik" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Kaldır" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "OpenID'yi kaldır" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +#: actions/invite.php:162 msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"OpenID'nizi sistemden silerseniz giriş yapamazsınız! Eğer silmek " -"istiyorsanuz, önce yeni bir OpenID ekleyin" -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Cevaplar" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "%s için cevaplar" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Sıfırla" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Parolayı sıfırla" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "yukarıdaki parolanın aynısı" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Kaydet" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Ara" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Gönder" -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#: actions/invite.php:226 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +msgid "%1$s has invited you to join them on %2$s" msgstr "" -"%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri " -"boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı." -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/invite.php:228 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " -"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " -"karakterden oluşmalı. " -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Gönder" +#: actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "Zaten giriş yapmış durumdasıznız!" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" +#: actions/joingroup.php:128 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" +#: actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Bize o profili yollamadınız" -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Ayarlar" +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Ayarlar kaydedildi." +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "OpenID formu yaratılamadı: %s" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" msgstr "" -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Bir başkası zaten bu OpenID'ye sahip." - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Garip bir şey oldu." +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Zaten giriş yapılmış." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Geçersiz durum mesajı" -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Yanlış kullanıcı adı veya parola." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Kaynak" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Kullanıcı ayarlamada hata oluştu." -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "İstatistikler" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Giriş" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Kaydedilmiş OpenID bulunamadı." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Abone ol" +#: actions/login.php:243 +msgid "Login to site" +msgstr "" -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Abone olanlar" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Takma ad" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Takip talebine izin verildi" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Parola" -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Abonelik reddedildi." +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Beni hatırla" -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Abonelikler" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Dosya yüklemede sistem hatası." +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Parolamı unuttum veya kaybettim" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "" +"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " +"ve parolanızı tekrar giriniz." -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" +"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " +"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " +"[OpenID](%%action.openidlogin%%) ile giriş yapın." -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Metin arama" +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Bu OpenID size ait değil." +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "O adres daha önce onaylanmış." +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "O onay kodu sizin için değil!" +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Dosya çok büyük." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Bu zaten sizin Jabber ID'niz." +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" msgstr "" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Bu sizin Jabber ID'niz değil." +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "İçerik yok!" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." +#: actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Yanlış IM adresi." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" msgstr "" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Yeni durum mesajı" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "\"%s\" adresi hesabınız için onaylandı." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Bu adres kaldırılmıştı." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" +#: actions/newnotice.php:199 +#, fuzzy +msgid "Notice posted" +msgstr "Durum mesajları" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 +#: actions/noticesearch.php:68 +#, php-format msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" +"%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri " +"boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı." -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "%s adlı kullanıcının durumunu takip edenler" +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Metin arama" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Sizin durumunuzu takip edenler" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " \"%s\" için arama sonuçları" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 +#: actions/noticesearch.php:121 #, php-format -msgid "These are the people whose notices %s listens to." -msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 msgid "" -"These people are already users and you were automatically subscribed to them:" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Onay kodu çok eski. Lütfen tekrar başlayınız." - -#: ../lib/openid.php:195 lib/openid.php:206 +#: actions/noticesearch.php:124 +#, php-format msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Bu form kendiliğinden gönderilmeli. Eğer yönlendirilmediyseniz, OpenID " -"servis sağlayıcınıza yönlenmek için düğmeye basın." -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, php-format +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" + +#: actions/nudge.php:85 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 "" -"%s'a İlk defa giriş yapıyorsunuz. Bu yüzden OpenID'nizi hesabınıza " -"bağlamamız gerekli. Bunun için ya yeni bir hesap oluşturabilirsiniz ya da " -"varolan hesabınızı kullanabilirsiniz. " - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." +"This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." +#: actions/nudge.php:94 +msgid "Nudge sent" msgstr "" -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" +#: actions/nudge.php:97 +msgid "Nudge sent!" msgstr "" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/oembed.php:86 actions/shownotice.php:180 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" +msgid "%1$s's status on %2$s" +msgstr "%1$s'in %2$s'deki durum mesajları " -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Bağlan" -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" +#: actions/oembed.php:160 +msgid "Only " msgstr "" -"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." msgstr "" -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Beklenmeğen form girdisi." - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Beklemeğen parola sıfırlaması." +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "OMB protokolünün bilinmeğen sürümü." +#: actions/othersettings.php:60 +#, fuzzy +msgid "Other Settings" +msgstr "Ayarlar" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +#: actions/othersettings.php:71 +msgid "Manage various other options." msgstr "" -"Aksi ifade edilmedikce, bu sitedeki içerik yaratıcılarına aittir ve şu " -"lisans ile korunmaktadır: " - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Tanınmayan adres türü %s" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Aboneliği sonlandır" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Desteklenmeyen OMB sürümü" +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Desteklenmeyen görüntü dosyası biçemi." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil ayarları" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 +#: actions/outbox.php:58 #, php-format -msgid "Updates from %1$s and friends on %2$s!" +msgid "Outbox for %s - page %d" msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/outbox.php:61 #, php-format -msgid "Updates from %1$s on %2$s!" +msgid "Outbox for %s" msgstr "" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Yükle" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Buradan yeni bir \"avatar\" (kullanıcı resmi) yükleyin. Resminizi " -"yükledikten sonra düzenleyemezsiniz bu sebeple kare biçimine yakın olmasına " -"özen gösterin. Buna ek olarak, resminiz sitenin lisansına tabi olmalıdır. " -"Kendinize ait olan ve paylaşmak istediğiniz bir resim kullanın. " -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Parolayı değiştir" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Parolayı değiştir" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Parola kaydedildi." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Kullanıcının profili yok." +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Eski parola" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Kullanıcı takma adı" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Yeni parola" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 veya daha fazla karakter" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Onayla" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "N'aber %s?" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "yukaridaki parola ile aynı" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Değiştir" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "%s için yanlış resim türü" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "%s'de yanlış resim boyutu" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Parolalar birbirini tutmuyor." -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Eski parola yanlış" + +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Zaten bu OpenID'ye sahipsiniz!" +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Yeni parola kaydedilemedi." + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Parola kaydedildi." -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +#: actions/peoplesearch.php:52 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " +"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " +"karakterden oluşmalı. " -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Zaten giriş yapmış durumdasıznız!" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Kişi Arama" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" +#: actions/peopletag.php:70 +#, fuzzy, php-format +msgid "Not a valid people tag: %s" +msgstr "Geçersiz bir eposta adresi." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" msgstr "" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Parolanızı burada değiştirebilirsiniz. İyi bir tane seçin!" +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Geçersiz durum mesajı" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Sizde bir hesap açıp durumunuzdan arkadaşlarınızı haberdar edebilirsiniz." -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"\"Sil\" düğmesine basarak hesabınızdan eklediğiniz OpenID'yi silebilirsiniz." - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " -"ayarlarinizi aşağıda yapın." +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Profil ayarları" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -3056,2969 +1983,2154 @@ msgstr "" "Burada kişisel profilinizi güncelleyebilirsiniz, böylelikle insanlar sizin " "hakkınızda daha fazla bilgi sahibi olur." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Yerel aboneliği kullanabilirsiniz!" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Bize o profili yollamadınız" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#: actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "Profil bilinmiyor" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" +"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " +"verilmez" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Harika, sizi tanıdık. Simdi yeni parolanızı girin." - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "OpenID URLniz" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Tam İsim" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Bu sunucudaki takma adınız veya kaydedilmiş eposta adresiniz." +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Başlangıç Sayfası" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "" -"[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " -"sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "birkaç saniye önce" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "yaklaşık %d gün önce" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "yaklaşık %d saat önce" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "yaklaşık %d dakika önce" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "yaklaşık %d ay önce" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "yaklaşık bir gün önce" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "yaklaşık bir dakika önce" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "yaklaşık bir ay önce" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "yaklaşık bir yıl önce" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "yaklaşık bir saat önce" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "...cevap olarak" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Hakkında" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "cevapla" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Yer" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "yukaridaki parola ile aynı" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy -msgid "« After" -msgstr "« Sonra" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/profilesettings.php:144 +msgid "Language" msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" msgstr "" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "%s Geçersiz başlangıç sayfası" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Profil kaydedilemedi." -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" +#: actions/profilesettings.php:336 +#, fuzzy +msgid "Couldn't save tags." +msgstr "Profil kaydedilemedi." -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Ayarlar kaydedildi." -#: actions/invite.php:178 actions/invite.php:213 +#: actions/public.php:83 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Genel zaman çizgisi" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Genel zaman çizgisi" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/public.php:179 +#, php-format msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/public.php:186 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/outbox.php:28 actions/outbox.php:58 +#: actions/publictagcloud.php:63 #, php-format -msgid "Outbox for %s - page %d" +msgid "These are most popular recent tags on %s " msgstr "" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/publictagcloud.php:69 #, php-format -msgid "Outbox for %s" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Böyle bir geri alma kodu yok." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Bir geri alma kodu değil." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Bilinmeye kullanıcı için geri alma kodu" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Onay kodu hatası." -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Onay kodu çok eski. Lütfen tekrar başlayınız." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." msgstr "" -#: actions/register.php:216 -#, php-format +#: actions/recoverpassword.php:152 msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Bu sunucudaki takma adınız veya kaydedilmiş eposta adresiniz." -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Geri al" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Parolayı sıfırla" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Parolanı geri al" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Parola geri alma isteği" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " +#: actions/recoverpassword.php:213 +msgid "Unknown action" msgstr "" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "Unutmayın, 6 veya daha fazla karakter" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "yukarıdaki parolanın aynısı" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Sıfırla" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Bir takma ad veya eposta adresi girin." -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Adres onayını kaydetmede hata." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" +"Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için " +"gerekli olan talimatlar yollanmıştır." -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Beklemeğen parola sıfırlaması." -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Parola ve onaylaması birbirini tutmuyor." -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız." -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Onay kodu hatası." -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Kayıt" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Geçersiz bir eposta adresi." -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Eposta adresi zaten var." -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Geçersiz kullanıcı adı veya parola." -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 +#: actions/register.php:342 msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." +#: actions/register.php:429 +msgid "6 or more characters. Required." msgstr "" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Eposta" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" msgstr "" +"Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Durum mesajlarim ve dosyalarim şu lisans ile korunmaktadır: " -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "" +"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " +"numarası." -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Uzaktan abonelik" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Takip talebine izin verildi" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Kullanıcı takma adı" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Takip etmek istediğiniz kullanıcının takma adı" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Profil Adresi" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Abone ol" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Geçersiz profil adresi (YADIS belgesi yok)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." msgstr "" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "About: %s" -msgstr "" +msgid "Replies to %s" +msgstr "%s için cevaplar" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "%s için cevaplar" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s için durum RSS beslemesi" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 +#: actions/replies.php:198 #, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/replies.php:203 #, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%s için cevaplar" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Böyle bir durum mesajı yok." -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: lib/mail.php:147 lib/mail.php:289 -#, php-format +#: actions/showfavorites.php:205 msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"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 "" -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#: actions/showfavorites.php:207 #, php-format -msgid "New private message from %s" +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/showfavorites.php:211 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +msgid "%s group" msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" +#: actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "Böyle bir durum mesajı yok." -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +#, fuzzy +msgid "Note" +msgstr "Durum mesajları" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 +#: actions/showgroup.php:340 #, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s ve arkadaşları" +msgid "Notice feed for %s group (Atom)" +msgstr "%s için durum RSS beslemesi" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s için durum RSS beslemesi" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 #, fuzzy -msgid "Avatar settings" -msgstr "Ayarlar" +msgid "Members" +msgstr "Üyelik başlangıcı" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "İstatistikler" + +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Yarat" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/showgroup.php:448 +#, 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 "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/showgroup.php:454 +#, 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 "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -#, fuzzy -msgid "Lost our file." -msgstr "Böyle bir durum mesajı yok." +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." msgstr "" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" msgstr "" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" msgstr "" -#: actions/block.php:111 actions/block.php:134 +#: actions/shownotice.php:90 #, fuzzy -msgid "Block user" -msgstr "Böyle bir kullanıcı yok." +msgid "Notice deleted." +msgstr "Durum mesajları" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" msgstr "" -#: actions/block.php:162 actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "Zaten giriş yapmış durumdasıznız!" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" msgstr "" -#: actions/confirmaddress.php:159 +#: actions/showstream.php:122 #, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "Bu adres kaldırılmıştı." +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:148 #, php-format -msgid "Edit %s group" +msgid "FOAF for %s" msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "Takma ad yok" - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "Böyle bir durum mesajı yok." - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/showstream.php:198 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -"Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " -"kullanılamaz. " -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "Kullanıcı güncellenemedi." +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" -#: actions/editgroup.php:226 actions/editgroup.php:269 +#: actions/smssettings.php:91 #, fuzzy -msgid "Options saved." -msgstr "Ayarlar kaydedildi." - -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Onay kodu hatası." +msgid "SMS is not available." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/smssettings.php:130 +msgid "Confirmation code" msgstr "" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "Eposta adresi zaten var." - -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " -"mesaj yollanabilmesi için onaylamanız gerekmektedir." -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "İçerik yok!" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -#, fuzzy -msgid "After" -msgstr "« Sonra" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 +#: actions/smssettings.php:347 #, fuzzy -msgid "Before" -msgstr "Önce »" +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 "O onay kodu sizin için değil!" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "%s için arkadaş güncellemeleri RSS beslemesi" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/smssettings.php:476 #, php-format -msgid "Friends already using %s:" +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 "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: actions/facebookremove.php:56 +#: actions/subedit.php:70 #, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "Kullanıcı güncellenemedi." +msgid "You are not subscribed to that profile." +msgstr "Bize o profili yollamadınız" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" +#: actions/subedit.php:83 +#, fuzzy +msgid "Could not save subscription." +msgstr "Abonelik oluşturulamadı." -#: actions/facebooksettings.php:67 +#: actions/subscribe.php:55 #, fuzzy -msgid "Sync preferences saved." -msgstr "Tercihler kaydedildi." +msgid "Not a local user." +msgstr "Böyle bir kullanıcı yok." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" +#: actions/subscribe.php:69 +#, fuzzy +msgid "Subscribed" +msgstr "Abone ol" + +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Abone olanlar" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" msgstr "" -#: actions/facebooksettings.php:106 -#, fuzzy -msgid "Prefix" -msgstr "Profil" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Sizin durumunuzu takip edenler" + +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "%s adlı kullanıcının durumunu takip edenler" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscribers.php:110 #, php-format -msgid "If you would like %s to automatically update " +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/facebooksettings.php:147 -#, fuzzy -msgid "Sync preferences" -msgstr "Tercihler" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -#, fuzzy -msgid "Popular notices" -msgstr "Böyle bir durum mesajı yok." - -#: actions/favorited.php:67 +#: actions/subscriptions.php:52 #, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "Böyle bir durum mesajı yok." +msgid "%s subscriptions" +msgstr "Bütün abonelikler" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "Bütün abonelikler" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar" -#: actions/featured.php:71 +#: actions/subscriptions.php:69 #, php-format -msgid "Featured users, page %d" -msgstr "" +msgid "These are the people whose notices %s listens to." +msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" -#: actions/featured.php:99 +#: actions/subscriptions.php:121 #, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" +#: actions/subscriptions.php:194 +#, fuzzy +msgid "Jabber" +msgstr "JabberID yok." -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 +#: actions/tagother.php:33 #, fuzzy -msgid "Logo updated." -msgstr "Avatar güncellendi." +msgid "Not logged in" +msgstr "Giriş yapılmadı." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 +#: actions/tagother.php:39 #, fuzzy -msgid "Failed updating logo." -msgstr "Avatar güncellemede hata." +msgid "No id argument." +msgstr "Böyle bir belge yok." -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/tagother.php:65 #, php-format -msgid "%s group members" +msgid "Tag %s" msgstr "" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +#, fuzzy +msgid "User profile" +msgstr "Kullanıcının profili yok." -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Yeni hesap oluştur" - -#: actions/groupsearch.php:57 -#, fuzzy, php-format +#: actions/tagother.php:193 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " -"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " -"karakterden oluşmalı. " -#: actions/groupsearch.php:63 actions/groupsearch.php:58 +#: actions/tagother.php:200 #, fuzzy -msgid "Group search" -msgstr "Kişi Arama" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" +msgid "Could not save tags." +msgstr "Avatar bilgisi kaydedilemedi" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." - -#: actions/imsettings.php:321 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Onay kodu yok." - -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -#, fuzzy -msgid "You are already a member of that group" -msgstr "Zaten giriş yapmış durumdasıznız!" +msgid "Notices tagged with %s, page %d" +msgstr "%s adli kullanicinin durum mesajlari" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "Sunucuya yönlendirme yapılamadı: %s" - -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" +#: actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s için durum RSS beslemesi" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 +#: actions/tagrss.php:35 #, fuzzy -msgid "No such group." +msgid "No such tag." msgstr "Böyle bir durum mesajı yok." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -#, fuzzy -msgid "You are not a member of that group." -msgstr "Bize o profili yollamadınız" - -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: actions/twitapitrends.php:87 +msgid "API method under construction." msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile id in request." +msgstr "Yetkilendirme isteği yok!" + +#: actions/unsubscribe.php:84 +msgid "No profile with that id." msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "OpenID formu yaratılamadı: %s" +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "Aboneliği sonlandır" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "%s left group %s" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" -msgstr "" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Takip isteğini onayla" -#: actions/microsummary.php:69 -msgid "No current status" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " -#: actions/newgroup.php:53 -msgid "New group" +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Kabul et" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "Could not create group." -msgstr "Avatar bilgisi kaydedilemedi" +msgid "Subscribe to this user" +msgstr "Takip talebine izin verildi" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "Abonelik oluşturulamadı." +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Reddet" -#: actions/newmessage.php:119 actions/newnotice.php:132 +#: actions/userauthorization.php:212 #, fuzzy -msgid "That's too long. " -msgstr "Dosya çok büyük." +msgid "Reject this subscription" +msgstr "Bütün abonelikler" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Yetkilendirme isteği yok!" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -#, fuzzy -msgid "Notice posted" -msgstr "Durum mesajları" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Takip talebine izin verildi" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -#: actions/nudge.php:85 +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Abonelik reddedildi." + +#: actions/userauthorization.php:261 msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: actions/nudge.php:94 -msgid "Nudge sent" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/nudge.php:97 -msgid "Nudge sent!" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy -msgid "OpenID login" -msgstr "OpenID Girişi" - -#: actions/openidsettings.php:128 -#, fuzzy -msgid "Removing your only OpenID " -msgstr "OpenID'yi kaldır" - -#: actions/othersettings.php:60 -#, fuzzy -msgid "Other Settings" -msgstr "Ayarlar" - -#: actions/othersettings.php:71 -msgid "Manage various other options." +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/othersettings.php:112 -#, fuzzy -msgid "Service" -msgstr "Ara" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -#, fuzzy -msgid "URL shortening service is too long (max 50 chars)." -msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." - -#: actions/passwordsettings.php:69 -#, fuzzy -msgid "Change your password." -msgstr "Parolayı değiştir" - -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -#, fuzzy -msgid "Password change" -msgstr "Parola kaydedildi." - -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "Geçersiz bir eposta adresi." +msgid "Can’t read avatar URL ‘%s’." +msgstr "Avatar URLi '%s' okunamıyor" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "%s için yanlış resim türü" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Kullanıcı numarası yok" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #, fuzzy -msgid "Profile information" -msgstr "Profil bilinmiyor" +msgid "Profile design" +msgstr "Profil ayarları" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "%s Geçersiz başlangıç sayfası" +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "Profil kaydedilemedi." +#: actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 +#: actions/usergroups.php:153 #, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Genel zaman çizgisi" +msgid "%s is not a member of any group." +msgstr "Bize o profili yollamadınız" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/public.php:220 +#: classes/File.php:137 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "Genel Durum Akış RSS Beslemesi" - -#: actions/publictagcloud.php:63 +#: classes/File.php:147 #, php-format -msgid "These are most popular recent tags on %s " +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "" - -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." - -#: actions/register.php:286 -msgid "With this form you can create " +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " +#: classes/Message.php:55 +msgid "Could not insert message." msgstr "" -"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " -"verilmez" -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -"Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" msgstr "" -"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" - -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: actions/register.php:410 +#: classes/Notice.php:179 #, fuzzy -msgid "Where you are, like \"City, " -msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" +msgid "Problem saving notice. Too long." +msgstr "Durum mesajını kaydederken hata oluştu." -#: actions/register.php:432 +#: classes/Notice.php:183 #, fuzzy -msgid " except this private data: password, " -msgstr "" -"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " -"numarası." +msgid "Problem saving notice. Unknown user." +msgstr "Durum mesajını kaydederken hata oluştu." -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "%s için cevaplar" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Durum mesajını kaydederken hata oluştu." -#: actions/showfavorites.php:79 +#: classes/Notice.php:1120 #, php-format -msgid "%s favorite notices, page %d" -msgstr "" +msgid "DB error inserting reply: %s" +msgstr "Cevap eklenirken veritabanı hatası: %s" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#: classes/User.php:333 #, php-format -msgid "%s group" +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" + +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 +#: lib/accountsettingsaction.php:112 #, fuzzy -msgid "Group profile" -msgstr "Böyle bir durum mesajı yok." +msgid "Upload an avatar" +msgstr "Avatar güncellemede hata." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -#, fuzzy -msgid "Note" -msgstr "Durum mesajları" - -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "%s için durum RSS beslemesi" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Members" -msgstr "Üyelik başlangıcı" +msgid "Design your profile" +msgstr "Kullanıcının profili yok." -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: lib/accountsettingsaction.php:123 +msgid "Other" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/showgroup.php:378 +#: lib/action.php:144 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "%s - %s" msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" +#: lib/action.php:424 +msgid "Primary site navigation" msgstr "" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Profil" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "Kullanıcının profili yok." +#: lib/action.php:430 +msgid "Home" +msgstr "Başlangıç" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "" +#: lib/action.php:432 +#, fuzzy +msgid "Account" +msgstr "Hakkında" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "" +#: lib/action.php:435 +msgid "Connect" +msgstr "Bağlan" -#: actions/showstream.php:451 lib/profileaction.php:157 +#: lib/action.php:435 #, fuzzy -msgid "All subscribers" -msgstr "Abone olanlar" +msgid "Connect to services" +msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" msgstr "" -#: actions/showstream.php:542 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " +msgid "Invite friends and colleagues to join you on %s" msgstr "" -"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " -"verilmez" - -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "O onay kodu sizin için değil!" +#: lib/action.php:445 +msgid "Logout" +msgstr "Çıkış" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/subedit.php:70 +#: lib/action.php:450 #, fuzzy -msgid "You are not subscribed to that profile." -msgstr "Bize o profili yollamadınız" +msgid "Create an account" +msgstr "Yeni hesap oluştur" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "Abonelik oluşturulamadı." +#: lib/action.php:453 +msgid "Login to the site" +msgstr "" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "Böyle bir kullanıcı yok." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Yardım" -#: actions/subscribe.php:69 +#: lib/action.php:456 #, fuzzy -msgid "Subscribed" -msgstr "Abone ol" +msgid "Help me!" +msgstr "Yardım" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "Abone olanlar" +#: lib/action.php:459 +msgid "Search" +msgstr "Ara" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/subscribers.php:63 +#: lib/action.php:480 #, fuzzy -msgid "These are the people who listen to " -msgstr "%s adlı kullanıcının durumunu takip edenler" - -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "%s adlı kullanıcının durumunu takip edenler" - -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Bütün abonelikler" +msgid "Site notice" +msgstr "Yeni durum mesajı" -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "Bütün abonelikler" +#: lib/action.php:546 +msgid "Local views" +msgstr "" -#: actions/subscriptions.php:65 +#: lib/action.php:612 #, fuzzy -msgid "These are the people whose notices " -msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" - -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "%s adlı kullanıcının durumunu takip edenler" +msgid "Page notice" +msgstr "Yeni durum mesajı" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 +#: lib/action.php:714 #, fuzzy -msgid "Jabber" -msgstr "JabberID yok." +msgid "Secondary site navigation" +msgstr "Abonelikler" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "%s adli kullanicinin durum mesajlari" +#: lib/action.php:721 +msgid "About" +msgstr "Hakkında" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" +#: lib/action.php:723 +msgid "FAQ" +msgstr "SSS" -#: actions/tagother.php:33 -#, fuzzy -msgid "Not logged in" -msgstr "Giriş yapılmadı." +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "Böyle bir belge yok." +#: lib/action.php:730 +msgid "Privacy" +msgstr "Gizlilik" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" +#: lib/action.php:732 +msgid "Source" +msgstr "Kaynak" -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" +#: lib/action.php:734 +msgid "Contact" +msgstr "İletişim" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 +#: lib/action.php:767 +#, php-format msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " +"hazırlanan anında mesajlaşma ağıdır. " -#: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy -msgid "Could not save tags." -msgstr "Avatar bilgisi kaydedilemedi" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"nedurum.com [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " +"microbloglama yazılımının %s. versiyonunu kullanmaktadır." -#: actions/tagrss.php:35 +#: lib/action.php:785 #, fuzzy -msgid "No such tag." -msgstr "Böyle bir durum mesajı yok." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "%s adli kullanicinin durum mesajlari" +msgid "Site content license" +msgstr "Yeni durum mesajı" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "İstek bulunamadı!" - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" +#: lib/action.php:1062 +#, fuzzy +msgid "After" +msgstr "« Sonra" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 +#: lib/action.php:1070 #, fuzzy -msgid "Twitter password" -msgstr "Yeni parola" +msgid "Before" +msgstr "Önce »" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "Eposta onayı silinemedi." - -#: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy -msgid "Error removing the block." -msgstr "Kullanıcıyı kaydetmede hata oluştu." - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "Yetkilendirme isteği yok!" - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "Unsubscribed" -msgstr "Aboneliği sonlandır" +msgid "Provider" +msgstr "Profil" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -#, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "Durum mesajını kaydederken hata oluştu." - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "Avatar güncellemede hata." - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: lib/channel.php:221 +msgid "Command failed" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: lib/command.php:88 #, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" +msgid "Could not find a user with nickname %s" +msgstr "Kullanıcı güncellenemedi." -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Account" -msgstr "Hakkında" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Yeni hesap oluştur" - -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "Böyle bir OpenID yok." - -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Yardım" - -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "Yeni durum mesajı" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Yeni durum mesajı" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "Abonelikler" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: lib/command.php:324 +#, php-format +msgid "Homepage: %s" msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: lib/command.php:327 +#, php-format +msgid "About: %s" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "Böyle bir kullanıcı yok." - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: lib/facebookaction.php:268 +#: lib/command.php:431 #, php-format -msgid "To use the %s Facebook Application you need to login " +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "Yeni hesap oluştur" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "Genel" +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "%s için cevaplar" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/command.php:441 #, fuzzy -msgid "Favor this notice" -msgstr "Böyle bir durum mesajı yok." - -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" +msgid "Error saving notice." +msgstr "Durum mesajını kaydederken hata oluştu." -#: lib/galleryaction.php:121 -msgid "Filter tags" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -#, fuzzy -msgid "URL of the homepage or blog of the group or topic" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" - -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "Abonelikler" - -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -#, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "Çıkış" +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "OpenID formu yaratılamadı: %s" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: lib/command.php:602 #, php-format -msgid "Add or edit %s logo" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" +#: lib/command.php:613 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" - -#: lib/joinform.php:114 +#: lib/common.php:191 #, fuzzy -msgid "Join" -msgstr "Giriş" +msgid "No configuration file found. " +msgstr "Onay kodu yok." -#: lib/leaveform.php:114 -#, fuzzy -msgid "Leave" -msgstr "Kaydet" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "Geçersiz kullanıcı adı veya parola." +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "Yeni hesap oluştur" +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s %2$s'da durumunuzu takip ediyor" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Yükle" + +#: lib/designsettings.php:109 msgid "" -"Bio: %s\n" -"\n" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s %2$s'da durumunuzu takip ediyor" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +#: lib/designsettings.php:170 #, fuzzy -msgid "Send a notice" -msgstr "Yeni durum mesajı" +msgid "Change colours" +msgstr "Parolayı değiştir" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 +#: lib/designsettings.php:191 #, fuzzy -msgid "Available characters" -msgstr "6 veya daha fazla karakter" +msgid "Content" +msgstr "Bağlan" -#: lib/noticelist.php:426 lib/noticelist.php:429 +#: lib/designsettings.php:204 #, fuzzy -msgid "in reply to" -msgstr "...cevap olarak" +msgid "Sidebar" +msgstr "Ara" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 +#: lib/designsettings.php:230 #, fuzzy -msgid "Reply" -msgstr "cevapla" +msgid "Links" +msgstr "Giriş" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Genel" +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Böyle bir durum mesajı yok." -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy -msgid "Popular" -msgstr "Kişi Arama" - -#: lib/searchgroupnav.php:82 -#, fuzzy -msgid "Notice" -msgstr "Durum mesajları" - -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "Uzaktan abonelik" - -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "Uzaktan abonelik" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" +#: lib/galleryaction.php:121 +msgid "Filter tags" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#: lib/galleryaction.php:131 +msgid "All" msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -#, fuzzy -msgid "User has blocked you." -msgstr "Kullanıcının profili yok." +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -#, fuzzy -msgid "Subscribe to this user" -msgstr "Takip talebine izin verildi" +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: lib/galleryaction.php:143 +msgid "Go" msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 +#: lib/groupeditform.php:163 #, fuzzy -msgid "Unblock this user" -msgstr "Böyle bir kullanıcı yok." - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" +msgid "URL of the homepage or blog of the group or topic" msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#: lib/groupeditform.php:170 #, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "%s için arkadaş güncellemeleri RSS beslemesi" +msgid "Describe the group or topic in %d characters" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "%s için arkadaş güncellemeleri RSS beslemesi" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "%s için arkadaş güncellemeleri RSS beslemesi" - -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: lib/groupeditform.php:172 #, fuzzy -msgid "You and friends" -msgstr "%s ve arkadaşları" - -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" +msgid "Description" +msgstr "Abonelikler" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: lib/groupeditform.php:179 #, fuzzy -msgid "Avatar deleted." -msgstr "Avatar güncellendi." - -#: actions/block.php:129 actions/block.php:136 msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Böyle bir kullanıcı yok." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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 "" +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Böyle bir kullanıcı yok." -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: lib/groupnav.php:107 #, php-format -msgid "Okay, do it!" +msgid "Edit %s group properties" msgstr "" -#: actions/facebooksettings.php:124 +#: lib/groupnav.php:112 +#, fuzzy +msgid "Logo" +msgstr "Çıkış" + +#: lib/groupnav.php:113 #, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +msgid "Add or edit %s logo" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: lib/groupnav.php:119 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +msgid "Add or edit %s design" msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "%s adli kullanicinin durum mesajlari" - -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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." +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" msgstr "" -"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " -"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " -"karakterden oluşmalı. " -#: actions/groups.php:90 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +msgid "Tags in %s group's notices" msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " \"%s\" için arama sonuçları" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" -#: actions/openidlogin.php:66 +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +msgid "That file is too big. The maximum file size is %s." msgstr "" -"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " -"ve parolanızı tekrar giriniz." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Genel Durum Akış RSS Beslemesi" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Genel Durum Akış RSS Beslemesi" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Genel Durum Akış RSS Beslemesi" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Kısmi yükleme." -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Dosya yüklemede sistem hatası." -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Bu bir resim dosyası değil ya da dosyada hata var" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Desteklenmeyen görüntü dosyası biçemi." -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: lib/imagefile.php:118 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " -"numarası." +msgid "Lost our file." +msgstr "Böyle bir durum mesajı yok." -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Yarat" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 +#: lib/jabber.php:192 #, 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 "" +msgid "notice id: %s" +msgstr "Yeni durum mesajı" -#: actions/showstream.php:147 +#: lib/joinform.php:114 #, fuzzy -msgid "Your profile" -msgstr "Böyle bir durum mesajı yok." - -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "Profil" - -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "%s için durum RSS beslemesi" - -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "%s için durum RSS beslemesi" - -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 -#, fuzzy, php-format -msgid "Notice feed for %s (Atom)" -msgstr "%s için durum RSS beslemesi" +msgid "Join" +msgstr "Giriş" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, php-format -msgid "FOAF for %s" -msgstr "" +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Kaydet" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 +#: lib/logingroupnav.php:80 #, fuzzy -msgid "Edit Avatar" -msgstr "Avatar" +msgid "Login with a username and password" +msgstr "Geçersiz kullanıcı adı veya parola." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 +#: lib/logingroupnav.php:86 #, fuzzy -msgid "Edit profile settings" -msgstr "Profil ayarları" +msgid "Sign up for a new account" +msgstr "Yeni hesap oluştur" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format +#: lib/mailbox.php:139 msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +"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 "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "O onay kodu sizin için değil!" +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Eposta adresi onayı" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: lib/mail.php:174 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"Hey, %s.\n" "\n" -"In case you forgot, you can see the text of your notice here:\n" +"Someone just entered this email address on %s.\n" "\n" -"%3$s\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" "\n" -"You can see the list of %1$s's favorites here:\n" +"\t%s\n" "\n" -"%4$s\n" +"If not, just ignore this message.\n" "\n" -"Faithfully yours,\n" -"%5$s\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Böyle bir kullanıcı yok." - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#: lib/mail.php:240 #, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Eposta onayı silinemedi." - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " -"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " -"bulunmadıysanız \"İptal\" tuşuna basın. " - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" +"\n" +"\t%3$s\n" +"\n" +"Kendisini durumsuz bırakmayın!,\n" +"%4$s.\n" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: lib/mail.php:253 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +msgid "Location: %s\n" msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: lib/mail.php:257 +#, 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 "" -"Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " -"yapıp hesabınızı OpenID'nize bağlayabilirsiniz." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" +"Bio: %s\n" +"\n" msgstr "" -#: lib/imagefile.php:75 +#: lib/mail.php:285 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: lib/mail.php:288 #, php-format msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" +"You have a new posting address on %1$s.\n" "\n" -"\t%s\n" +"Send email to %2$s to post new messages.\n" "\n" -"If not, just ignore this message.\n" +"More email instructions at %3$s.\n" "\n" -"Thanks for your time, \n" -"%s\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s durum" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" -"\n" -"\t%3$s\n" -"\n" -"Kendisini durumsuz bırakmayın!,\n" -"%4$s.\n" #: lib/mail.php:466 #, php-format @@ -6030,12 +4142,17 @@ msgid "" "\n" "%3$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%4$s\n" msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + #: lib/mail.php:513 #, php-format msgid "" @@ -6049,21 +4166,47 @@ msgid "" "\n" "%4$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" +"Do not reply to this email. It will not get to them.\n" "\n" "With kind regards,\n" "%5$s\n" msgstr "" -#: lib/mail.php:598 lib/mail.php:600 +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 #, php-format -msgid "%s sent a notice to your attention" +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: lib/mail.php:613 #, php-format msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" "The notice is here:\n" "\n" @@ -6073,1568 +4216,427 @@ msgid "" "\n" "\t%4$s\n" "\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy -msgid "Search site" -msgstr "Ara" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" -#: lib/section.php:106 -msgid "More..." +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/all.php:80 actions/all.php:127 -#, php-format +#: lib/mediafile.php:147 msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Böyle bir belge yok." +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Sunucuya yönlendirme yapılamadı: %s" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" -#: actions/block.php:150 +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy -msgid "Block this user from this group" -msgstr "Böyle bir kullanıcı yok." +msgid "Could not determine file's mime-type!" +msgstr "Kullanıcı güncellenemedi." -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Kullanıcının profili yok." +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s ve arkadaşları" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Böyle bir kullanıcı yok." +#: lib/messageform.php:146 +msgid "To" +msgstr "" -#: actions/conversation.php:99 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "Conversation" -msgstr "Yer" +msgid "Available characters" +msgstr "6 veya daha fazla karakter" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#: lib/noticeform.php:145 #, fuzzy -msgid "Do not delete this notice" -msgstr "Böyle bir durum mesajı yok." +msgid "Send a notice" +msgstr "Yeni durum mesajı" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/noticeform.php:158 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "%s Geçersiz başlangıç sayfası" +msgid "What's up, %s?" +msgstr "N'aber %s?" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Takma ad kullanımda. Başka bir tane deneyin." +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#: lib/noticelist.php:478 #, fuzzy -msgid "Could not create aliases." -msgstr "Avatar bilgisi kaydedilemedi" +msgid "in context" +msgstr "İçerik yok!" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/noticelist.php:498 +msgid "Reply to this notice" 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 -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - -#: actions/file.php:34 +#: lib/noticelist.php:499 #, fuzzy -msgid "No notice id" -msgstr "Yeni durum mesajı" +msgid "Reply" +msgstr "cevapla" -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Yeni durum mesajı" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" -#: actions/file.php:42 -msgid "No attachments" +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" msgstr "" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Geçersiz bir takma ad." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Yeni profil eklemede hata oluştu" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Avatar eklemede hata oluştu" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Uzak profil eklemede hata oluştu" -#: actions/groupblock.php:95 +#: lib/oauthstore.php:345 #, fuzzy -msgid "User is already blocked from group." -msgstr "Kullanıcının profili yok." +msgid "Duplicate notice" +msgstr "Yeni durum mesajı" -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Bize o profili yollamadınız" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Yeni abonelik eklenemedi." -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Böyle bir kullanıcı yok." +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Kişisel" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Cevaplar" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" msgstr "" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Kullanıcı güncellenemedi." +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" msgstr "" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Abonelikler" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Bütün abonelikler" + +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Abone olanlar" + +#: lib/profileaction.php:157 #, fuzzy -msgid "Design preferences saved." -msgstr "Tercihler kaydedildi." +msgid "All subscribers" +msgstr "Abone olanlar" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Üyelik başlangıcı" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "Sonuç yok" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Genel" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +#: lib/publicgroupnav.php:82 +msgid "User groups" msgstr "" -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/groupunblock.php:95 +#: lib/publicgroupnav.php:92 #, fuzzy -msgid "User is not blocked from group." -msgstr "Kullanıcının profili yok." +msgid "Popular" +msgstr "Kişi Arama" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Ara" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Ara" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" +#: lib/searchgroupnav.php:82 +#, fuzzy +msgid "Notice" +msgstr "Durum mesajları" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" msgstr "" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Uzaktan abonelik" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "Uzaktan abonelik" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#: lib/subs.php:52 #, fuzzy -msgid "Couldn't save file." -msgstr "Profil kaydedilemedi." +msgid "User has blocked you." +msgstr "Kullanıcının profili yok." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" + +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Abonelik silinemedi." + +#: lib/tagcloudsection.php:56 +msgid "None" msgstr "" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Aboneliği sonlandır" -#: actions/openidsettings.php:70 -#, fuzzy, 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%%) tek hesap ile bir çok siteye giriş yapmanızı " -"sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/userprofile.php:248 #, fuzzy -msgid "View profile designs" +msgid "Edit profile settings" msgstr "Profil ayarları" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" msgstr "" -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: lib/userprofile.php:273 +msgid "Message" msgstr "" -"Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş " -"olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Harika, sizi tanıdık. Simdi yeni parolanızı girin." -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Parola geri alma isteği" - -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Onay kodu hatası." +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "birkaç saniye önce" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Takip talebine izin verildi" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "yaklaşık bir dakika önce" -#: actions/replies.php:179 actions/replies.php:198 +#: lib/util.php:848 #, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +msgid "about %d minutes ago" +msgstr "yaklaşık %d dakika önce" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "yaklaşık bir saat önce" -#: actions/replies.php:186 actions/replies.php:205 +#: lib/util.php:852 #, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Böyle bir durum mesajı yok." - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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 "" +msgid "about %d hours ago" +msgstr "yaklaşık %d saat önce" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "yaklaşık bir gün önce" -#: actions/showfavorites.php:176 +#: lib/util.php:856 #, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "%s için durum RSS beslemesi" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "%s için durum RSS beslemesi" +msgid "about %d days ago" +msgstr "yaklaşık %d gün önce" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "%s için durum RSS beslemesi" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "yaklaşık bir ay önce" -#: actions/showgroup.php:446 actions/showgroup.php:454 +#: lib/util.php:860 #, 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 "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -#, fuzzy -msgid "Not a local notice" -msgstr "Böyle bir kullanıcı yok." +msgid "about %d months ago" +msgstr "yaklaşık %d ay önce" -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "yaklaşık bir yıl önce" -#: actions/showstream.php:121 actions/showstream.php:122 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "%s için durum RSS beslemesi" - -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -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 "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" +msgid "%s is not a valid color!" +msgstr "Başlangıç sayfası adresi geçerli bir URL değil." -#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#: lib/webcolor.php:123 #, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s %2$s'da durumunuzu takip ediyor" - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "%s için durum RSS beslemesi" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "%s için durum RSS beslemesi" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Kullanıcı güncellenemedi." - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." msgstr "" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "Kullanıcı güncellenemedi." - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s'in %2$s'deki durum mesajları " - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "%s adli kullanicinin durum mesajlari" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Bütün abonelikler" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Profil ayarları" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Bize o profili yollamadınız" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Durum mesajını kaydederken hata oluştu." - -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Kullanıcının profili yok." - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Profil" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Yükle" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Parolayı değiştir" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Bağlan" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Ara" - -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Giriş" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Böyle bir kullanıcı yok." - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Böyle bir kullanıcı yok." - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "İçerik yok!" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Ara" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Başlangıç sayfası adresi geçerli bir URL değil." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Böyle bir durum mesajı yok." - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "" -"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Sunucuya yönlendirme yapılamadı: %s" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Zaten giriş yapmış durumdasıznız!" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Sunucuya yönlendirme yapılamadı: %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Bize o profili yollamadınız" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "OpenID formu yaratılamadı: %s" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Profil" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "Bize o profili yollamadınız" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Avatar güncellendi." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "" -"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Desteklenmeyen görüntü dosyası biçemi." - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." - -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "%s adli kullanicinin durum mesajlari" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Yetkilendirilmemiş." - -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "OMB protokolünün bilinmeğen sürümü." - -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Böyle bir durum mesajı yok." - -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Böyle bir durum mesajı yok." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "%s adli kullanicinin durum mesajlari" - -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" - -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " -"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " -"[OpenID](%%action.openidlogin%%) ile giriş yapın." - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "%s adli kullanicinin durum mesajlari" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" - -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "Bağlan" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" - -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." - -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Geçersiz profil adresi (YADIS belgesi yok)." - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "%s için durum RSS beslemesi" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "%s için durum RSS beslemesi" - -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "%s için durum RSS beslemesi" - -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "%s için cevaplar" - -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "%s için arkadaş güncellemeleri RSS beslemesi" - -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "%s için arkadaş güncellemeleri RSS beslemesi" - -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "%s için arkadaş güncellemeleri RSS beslemesi" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "%s için durum RSS beslemesi" - -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "Durum mesajları" - -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" - -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "%s için durum RSS beslemesi" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " -"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " -"bulunmadıysanız \"İptal\" tuşuna basın. " - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Avatar URLi '%s' okunamıyor" - -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "%s için yanlış resim türü" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Sunucuya yönlendirme yapılamadı: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Yeni durum mesajı" - -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "Kullanıcı güncellenemedi." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "%s için cevaplar" - -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Durum mesajını kaydederken hata oluştu." - -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "Onay kodu yok." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" - -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Yeni durum mesajı" - -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%1$s %2$s'da durumunuzu takip ediyor" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "Kullanıcı güncellenemedi." - -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Yeni durum mesajı" - -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Geçersiz durum mesajı" - -#: lib/command.php:597 -#, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "OpenID formu yaratılamadı: %s" - -#: lib/command.php:602 -#, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" -msgstr "" - -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "" -"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" - -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" diff --git a/locale/uk/LC_MESSAGES/statusnet.mo b/locale/uk/LC_MESSAGES/statusnet.mo index f661c48a3..9e23cdc7f 100644 Binary files a/locale/uk/LC_MESSAGES/statusnet.mo and b/locale/uk/LC_MESSAGES/statusnet.mo differ diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index e24f37a6a..7890af28f 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -5,4640 +5,1832 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:20+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:58:58+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Потік пошуку для \"%s\"" - -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " -"номер." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " від " - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Оновленні відповіді %2$s" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s (%3$s).\n" -"\n" -"%2$s це сервіс мікроблогів що дозволяє вам знаходитись у курсі подій, які " -"відбуваються з вашими знайомими і тими особами, якими ви цікавитесь.\n" -"\n" -"Також ви маєте можливість ділитись новинами про себе, своїми думками, " -"подіями у житті, розміщуючи все це у режимі \"онлайн\" для своїх знайомих та " -"друзів. А ще це чудовий спосіб зустріти нових друзів зі спільними " -"інтересами.\n" -"\n" -"%1$s говорить:\n" -"\n" -"%4$s\n" -"\n" -"Ви можете переглянути профіль %1$s на %2$s тут:\n" -"\n" -"%5$s\n" -"\n" -"Якщо ви виявили бажання спробувати користуватись даним сервісом, то " -"перейдіть за посиланням внизу, аби погодитись із запрошенням.\n" -"\n" -"%6$s\n" -"\n" -"Якщо ж ні, то просто проігноруйте це повідомлення. Дякуємо за розуміння та " -"витрачений час.\n" -"\n" -"Щиро ваші, %2$s\n" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s." - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Щиро ваші,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s оновив(ла) цю відповідь на оновлення від %2$s / %3$s." - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s має статус на %2$s" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Такого тегу немає." -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Такого користувача немає." -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:84 #, php-format -msgid "%s Public Stream" -msgstr "%s Загальний потік" +msgid "%s and friends, page %d" +msgstr "%s з друзями, сторінка %d" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format msgid "%s and friends" msgstr "%s з друзями" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "%s загальна хронологія" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Живлення для друзів %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s статус" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Живлення для друзів %s" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s хронологія" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Живлення для друзів %s" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/all.php:127 #, php-format -msgid "%s updates from everyone!" -msgstr "%s оновлення від всіх!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " -"інструкції щодо підтвердження вашої електронної адреси.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/all.php:132 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -"**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%" -"site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 +#: actions/all.php:134 #, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** це сервіс мікроблогів. " - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -". Контрибутори мають бути зазначені повним ім'ям або ім'ям користувача." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." msgstr "" -"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. " -"Неодмінно." +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s з друзями" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 або більше знаків" +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Оновлення від %1$s та друзів на %2$s!" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 або більше знаків, і не забудьте їх!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API метод не знайдено!" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 або більше знаків. Неодмінно." +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Цей метод потребує НАПИСАТИ." -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Код підтвердження був відправлений на адресу IM, яку ви додали. Ви повинні " -"затведити %s для відправлення вам повідомлень." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Код підтвердження був відправлений на електронну адресу, яку ви додали. " -"Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та " -"подальші інструкції." - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"Код підтвердження був відправлений на телефонний номер, який ви додали. " -"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API метод не знайдено!" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API метод наразі знаходиться у розробці." +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Користувач не має профілю." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Про" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "Спроба заблокувати користувача невдала." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Погодитись" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "Спроба розблокувати користувача невдала." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Додати" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Повідомлення без тексту!" -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Додати OpenID" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Надто довго. Максимальний розмір 140 знаків." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Додати або вилучити адреси OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Адреса" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Отримувача не знайдено." -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)" +"Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Всі підписки" +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Пряме повідомлення до %s" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 +#: actions/apidirectmessage.php:93 #, php-format -msgid "All updates for %s" -msgstr "Всі оновлення для %s" +msgid "All the direct messages sent from %s" +msgstr "Всі прямі повідомлення надіслані від %s" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apidirectmessage.php:101 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Всі оновлення за збігом з \"%s\"" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Тепер ви увійшли." - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Тепер ви підписані!" - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Ви впевненні, що бажаєте видалити це повідомлення?" - -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Авторизувати підписку" - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Автоматично входити у майбутньому; не для комп'ютерів загального " -"користування!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Автоматично підписуватись до тих, хто підписався до мене (якщо ви бот, то це " -"саме для вас)" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Аватара" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Аватару оновлено." - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk рахунок, " -"там має бути повідомлення з подальшими інструкціями. (Ви додали %s до вашого " -"списку контактів?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Очікування підтвердження цієї адреси. Перевірте вхідну пошту (і теку зі " -"спамом також!), там має бути повідомлення з подальшими інструкціями." - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "Очікування підтвердження телефонного номера." - -#: ../lib/util.php:1318 lib/util.php:1452 -msgid "Before »" -msgstr "Назад »" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Про себе" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Ви перевищили ліміт (140 знаків це максимум)" - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Не можна видалити це повідомлення." +msgid "Direct messages to %s" +msgstr "Пряме повідомлення до %s" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apidirectmessage.php:105 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Не можна прочитати URL аватари '%s'" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Не можна зберегти новий пароль." - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Скасувати" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Не можна підтвердити споживчий об'єкт OpenID." - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Не можна полагодити цей Jabber ID" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "Не можна полагодити цю поштову адресу" - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Змінити" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Змінити електронну адресу вручну" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Змінити пароль" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Змінити ваш пароль" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Змінити налаштування профілю" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Підтвердити" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Підтвердити адресу" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Підтвердження скасовано." - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "Код підтвердження" +msgid "All the direct messages sent to %s" +msgstr "Всі прямі повідомлення надіслані до %s" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Код підтвердження не знайдено." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Жодних статусів з таким ID." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Вітаємо, %s! І ласкаво просимо до %%%%site.name%%%%. Звідси ви, можливо, " -"схочете...\n" -"\n" -"*Подивитись [ваш профіль](%s) та написати своє перше повідомлення.\n" -"*Додати [адресу Jabber/GTalk](%%%%action.imsettings%%%%), так щоб мати змогу " -"надсилати повідомлення через службу миттєвих повідомлень.\n" -"*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з вами " -"інтереси.\n" -"*Оновити [налаштування профілю](%%%%action.profilesettings%%%%) аби інші " -"дізнались більше про вас.\n" -"*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатись, що ви " -"нічого не пропустили. \n" -"\n" -"Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш " -"сервіс." +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Це повідомлення вже є обраним!" -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "З'єднання" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Не можна позначити як обране." -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "З'єднатись використовуючи існуючий рахунок" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Це повідомлення не є обраним!" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Контакт" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Не можна видалити зі списку обраних." -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "Не вдалося створити форму OpenID: %s" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Не вдалося додати користувача: користувача не знайдено." -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Не вдалося додати користувача: %s вже присутній у вашому списку." -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." msgstr "Не вдалося додати користувача: користувача не знайдено." -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "Невдале перенаправлення на сервер: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Не вдалося зберегти інформацію про аватару" - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Не вдалося зберегти інформацію про новий профіль" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "Не вдалося підписати іншого до вас." - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "Невдала підписка." - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою." - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Не вдалося перетворити токени запиту на токени звернення." - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Не вдалося видалити підтвердження поштової адреси." - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Не вдалося видалити підписку." - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Жодних статусів не виявлено." - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Не вдалося отримати токен запиту." - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Не вдалося додати код підтвердження." - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Не вдалося додати нову підписку." - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Не вдалося зберегти профіль." - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "Не вдалося оновити користувача для автопідписки." - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "Не вдалося оновити запис користувача." - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Не вдалося оновити користувача." - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Створити" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Створити нового користувача з цим ім'ям." - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Створити новий рахунок" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Створення нового рахунку для OpenID, яким ви вже користуєтесь." - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Поточна підтверджена адреса Jabber/GTalk." - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "Поточний підтверджений телефонний номер." - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Поточна підтверджена поштова адреса." - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Поточне" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Помилка бази даних при додаванні тегу: %s" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Два ID або імені_у_мережі повинні підтримуватись." -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Помилка бази даних при додаванні відповіді: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Видалити повідомлення" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Опишіть себе та свої інтереси (140 знаків)" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Пошта" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "Електронна адреса" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Налаштування пошти" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Ця адреса вже використовується." - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Підтвердження електронної адреси" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "Електронна адреса, на зразок \"UserName@example.org\"" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Електронні адреси" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Введіть ім'я або електронну адресу." - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Введіть код, який ви отримали телефоном." - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Помилка токена авторизації" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Помилка при підключенні користувача до OpenID." - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Помилка при підключенні користувача." - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Помилка при додаванні аватари" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Помилка при додаванні нового профілю" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Помилка при додаванні віддаленого профілю" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Помилка при збереженні підтвердження адреси." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Помилка при збереженні віддаленого профілю" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Помилка при збереженні профілю." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Помилка при збереженні користувача." - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Помилка при збереженні користувача; недійсний." - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Помилка в налаштуваннях користувача." - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Помилка при оновленні профілю" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Помилка при оновленні віддаленого профілю" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Помилка з кодом підтвердження." - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Існуюче ім'я" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "ЧаПи" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Оновлення аватари невдале." - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "Живлення для друзів %s" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Живлення для відповідей %s" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "Живлення для тегів %s" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Знайти за змістом повідомлень" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Знайти людей на цьому сайті" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " -"змінювати налаштування." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Повне ім'я" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Повне ім'я задовге (255 знаків максимум)" - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Допомога" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Дім" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Веб-сторінка" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Веб-сторінка має недійсну URL-адресу." - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Я хочу надсилати повідомлення поштою." - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "ІМ" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "Адреса IM" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Налаштування IM" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Якщо ви вже маєте рахунок, увійдіть використовуючи ім'я та пароль, щоб " -"приєднати їх до вашого OpenID." - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Якщо ви бажаєте додати OpenID до вашого рахунку, введіть адресу в поле нижче " -"і натисніть \"Додати\"." - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"У разі, якщо ви забули або загубили свій пароль, ви маєте можливість " -"отримати новий на ту електронну адресу, яку було збережено у профілі вашого " -"рахунку." - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "Вхідна пошта" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "Адресу вхідної пошти видалено." - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Старий пароль неточний" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Неточне ім'я або пароль." - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви " -"вказали у налаштуваннях вашого профілю." - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "Недійсна URL-адреса аватари '%s'" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Недійсна електронна адреса: %s" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Недійсна веб-сторінка '%s'" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "Недійсна ліцензія URL '%s'" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Недійсний зміст повідомлення" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "Недійсне URI повідомлення" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "Недійсна URL-адреса повідомлення" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "Недійсна URL-адреса профілю '%s'." - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "Недійсна URL-адреса профілю (неправильний формат)" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "Недійсну URL-адресу профілю було повернуто сервером." - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Недійсний розмір." - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Недійсне ім'я або пароль." - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Запрошення відіслано" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Запрошення були надіслани наступним особам:" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Запросити" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Запросити нових користувачів" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Сервіс працює на [StatusNet](http://status.net/) - програмному забезпеченні " -"для мікроблогів, версія %s, доступному під [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID вже належить іншому користувачу." - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber або GTalk адреса, на зразок \"UserName@example.org\". Але спершу " -"переконайтеся, що додали %s до списку контактів в своєму IM-клієнті або в " -"GTalk." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Мова" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "Мова задовга (50 знаків максимум)" - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Локація" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Локація надто довга (255 знаків максимум)" - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Увійти" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Увійти з [OpenID](%%doc.openid%%)." - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " -"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" -"action.openidlogin%%). " - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Вийти" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Довше ім'я, переважно ваше \"справжнє\" ім'я" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Загубили або забули пароль?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Створити нову адресу для надсилання повідомлень; видалити стару." - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Зазначте, як само ви бажаєте отримувати листи з %%site.name%%." - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "З нами від" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Мікроблог від %s" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Оператор мобільного зв'язку. Якщо вам відомий оператор, що підтримує " -"надсилання SMS через електронну пошту, але він тут не вказаний, напишіть нам " -"і ми внесемо його до списку." - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Мої повідомлення та файли доступні під " - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Нове" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Нова електронна адреса для надсилання повідомлень на %s" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "Нову адресу для вхідних повідомлень додано." - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Нове ім'я" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Нове повідомлення" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Новий пароль" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Новий пароль успішно збережено. Тепер ви увійшли." - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Ім'я користувача" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Це ім'я вже використовується. Спробуйте інше." - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Ім'я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " -"інтервалів." - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Таке ім'я неприпустиме." - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Ім'я користувача, за яким ви бажаєте слідувати" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Ім'я або електронна адреса" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Ні" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Немає Jabber ID." - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Немає запиту на авторизацію!" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "Оператора не обрано." - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Код не введено" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Немає коду підтвердження." - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Немає змісту!" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Немає електронної адреси." - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Немає ID." - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "Немає адреси для вхідної пошти." - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "На віддаленому сервері такого імені немає." - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Немає імені." - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Не очікується підтвердження для скасування." - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Немає телефонного номера." - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Немає URL-адреси профілю, яку б було повернуто сервером." - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Для цього користувача немає зареєстрованої електронної адреси." - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Відповідей на запит немає!" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Немає результатів" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Немає розміру." - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Жодних статусів з таким ID." - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Не знайдено жодних статусів з таким ID." - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Такого OpenID немає." - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Такого документа немає." - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Такого повідомлення немає." - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Немає такого коду відновлення." - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Немає такої підписки" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Такого користувача немає." - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "Користувача з такою електронною адресою або ім'ям немає." - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Об'єктів для показу немає!" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Це не код оновлення." - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Це не зареєстрований користувач." - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Такий формат даних не підтримується." - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Це недійсний Jabber ID" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "Це недійсний OpenID." - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "Це недійсна електронна адреса" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Це недійсна електронна адреса." - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Це недійсне ім'я користувача." - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Це недійсна URL-адреса профілю (сервіс вказано невірно)." - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Це недійсна URL-адреса профілю (немає певного XRDS)." - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "Це не зображення, або файл зіпсовано." - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Не авторизовано." - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Ця відповідь не очікується!" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Не знайдено" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Не увійшли." - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Не підписано!." - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Пошук повідомлень" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "Живлення повідомлень для %s" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Повідомлення не має профілю" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Повідомлення" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Повідомлення позначені з %s" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Старий пароль" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Установки рахунку OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Автопідтвердження OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Вхід OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "URL-адреса OpenID" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Ідентифікацію OpenID скасовано." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Ідентифікація OpenID невдала: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "Невдача OpenID: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID видалено." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Налаштування OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Можна додати персональне повідомлення до запрошення (опціонально)." - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Часткове завантаження." - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Пароль" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Пароль та підтвердження не співпадають." - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Пароль має складатись з 6-ти або більше знаків." - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Запит на відновлення паролю відправлено." - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Пароль збережено." - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Паролі не співпадають." - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Люди" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "Пошук людей" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Пошук людей" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Особисте" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Особисті повідомлення" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " -"підписатись на повідомлення даного користувача. Якщо ви не збирались " -"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" -"Надсилати повідомлення на сайт, коли мій статус Jabber/GTalk змінюється." - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Преференції" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Преференції збережно." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Мова, якій надаєте перевагу" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Конфіденційність" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Проблема при збереженні повідомлення." - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Профіль" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL-адреса профілю" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Налаштування профілю" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Невідомий профіль" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Живлення загального потоку" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Загальна хронологія" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Позначати міткою MicroID мою адресу Jabber/GTalk." - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Позначати міткою MicroID мою електронну адресу." - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Нові теги" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Відновити" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Відновити пароль" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Код відновлення для невідомого користувача." - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Реєстрація" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "Реєстрацію не дозволено." - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Реєстрація успішна" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Забраковано" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Пам'ятати мене" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Віддалений профіль не співпадає з цим профілем" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Віддалена підписка" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Видалити" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Видалити OpenID" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Ви входите лише з одним єдиним OpenID, якщо ви його видалите, то не зможете " -"увійти знову! Перед тим як видалити його, з початку додайте інший." - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Відповіді" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "Відповіді до %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Скинути" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Скинути пароль" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "СМС" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Телефонний номер" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Налаштування СМС" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Підтвердження СМС" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Такий само, як і пароль вище" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Такий само, як і пароль вище. Неодмінно." - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Зберегти" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Пошук" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Живлення потоку пошуку" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Пошук повідомлень на %%site.name%% за їх змістом. Відокремлюйте пошукові " -"умови інтервалами; вони повинні складатись з 3 знаків або більше." - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. " -"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " -"або більше." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Оберіть оператора" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Так!" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Надсилайте листи на цю адресу і їх буде опубліковано на сайті." - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Поівдомляти мене поштою про нові підписки." - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Повідомляти мене через Jabber/GTalk." - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Повідомляти мене за допомогою СМС; Я розімію, що, можливо, понесу надмірні " -"витрати від мого мобільного оператора." - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не " -"підписаний." - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Налаштування" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Налаштування збережено." - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Представлено найбільш популярні теги за минулий тиждень" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Хтось вже користується цим OpenID." - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Сталося щось дивне." - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" -"Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Вибачте, але це не є вашою електронною адресою для входної пошти." - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Джерело" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Статистика" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Збережений OpenID не знайдено." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Підписатись" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Підписчики" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Підписку авторизовано" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Підписку скинуто" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Підписки" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Система відповіла помилкою при завантаженні цього файла." - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Теги" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Текст" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Пошук тексту" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "Цей OpenID вам не належить." - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Цю адресу вже було підтверджено." - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Цей код підтвердження не для вас!" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "Ця електронна адреса належить іншому користувачу." - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "Цей файл надто великий." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Це і так вже ваш Jabber ID." - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "Це і так вже ваша адреса." - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "Це і так вже ваш телефонний номер." - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Це не ваш Jabber ID." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "Це не ваша адреса." - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Це не ваш телефонний номер." - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Це помилкова адреса IM." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "Це помилковий код підтвердження." - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "Цей телефонний номер належить іншому користувачу." - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Надто довго. Максимальний розмір повідомлення 255 знаків." - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Адресу \"%s\" було підтверджено для вашого рахунку." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Адресу було видалено." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " -"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " -"авторизувати підписку. Ваш підписний токен:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " -"з інструкціями на сайті для більш конкретної інформації про те, як скинути " -"підписку." - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Тут представлені ті, хто слідкує за повідомленнями від %s." - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Тут представлені ті, хто слідкує за вашими повідомленнями." - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Тут представлені ті, за чиїми повідомленнями слідкує %s." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Тут представлені ті, за чиїми повідомленнями ви слідкуєте." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "Ці люди вже є користувачами і вас було автоматично підписано до них:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Цей код підтвердження застарілий. Будь ласка, розпочніть спочатку." - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Ця форма повинна автоматично репрезентувати себе системі. Якщо цього не " -"сталося, натисніть на кнопку представлення і ви будете перенаправлені до " -"вашого OpenID провайдера." - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Ви вперше увійшли до %s і ми повинні приєднати ваш OpenID до локального " -"рахунку. Ви можете також створити новий рахунок, або приєднати OpenID до " -"вашого вже існуючого рахунку, якщо ви його маєте." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Цей метод потребує або НАПИСАТИ, або ВИДАЛИТИ." - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Цей метод потребує НАПИСАТИ." - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Ця сторінка не доступна для того типу медіа, з яким ви погодились" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Часовий пояс" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "Часовий пояс не обрано." - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"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-адресу вашого профілю нижче." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "Два ID або імені_у_мережі повинні підтримуватись." - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL-адреса вашої веб-сторінки, блогу, або профілю на іншому сайті" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Несподіване представлення форми." +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Не вдається відновити загальний потік." -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Несподіване скидання паролю." +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Жодних статусів не виявлено." -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Дія невідома" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "Не вдалося створити нову групу" -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Невідома версія протоколу OMB." +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Не можна позначити як обране." -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Якщо не зазначено інше, авторське право на вміст цього сайту належить " -"контрибуторам і доступне під " +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "Не вдалося встановити членство." -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Невизнаний тип адреси %s" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Ім'я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " +"інтервалів." -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Відписатись" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Це ім'я вже використовується. Спробуйте інше." -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Версія OMB не підтримується" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Це недійсне ім'я користувача." -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Формат зображення не підтримується." +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Веб-сторінка має недійсну URL-адресу." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Оновлення через SMS" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Повне ім'я задовге (255 знаків максимум)" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "опис надто довгий (140 знаків максимум)" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "Оновлення від %1$s та друзів на %2$s!" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Локація надто довга (255 знаків максимум)" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Оновлення від %1$s на %2$s!" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Завантажити" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не " -"зможете відредагувати свою аватару після завантаження, так що спочатку " -"переконайтесь, що вона має більш-менш квадратну форму. Ваше зображення " -"зберігатиметься під ліцензією сайту, також. Використовуйте зображення, які " -"належать вам, і які ви можете вільно демонструвати." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Завантажити нове зображення користувача" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +msgid "Too many aliases! Maximum %d." msgstr "" -"Скористуйтесь ціїє формою аби запросити ваших друзів та колег до нашого " -"сервісу." -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Використовується лише для оновлень, оголошень та відновлення паролю" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Недійсний тег: \"%s\"" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує." +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Це ім'я вже використовується. Спробуйте інше." -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Користувач не має профілю." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Ім'я користувача" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Ви вже є учасником цієї групи" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Користувача не знайдено." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "За яким часовим поясом ви живете?" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Користувачеві %s не вдалось приєднатись до групи %s" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Що нового, %s?" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Ви не є учасником цієї групи." -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Де ви живете, на зразок \"Місто, область (регіон), країна\"" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Не вдалося видалити користувача %s з групи %s" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format -msgid "Wrong image type for '%s'" -msgstr "Неправильний тип зображення для '%s'" +msgid "%s groups" +msgstr "Групи %s" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Неправильний розмір зображення '%s'" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Діяльність групи" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Так" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Групи %s" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Ви вже маєте цей OpenID!" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s бере участь в цих групах" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " -"зворотня дія неможлива." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Цей метод потребує або НАПИСАТИ, або ВИДАЛИТИ." -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Ви вже в системі!" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Ви не можете видалити статус іншого користувача." -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Ви вже підписані до цих користувачів:" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Аватару оновлено." -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "Ви не є друзями із вказаним користувачем." +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Не знайдено жодних статусів з таким ID." -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Тут ви можете замінити пароль. Оберіть собі якийсь гарний!" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Ви можете створити новий рахунок, щоб почати писати повідомлення." +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Не знайдено" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Ви можете отримувати СМС через електронну пошту від %%site.name%%." - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -"Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку \"Видалити" -"\"." -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Формат зображення не підтримується." + +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Ви можете надсилати та отримувати повідомлення через Jabber/GTalk [службу " -"миттєвих повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції " -"нижче." +msgid "%s / Favorites from %s" +msgstr "%s / Обрані від %s" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Ви можете доповнити свій особистий профіль, так що люди знатимуть про вас " -"більше." +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s оновлення обраних від %s / %s." -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Ви можете користуватись локальними підписками!" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s хронологія" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Ви не надсилали нам цього профілю" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Оновленні відповіді %2$s" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/apitimelinementions.php:126 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Ви маєте нову поштову адресу на %1$s.\n" -"\n" -"Надсилайте листи на %2$s, щоб друкувати нові повідомлення.\n" -"\n" -"Більше інформації про використання електронної пошти на %3$s.\n" -"\n" -"Щиро ваші,\n" -"%4$s" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s оновив(ла) цю відповідь на оновлення від %2$s / %3$s." -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Ви не можете видалити статус іншого користувача." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s загальна хронологія" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Ви маєте спочатку увійти, аби мати змогу запросити когось до %s" +msgid "%s updates from everyone!" +msgstr "%s оновлення від всіх!" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями " -"і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "Повідомлення позначені з %s" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Вас ідентифіковано. Введіть новий пароль нижче. " +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "URL-адреса вашого OpenID" +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Не знайдено." -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Ваше ім'я користувача на цьому сервері, або зареєстрована електронна адреса." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Такого документа немає." -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, 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%%) дає вам можливість реєструватися на багатьох " -"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Немає імені." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "мить тому" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Немає розміру." -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "близько %d днів тому" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Недійсний розмір." -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "близько %d годин тому" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Аватара" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "близько %d хвилин тому" +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Ви можете завантажити вашу персональну аватару." -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "близько %d місяців тому" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Користувач з невідповідним профілем" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "день тому" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Налаштування аватари" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "хвилину тому" +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "Оригінал" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "місяць тому" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Перегляд" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "рік тому" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" +msgstr "Видалити" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "годину тому" +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Завантажити" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "видалити" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "у відповідь на..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "відповісти" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "такий само, як і пароль вище" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "Втяти" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "тип файлу не підтримується" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "« Вперед" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/othersettings.php:145 actions/passwordsettings.php:137 #: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "Це повідомлення не є обраним!" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "Не можна видалити зі списку обраних." - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "Обрати" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Несподіване представлення форми." -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Надсилати мені листа, коли хтось додає моє повідомлення до списку обраних." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "Дані вашого файлу десь загубились." -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Це повідомлення вже є обраним!" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Аватару оновлено." -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Не можна позначити як обране." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Оновлення аватари невдале." -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Не обране" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватару оновлено." -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "Обрані повідомлення %s" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +msgid "No nickname" +msgstr "Немає імені" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "Живлення для обраних повідомлень від %s" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "Такої групи немає" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Вхідні для %s - сторінка %d" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Профіль користувача." -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Вхідні для %s" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s з друзями, сторінка %d" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Список учасників цієї групи." -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s запросив(ла) вас приєднатись до %2$s (%3$s).\n" -"\n" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Спроба розблокувати користувача невдала." -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "Автоматично входити у майбутньому; " +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Розблокувати" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "З міркувань безпеки, будь ласка, введіть ще раз свій " +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Розблокувати цього користувача" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "Увійти з вашим ім'ям та паролем. " +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Не увійшли." -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "Надто довго. Максимальний розмір 140 знаків." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "Не визначено жодного профілю." -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "Жодного отримувача не визначено." +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." +msgstr "Не визначено профілю з таким ID." -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "Ви не можете надіслати повідомлення цьому користувачеві." +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "Блокувати користувача." -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 +#: actions/block.php:136 msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -"Не надсилайте повідомлень самому собі; краще поговоріть з собою тихенько " -"вголос." -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "Немає такого користувача" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Ні" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "Нове повідомлення" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Список учасників цієї групи." -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "Повідомлення без відповідного профілю" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Так" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) дозволяє вам входити до багатьох сайтів " +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Список учасників цієї групи." + +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "Цього користувача вже заблоковано." -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "Якщо бажаєте додати OpenID до вашого рахунку, " +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "Збереження інформації про блокування завершилось невдачею." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Фото" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Видалення вашого єдиного OpenID унеможливить вхід наступного разу! " +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Немає коду підтвердження." -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "Ви можете видалити OpenID з вашого рахунку " +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Код підтвердження не знайдено." -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Вихідні для %s - сторінка %d" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Цей код підтвердження не для вас!" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/confirmaddress.php:90 #, php-format -msgid "Outbox for %s" -msgstr "Вихідні для %s" +msgid "Unrecognized address type %s" +msgstr "Невизнаний тип адреси %s" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали " -"приватно." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Цю адресу вже було підтверджено." + +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Не вдалося оновити користувача." + +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Не вдалося видалити підтвердження поштової адреси." + +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Підтвердити адресу" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/confirmaddress.php:159 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Пошук людей на %%site.name%% за ім'ям, локацією або інтересами. " +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Адресу \"%s\" було підтверджено для вашого рахунку." -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "Ви можете оновити власну персональну інформацію тут " +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код підтвердження" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "Користувач з невідповідним профілем" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Повідомлення" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "Цей код підтвердження застарілий. " +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Такого повідомлення немає." -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "Якщо ви забули або загубили ваш" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Не можна видалити це повідомлення." -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "Вас ідентифіковано. Введіть " +#: actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " +"зворотня дія неможлива." -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "Ваше ім'я на цьому сервері, " +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Видалити повідомлення" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "Інструкції щодо відновлення паролю " +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Ви впевненні, що бажаєте видалити це повідомлення?" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "Новий пароль успішно збережено. " +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Не можна видалити це повідомлення." -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "Пароль має складатись з 6-ти або більше знаків." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "Видалити повідомлення" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." msgstr "" -"Вітаємо, %s! Ласкаво просимо до %%%%site.name%%%%. Звідси ви можливо " -"схочете..." +"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(Ви маєте невдовзі отримати листа електронною поштою з " +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Це повідомлення не є обраним!" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Аби підписатись, ви можете [увійти](%%action.login%%)," +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Додати до обраних" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Живлення для обраних повідомлень від %s" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Такого документа немає." -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Не можна відновити обрані повідомлення." +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Редагувати групу %s" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Немає такого повідомлення." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "Лише відправник та отримувач мають можливість читати це повідомлення." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "Повідомлення до %1$s на %2$s" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "Скористайтесь цією формою, щоб відредагувати групу." -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "Повідомлення від %1$s на %2$s" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "опис надто довгий (140 знаків максимум)" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "Надіслати повідомлення" +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "Не вдалося оновити групу." -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "Оператор мобільного зв'язку. " +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "Опції збережено." -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "Пряме повідомлення до %s" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Налаштування пошти" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 +#: actions/emailsettings.php:71 #, php-format -msgid "All the direct messages sent to %s" -msgstr "Всі прямі повідомлення надіслані до %s" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "Прямі повідомлення надіслані вами" +msgid "Manage how you get email from %%site.name%%." +msgstr "Зазначте, як само ви бажаєте отримувати листи з %%site.name%%." -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "Всі прямі повідомлення надіслані від %s" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Адреса" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "Повідомлення без тексту!" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Поточна підтверджена поштова адреса." -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "Отримувача не знайдено." +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Видалити" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -"Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." +"Очікування підтвердження цієї адреси. Перевірте вхідну пошту (і теку зі " +"спамом також!), там має бути повідомлення з подальшими інструкціями." -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s / Обрані від %s" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Скасувати" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s оновлення обраних від %s / %s." +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "Електронна адреса" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s додав(ла) ваше повідомлення до обраних" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Електронна адреса, на зразок \"UserName@example.org\"" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних ним" -"(нею)\n" -"\n" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Додати" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень " -"туди, " - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Налаштування Твіттера" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Рахунок на Твіттері" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Поточний підтверджений рахунок на Твіттері." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Ім'я на Твіттері" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Без пробілів, будь ласка." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Пароль на Твіттері" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Автоматично пересилати мої повідомлення на Твіттер." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "Надсилати локальні \"@\" відповіді на Твіттер." - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Підписатись до моїх друзів на Твіттері тут." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Ім'я користувача має складатись лише з цифр, літер верхнього та нижнього " -"регістрів та символів підкреслювання (_). 15 знаків це максимум." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Вхідна пошта" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Не можна підтвердити ваші реквізити на Твіттері!" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Надсилайте листи на цю адресу і їх буде опубліковано на сайті." -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Не маю можливості відновити інформацію для \"%s\" з Твіттера." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Створити нову адресу для надсилання повідомлень; видалити стару." -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Не маю можливості зберегти ваші налаштування Твіттера!" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Нове" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Налаштування Твіттера збережено." - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Це не є вашим рахунком на Твіттері." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Не можна видалити користувача Твіттер." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Твіттер рахунок видалено." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Не можна зберегти преференції Твіттера." - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Преференції Твіттера збережено." - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "Будь ласка, перевірте деталі аби впевнитись " - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "Підписку було авторизовано, але не " - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "Підписку було скинуто, але не " - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "Результати команди" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Преференції" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "Команду виконано" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Поівдомляти мене поштою про нові підписки." -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "Команду не виконано" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" +"Надсилати мені листа, коли хтось додає моє повідомлення до списку обраних." -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "Даруйте, але виконання команди ще не завершено." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Підписки: %1$s\n" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "Користувач має останнє повідомлення" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "Дозволити друзям \"розштовхати\" мене, надіславши мені листа." -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "Повідомлення позначено як обране." +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Я хочу надсилати повідомлення поштою." -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Позначати міткою MicroID мою електронну адресу." -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "Повне ім'я: %s" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Зберегти" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "Локація: %s" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Преференції збережно." -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "Веб-сторінка: %s" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Немає електронної адреси." -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "Про мене: %s" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "Не можна полагодити цю поштову адресу" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "Це недійсна електронна адреса" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "Пряме повідомлення до %s надіслано" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "Це і так вже ваша адреса." -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "Помилка при відправці прямого повідомлення." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "Ця електронна адреса належить іншому користувачу." -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "Зазначте ім'я користувача, до якого бажаєте підписатись" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Не вдалося додати код підтвердження." + +#: actions/emailsettings.php:358 +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 "" +"Код підтвердження був відправлений на електронну адресу, яку ви додали. " +"Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та " +"подальші інструкції." -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "Підписано до %s" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Не очікується підтвердження для скасування." -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "Зазначте ім'я користувача, від якого бажаєте відписатись" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Це помилкова адреса IM." -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "Відписано від %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Підтвердження скасовано." -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "Виконання команди ще не завершено." +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "Це не ваша адреса." -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "Сповіщення вимкнуто." +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Адресу було видалено." -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "Не можна вимкнути сповіщення." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Немає адреси для вхідної пошти." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "Сповіщення увімкнуто." +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Не вдалося оновити запис користувача." -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "Не можна увімкнути сповіщення." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Адресу вхідної пошти видалено." -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "Команди:\n" +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "Нову адресу для вхідних повідомлень додано." -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "Не можна долучити повідомлення." +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Популярні дописи" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "Не можна оновити повідомлення з новим URI." +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Популярні дописи, сторінка %d" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "Користувач без відповідного профілю у системі." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Представлено найбільш популярні дописи на сайті." -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -"Тепер ви маєте нову адресу для надсилання повідомлень на %1$s.\n" -"\n" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "Нове приватне повідомлення від %s" -#: lib/mail.php:253 lib/mail.php:512 -#, php-format +#: actions/favorited.php:153 msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." msgstr "" -"%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n" -"\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -"Лише користувач має можливість переглядати свою власну поштову скриньку." - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "Ця форма має автоматично репрезентувати себе системі. " - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Обрані" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 #, php-format msgid "%s's favorite notices" msgstr "Обрані дописи %s" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Користувач" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Вхідні" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Це повідомлення вже є обраним!" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Ваші вхідні повідомлення" +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Видалити з обраних" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Вихідні" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Користувачі варті уваги" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Надіслані вами повідомлення" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Користувачі варті уваги, сторінка %d" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "Вибірка з деяких видатних користувачів на %s" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Нове повідомлення" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Твіттер" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Нове повідомлення" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Опції інтеграції з Твіттером" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "До" +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "Не можна розібрати повідомлення." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Ця відповідь не очікується!" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, php-format -msgid "%s and friends, page %d" -msgstr "%s з друзями, сторінка %d" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує." -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "Ви можете завантажити вашу персональну аватару." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Ви можете користуватись локальними підписками!" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Налаштування аватари" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "Цей користувач заблокував вашу можливість підписатись." -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "Оригінал" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не авторизовано." -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Перегляд" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Не вдалося перетворити токени запиту на токени звернення." -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "Втяти" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Невідома версія протоколу OMB." -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "Виникли певні проблеми з токеном поточної сесії. " - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Помилка при оновленні віддаленого профілю" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "Дані вашого файлу десь загубились." +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "Такої групи немає." -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "Файл втрачено." +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Такого повідомлення немає." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "Тип файлу не підтримується" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Файл втрачено." -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." msgstr "Не визначено жодного профілю." -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "Не визначено профілю з таким ID." - -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "Блокувати користувача." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "Ви впевненні, що бажаєте заблокувати цього користувача? " +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Користувач заблокував вас." -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Цього користувача вже заблоковано." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Ви не є учасником цієї групи." -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "Збереження інформації про блокування завершилось невдачею." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Блокувати користувача." -#: actions/confirmaddress.php:159 +#: actions/groupblock.php:155 #, php-format -msgid "The address \"%s\" has been " -msgstr "Адресу \"%s\" було " +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "Ви видаляєте повідомлення назавжди. " +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "Немає ID" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "Додати до обраних" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "Редагувати групу %s" +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Групи" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -"Поштові скриньки для вхідних повідомлень мають бути дозволені для роботи у " -"групах" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "Немає імені" +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Не вдалося оновити користувача." -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "Такої групи немає" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Не маю можливості зберегти ваші налаштування Твіттера!" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Преференції синхронізації збережно." -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "Скористайтесь цією формою, щоб відредагувати групу." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "Логотип групи" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "Ім'я користувача повинно складатись з літер нижнього регістру " +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Ви маєте можливість завантажити логотип для вашої группи." -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "опис надто довгий (140 знаків максимум)" +#: actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "Не вдалося оновити групу." +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "Логотип оновлено." -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "Опції збережено." +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "Оновлення логотипу завершилось невдачею." -#: actions/emailsettings.php:107 actions/imsettings.php:108 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Очікування підтвердження цієї адреси. " - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "Створити нову електронну адресу для надсилання; " +msgid "%s group members" +msgstr "Учасники групи %s" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "Надсилати мені листа коли хтось " +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "Учасники групи %s, сторінка %d" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "Дозволити друзям \"розштовхати\" мене, надіславши мені листа." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "Список учасників цієї групи." -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "Ця електронна адреса вже належить " +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "Адмін" -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Код підтвердження був відправлений на електронну адресу, яку ви додали. " +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "Блок" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "Помилка сервера - неможливо дістатись користувача!" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +msgid "Block this user" +msgstr "Блокувати користувача" -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "Якщо ви бажаєте додаток до %s для автоматичного оновлення " +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "Дозволити %s оновлювати мій статус у Facebook" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Адмін" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "Пропустити" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "Повідомлення не має змісту!" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "Нумерація сторінок" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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%% за їх ім'ям, локацією або інтересами. " +"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " +"або більше." -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "Вперед" +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Пошук груп" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "Назад" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Немає результатів" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/groupsearch.php:82 #, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "Дякуємо, що запросили своїх друзів до %s" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "Запрошення були надіслані наступним користувачам:" +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/groupsearch.php:85 #, php-format -msgid "You have been invited to %s" -msgstr "Вас запрошують до %s" +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "Запросіть своїх друзів до %s" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Групи" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/groups.php:64 #, php-format -msgid "Friends already using %s:" -msgstr "Друзі, які вже користуються %s:" +msgid "Groups, page %d" +msgstr "Групи, сторінка %d" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/groups.php:90 #, php-format -msgid "Send invitations" -msgstr "Надіслати запрошення" - -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "Не вдалося видалити користувача Facebook." - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "Виникли певні проблеми при збереженні ваших преференцій синхронізації!" +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "Преференції синхронізації збережно." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Створити нову групу" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "Автоматично оновлювати мій статус у Facebook моїми повідомленнями." +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "Надсилати \"@\" відповіді до Facebook." +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Користувач заблокував вас." -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "Префікс" +#: actions/groupunblock.php:128 actions/unblock.php:108 +msgid "Error removing the block." +msgstr "Помилка при розблокуванні." -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "Прив'язка префікса до повідомлень." +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Налаштування IM" -#: actions/facebooksettings.php:124 +#: actions/imsettings.php:70 #, php-format -msgid "If you would like %s to automatically update " -msgstr "Якщо бажаєте %s для автоматичного оновлення " +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Ви можете надсилати та отримувати повідомлення через Jabber/GTalk [службу " +"миттєвих повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції " +"нижче." -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "Преференції синхронізації" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Ця сторінка не доступна в " -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "Видалити з обраних" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Поточна підтверджена адреса Jabber/GTalk." -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "Популярні дописи" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk рахунок, " +"там має бути повідомлення з подальшими інструкціями. (Ви додали %s до вашого " +"списку контактів?)" -#: actions/favorited.php:67 +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "Адреса IM" + +#: actions/imsettings.php:126 #, php-format -msgid "Popular notices, page %d" -msgstr "Популярні дописи, сторінка %d" +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber або GTalk адреса, на зразок \"UserName@example.org\". Але спершу " +"переконайтеся, що додали %s до списку контактів в своєму IM-клієнті або в " +"GTalk." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "Представлено найбільш популярні дописи на сайті." +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Повідомляти мене через Jabber/GTalk." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "Користувачі варті уваги" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "" +"Надсилати повідомлення на сайт, коли мій статус Jabber/GTalk змінюється." -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "Користувачі варті уваги, сторінка %d" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не " +"підписаний." -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "Вибірка з деяких видатних користувачів на %s" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Позначати міткою MicroID мою адресу Jabber/GTalk." -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "Цей користувач заблокував вашу можливість підписатись." +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Немає Jabber ID." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "Немає ID" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Не можна полагодити цей Jabber ID" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "Логотип групи" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Це недійсний Jabber ID" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "Ви маєте можливість завантажити логотип для вашої группи." +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Це і так вже ваш Jabber ID." -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "Логотип оновлено." +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID вже належить іншому користувачу." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "Оновлення логотипу завершилось невдачею." +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Код підтвердження був відправлений на адресу IM, яку ви додали. Ви повинні " +"затведити %s для відправлення вам повідомлень." + +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Це не ваш Jabber ID." -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/inbox.php:59 #, php-format -msgid "%s group members" -msgstr "Учасники групи %s" +msgid "Inbox for %s - page %d" +msgstr "Вхідні для %s - сторінка %d" -#: actions/groupmembers.php:96 +#: actions/inbox.php:62 #, php-format -msgid "%s group members, page %d" -msgstr "Учасники групи %s, сторінка %d" +msgid "Inbox for %s" +msgstr "Вхідні для %s" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "Список учасників цієї групи." +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "Групи" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: actions/groups.php:64 +#: actions/invite.php:41 #, php-format -msgid "Groups, page %d" -msgstr "Групи, сторінка %d" +msgid "You must be logged in to invite other users to use %s" +msgstr "Ви маєте спочатку увійти, аби мати змогу запросити когось до %s" -#: actions/groups.php:90 +#: actions/invite.php:72 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" -"Групи на сайті %%%%site.name%%%% надають вам можливість знайти та " -"спілкуватись з " +msgid "Invalid email address: %s" +msgstr "Недійсна електронна адреса: %s" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "Створити нову групу" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Запрошення відіслано" + +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Запросити нових користувачів" + +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Ви вже підписані до цих користувачів:" -#: actions/groupsearch.php:57 +#: actions/invite.php:131 actions/invite.php:139 #, php-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: actions/invite.php:136 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Пошук груп на %%site.name%% за їх назвою, локацією або описом. " +"These people are already users and you were automatically subscribed to them:" +msgstr "Ці люди вже є користувачами і вас було автоматично підписано до них:" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "Пошук груп" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Запрошення були надіслани наступним особам:" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "У вас є можливість надсилати та отримувати повідомлення за допомогою " +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями " +"і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber або GTalk адреса, " +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Скористуйтесь ціїє формою аби запросити ваших друзів та колег до нашого " +"сервісу." + +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Електронні адреси" + +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" +"Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)" + +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Особисті повідомлення" + +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Можна додати персональне повідомлення до запрошення (опціонально)." -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "Надсилати мені відповіді за допомою Jabber/GTalk " +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Так!" + +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s" -#: actions/imsettings.php:321 +#: actions/invite.php:228 #, php-format -msgid "A confirmation code was sent " -msgstr "Код підтвердження було відправлено " +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s (%3$s).\n" +"\n" +"%2$s це сервіс мікроблогів що дозволяє вам знаходитись у курсі подій, які " +"відбуваються з вашими знайомими і тими особами, якими ви цікавитесь.\n" +"\n" +"Також ви маєте можливість ділитись новинами про себе, своїми думками, " +"подіями у житті, розміщуючи все це у режимі \"онлайн\" для своїх знайомих та " +"друзів. А ще це чудовий спосіб зустріти нових друзів зі спільними " +"інтересами.\n" +"\n" +"%1$s говорить:\n" +"\n" +"%4$s\n" +"\n" +"Ви можете переглянути профіль %1$s на %2$s тут:\n" +"\n" +"%5$s\n" +"\n" +"Якщо ви виявили бажання спробувати користуватись даним сервісом, то " +"перейдіть за посиланням внизу, аби погодитись із запрошенням.\n" +"\n" +"%6$s\n" +"\n" +"Якщо ж ні, то просто проігноруйте це повідомлення. Дякуємо за розуміння та " +"витрачений час.\n" +"\n" +"Щиро ваші, %2$s\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Ви повинні спочатку увійти на сайт, аби приєднатися до групи." -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Ви вже є учасником цієї групи" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Користувачеві %s не вдалось приєднатись до групи %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s приєднався до групи %s" #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "Скриньки вхідних повідомлень мають бути дозволені для роботи у групах." - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Ви повинні спочатку увійти на сайт, аби залишити групу." -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "Такої групи немає." - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Ви не є учасником цієї групи." -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "Ви не можете залишити групу допоки ви є її адміністратором." - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Не вдалося знайти запис щодо членства." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Не вдалося видалити користувача %s з групи %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s залишив групу %s" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Тепер ви увійшли." + +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Недійсний зміст повідомлення" + +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Неточне ім'я або пароль." + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Помилка в налаштуваннях користувача." + +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Увійти" + +#: actions/login.php:243 msgid "Login to site" msgstr "Вхід на сайт" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Ім'я користувача" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Пароль" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Пам'ятати мене" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Автоматично входити у майбутньому; не для комп'ютерів загального " +"користування!" + +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Загубили або забули пароль?" + +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " +"змінювати налаштування." + +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " +"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" +"action.openidlogin%%). " + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/microsummary.php:69 msgid "No current status" msgstr "Ніякого поточного статусу" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "Нова група" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Нова група" + +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Скористайтесь цією формою для створення нової групи." + +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Нове повідомлення" + +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "Ви не можете надіслати повідомлення цьому користувачеві." + +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Немає змісту!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Жодного отримувача не визначено." + +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Не надсилайте повідомлень самому собі; краще поговоріть з собою тихенько " +"вголос." + +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Повідомлення" + +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "Пряме повідомлення до %s надіслано" + +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Помилка в Ajax" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Нове повідомлення" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "Скористайтесь цією формою для створення нової групи." +#: actions/newnotice.php:199 +msgid "Notice posted" +msgstr "Повідомлення відправлено" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "Не вдалося створити нову групу" +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Пошук повідомлень на %%site.name%% за їх змістом. Відокремлюйте пошукові " +"умови інтервалами; вони повинні складатись з 3 знаків або більше." -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "Не вдалося встановити членство." +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Пошук тексту" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Потік пошуку для \"%s\"" -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "Це надто довго. " +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "Не надсилайте повідомлень самому собі; " +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "Повідомлення відправлено" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Оновлення від %1$s на %2$s!" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Помилка в Ajax" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Всі оновлення за збігом з \"%s\"" #: actions/nudge.php:85 msgid "" @@ -4655,13 +1847,36 @@ msgstr "Спробу \"розштовхати\" зараховано" msgid "Nudge sent!" msgstr "Спробу \"розштовхати\" зараховано!" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "Вхід OpenID" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Повідомлення не має профілю" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s має статус на %2$s" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "З'єднання" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Такий формат даних не підтримується." + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Пошук людей" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "Видалити ваш єдиний OpenID " +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Пошук повідомлень" #: actions/othersettings.php:60 msgid "Other Settings" @@ -4671,2373 +1886,2380 @@ msgstr "Інші опції" msgid "Manage various other options." msgstr "Керування деякими іншими опціями" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "Автоматичне скорочення URL-адрес" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "Сервіс" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Сервіси доступні для використання" -#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Налаштування профілю" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Сервіс скорочення URL-адрес надто довгий (50 знаків максимум)." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "Вихідні для %s - сторінка %d" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Вихідні для %s" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" +"Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали " +"приватно." + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Змінити пароль" + #: actions/passwordsettings.php:69 msgid "Change your password." msgstr "Змінити пароль." -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Пароль замінено" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "Це недійсний особистий тег: %s" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Старий пароль" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "Користувачі з особистим тегом %s - сторінка %d" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Новий пароль" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "Тут представлені користувачі, які позначили себе тегом \"%s\" " +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 або більше знаків" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "Інформація профілю" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Підтвердити" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Позначте себе тегами (літери, цифри, -, . та _), відокремлюючи кожен комою " -"або пробілом" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "такий само, як і пароль вище" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "Автоматична підписка до будь кого, хто " +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Змінити" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Недійсний тег: \"%s\"" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "Пароль має складатись з 6-ти або більше знаків." -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "Не вдалося зберегти теги." +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Паролі не співпадають." -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "Загальний потік, сторінка %d" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Старий пароль неточний" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "Не вдається відновити загальний потік." +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Помилка при збереженні користувача; недійсний." -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" -"wiki/Micro-blogging) " +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Не можна зберегти новий пароль." -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "Загальна хмарка тегів" +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Пароль збережено." -#: actions/publictagcloud.php:63 +#: actions/peoplesearch.php:52 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "Це найбільш популярні нові теги на %s " - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "Хмарка тегів" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." +"Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. " +"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " +"або більше." -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "Ви не зможете зареєструватись, якщо не " +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Пошук людей" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "Скориставшись цією формою, ви можете створити " +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "Це недійсний особистий тег: %s" -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 літери нижнього регістра і цифри " +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "Користувачі з особистим тегом %s - сторінка %d" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "Використовується лише для оновлень, оголошень, " +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Недійсний зміст повідомлення" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "URL-адреса вашої веб-сторінки, блогу, " +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "Опишіть себе та свої " +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Налаштування профілю" -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "Де ви живете, на зразок \"Місто, " +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Ви можете доповнити свій особистий профіль, так що люди знатимуть про вас " +"більше." -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr " окрім цих приватних даних: пароль, " +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Інформація профілю" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Вітаємо, %s! І ласкаво просимо до %%%%site.name%%%%. " +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "(Ви маєте отримати листа електронною поштою " +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Повне ім'я" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "Це локальний профіль! Увійдіть аби підписатись." +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Веб-сторінка" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "Відповіді %s, сторінка %d" +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL-адреса вашої веб-сторінки, блогу, або профілю на іншому сайті" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "Обрані повідомлення %s, сторінка %d" +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишіть себе та свої інтереси (140 знаків)" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "Група %s" +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишіть себе та свої " -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "Група %s, сторінка %d" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Про себе" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "Профіль групи" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Локація" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL" +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Де ви живете, на зразок \"Місто, область (регіон), країна\"" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" -msgstr "Зауваження" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Теги" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "Діяльність групи" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Позначте себе тегами (літери, цифри, -, . та _), відокремлюючи кожен комою " +"або пробілом" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "Живлення повідомлень для групи %s" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "Мова" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Учасники" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Мова, якій надаєте перевагу" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(Пусто)" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Часовий пояс" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "Всі учасники" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "За яким часовим поясом ви живете?" -#: actions/showgroup.php:378 -#, php-format +#: actions/profilesettings.php:160 msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -"**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " -"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "Лише відправник та отримувач " - -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, php-format -msgid "%s, page %d" -msgstr "%s, сторінка %d" +"Автоматично підписуватись до тих, хто підписався до мене (якщо ви бот, то це " +"саме для вас)" -#: actions/showstream.php:143 -msgid "'s profile" -msgstr " профіль" +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Ви перевищили ліміт (140 знаків це максимум)" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -msgid "User profile" -msgstr "Профіль користувача." +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "Часовий пояс не обрано." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "Фото" +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "Мова задовга (50 знаків максимум)" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" -msgstr "Діяльність користувача" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Недійсний тег: \"%s\"" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" -msgstr "Надіслати пряме повідомлення цьому користувачеві" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "Не вдалося оновити користувача для автопідписки." -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" -msgstr "Повідомлення" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Не вдалося зберегти профіль." -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "Всі підписчики" +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "Не вдалося зберегти теги." -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "Всі групи" +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Налаштування збережено." -#: actions/showstream.php:542 +#: actions/public.php:83 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "Beyond the page limit (%s)" msgstr "" -"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " -"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "Телефонний номер, ніякої пунктуації або інтервалів, " +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "Не вдається відновити загальний потік." -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "Повідомляти мене за допомогою СМС; " +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "Загальний потік, сторінка %d" -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Код підтвердження було надіслано на телефонний номер, який ви додали. " +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Загальна хронологія" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "Мобільний оператор" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Живлення загального потоку" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "Ви не підписані до цього профілю." +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Живлення загального потоку" -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "Не вдалося зберегти підписку." +#: actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Живлення загального потоку" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "Такого користувача немає." +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "Підписані" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/subscribers.php:50 +#: actions/public.php:186 #, php-format -msgid "%s subscribers" -msgstr "Підписані до %s" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" -#: actions/subscribers.php:52 +#: actions/public.php:233 #, php-format -msgid "%s subscribers, page %d" -msgstr "Підписані до %s, сторінка %d" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "Тут представлені ті, хто слідкує за " +#: actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" +"wiki/Micro-blogging) " -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "Тут представлені ті, хто " +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Загальна хмарка тегів" -#: actions/subscriptions.php:52 +#: actions/publictagcloud.php:63 #, php-format -msgid "%s subscriptions" -msgstr "Підписки %s" +msgid "These are most popular recent tags on %s " +msgstr "Це найбільш популярні нові теги на %s " -#: actions/subscriptions.php:54 +#: actions/publictagcloud.php:69 #, php-format -msgid "%s subscriptions, page %d" -msgstr "Підписки %s, сторінка %d" +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "Тут представлені ті, за чиїми повідомленнями " +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/subscriptions.php:69 +#: actions/publictagcloud.php:75 #, php-format -msgid "These are the people whose " -msgstr "Тут представлені ті, чиї " - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "Jabber" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Повідомлення позначені %s, сторінка %d" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "Хмарка тегів" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "Найновіші повідомлення позначені \"%s\"" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Ви вже в системі!" -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "Не увійшли" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Немає такого коду відновлення." -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "Немає аргументу ID." +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Це не код оновлення." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "Позначити %s" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Код відновлення для невідомого користувача." -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "Позначити користувача" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Помилка з кодом підтвердження." -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Позначити користувача тегами (літери, цифри, -, . та _), відокремлюючи кожен " -"комою або пробілом" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Цей код підтвердження застарілий. Будь ласка, розпочніть спочатку." -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "Виникли певні проблеми з токеном поточної сесії." +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою." -#: actions/tagother.php:191 actions/tagother.php:193 +#: actions/recoverpassword.php:152 msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -"Ви маєте можливість позначати тегами тих, до кого ви підписані, а також тих, " -"хто є підписаним до вас." - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "Не вдалося зберегти теги." - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Скористайтесь цією формою, щоб додати теги підпискам та підписчикам." - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "Такого тегу немає." - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "Мікроблог позначено тегом %s" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "Спроба заблокувати користувача невдала." +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "Спроба розблокувати користувача невдала." +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не знайдено." +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "Додайте свій рахунок на Твіттері, аби автоматично пересилати " +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" +"Ваше ім'я користувача на цьому сервері, або зареєстрована електронна адреса." -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "Ваше ім'я користувача на Твіттері" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Відновити" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "Пароль на Твіттері" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Скинути пароль" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "Друзі на Твіттері" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Відновити пароль" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "Ім'я користувача має складатись лише з цифр, " +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Запит на відновлення паролю відправлено." -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "Не вдається відновити інформацію рахунку " +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Дія невідома" -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "Помилка при розблокуванні." +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 або більше знаків, і не забудьте їх!" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "У запиті відсутній ID профілю." +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Такий само, як і пароль вище" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "Немає профілю з таким ID." +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Скинути" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "Відписано" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Введіть ім'я або електронну адресу." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "Групи %s" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "Користувача з такою електронною адресою або ім'ям немає." -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "Групи %s, сторінка %d" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Для цього користувача немає зареєстрованої електронної адреси." -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "Проблема при збереженні повідомлення. Невідомий користувач." +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Помилка при збереженні підтвердження адреси." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/recoverpassword.php:325 msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "" -"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " -"повертайтесь за кілька хвилин." - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "Вам заборонено надсилати дописи до цього сайту." - -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "Завантаження аватари" - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "Інше" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "Інші опції" +"Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви " +"вказали у налаштуваннях вашого профілю." -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "%s - %s" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Несподіване скидання паролю." -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "Сторінка без заголовку" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Пароль має складатись з 6-ти або більше знаків." -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "Відправна навігація по сайту" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Пароль та підтвердження не співпадають." -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "Персональний профіль і потік друзів" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Новий пароль успішно збережено. Тепер ви увійшли." -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "Пошук людей або текстів" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "" +"Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "Рахунок" +#: actions/register.php:92 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Помилка з кодом підтвердження." -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "Змінити електронну адресу, аватару, пароль, профіль" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Реєстрація успішна" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "Зв'язок з ІМ, СМС, Твіттер" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Реєстрація" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "Вийти з сайту" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "Реєстрацію не дозволено." -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "Увійти на сайт" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -msgid "Create an account" -msgstr "Створити новий рахунок" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Це недійсна електронна адреса." -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "Увійти з OpenID" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Ця адреса вже використовується." -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "Допоможіть!" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Недійсне ім'я або пароль." -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "Зауваження сайту" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "Огляд" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. " +"Неодмінно." -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "Зауваження сторінки" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 або більше знаків. Неодмінно." -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "Другорядна навігація по сайту" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Такий само, як і пароль вище. Неодмінно." -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "Ліцензія StatusNet software" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Пошта" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "Всі " +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Використовується лише для оновлень, оголошень та відновлення паролю" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "ліцензія." +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Довше ім'я, переважно ваше \"справжнє\" ім'я" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "Блокувати користувача" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Мої повідомлення та файли доступні під " -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "Блок" +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "Видалити з обраних" +#: actions/register.php:496 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " +"номер." -#: lib/facebookaction.php:268 +#: actions/register.php:537 #, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "Аби скористатись %s додатком для Facebook, ви маєте увійти " - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr " новий рахунок." - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "Опубліковано" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Вітаємо, %s! І ласкаво просимо до %%%%site.name%%%%. Звідси ви, можливо, " +"схочете...\n" +"\n" +"*Подивитись [ваш профіль](%s) та написати своє перше повідомлення.\n" +"*Додати [адресу Jabber/GTalk](%%%%action.imsettings%%%%), так щоб мати змогу " +"надсилати повідомлення через службу миттєвих повідомлень.\n" +"*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з вами " +"інтереси.\n" +"*Оновити [налаштування профілю](%%%%action.profilesettings%%%%) аби інші " +"дізнались більше про вас.\n" +"*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатись, що ви " +"нічого не пропустили. \n" +"\n" +"Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш " +"сервіс." -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "Позначити як обране" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " +"інструкції щодо підтвердження вашої електронної адреси.)" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "Експорт даних" +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"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-адресу вашого профілю нижче." -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "Фільтр для тегів" +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Віддалена підписка" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "Всі" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Підписатись до цього користувача" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "Тег" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Ім'я користувача" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "Оберіть тег до звуженого списку" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Ім'я користувача, за яким ви бажаєте слідувати" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "Вперед" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL-адреса профілю" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "URL-адреса веб-сторінки, блогу групи, або тематичного блогу" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Опис" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Підписатись" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "Недійсна URL-адреса профілю (неправильний формат)" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: actions/remotesubscribe.php:168 +#, fuzzy msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Локація групи, на зразок \"Місто, область (або регіон), країна\"" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Група" +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Це локальний профіль! Увійдіть аби підписатись." -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "Адмін" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не вдалося отримати токен запиту." -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 #, php-format -msgid "Edit %s group properties" -msgstr "Редагувати властивості групи %s" - -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "Лого" +msgid "Replies to %s" +msgstr "Відповіді до %s" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/replies.php:127 #, php-format -msgid "Add or edit %s logo" -msgstr "Додати або редагувати логотип %s" +msgid "Replies to %s, page %d" +msgstr "Відповіді %s, сторінка %d" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "Групи з найбільшою кількістю учасників" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Живлення повідомлень для %s" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "Групи з найбільшою кількістю дописів" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Живлення повідомлень для %s" -#: lib/grouptagcloudsection.php:56 +#: actions/replies.php:158 #, php-format -msgid "Tags in %s group's notices" -msgstr "Теги у повідомленнях групи %s" +msgid "Replies feed for %s (Atom)" +msgstr "Живлення повідомлень для %s" -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "Ця сторінка не доступна в " +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Приєднатись" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "Залишити" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "Увійти використовуючи ім'я та пароль" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Повідомлення до %1$s на %2$s" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "Зареєструвати новий рахунок" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Обрані повідомлення %s, сторінка %d" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "Увійти або зареєструватись з OpenID" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Не можна відновити обрані повідомлення." -#: lib/mail.php:175 +#: actions/showfavorites.php:170 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Ей, %s.\n" -"\n" +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Живлення для друзів %s" -#: lib/mail.php:236 +#: actions/showfavorites.php:177 #, php-format -msgid "%1$s is now listening to " -msgstr "%1$s тепер слідкує за повідомленями " +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Живлення для друзів %s" -#: lib/mail.php:254 lib/mail.php:253 +#: actions/showfavorites.php:184 #, php-format -msgid "Location: %s\n" -msgstr "Локація: %s\n" +msgid "Feed for favorites of %s (Atom)" +msgstr "Живлення для друзів %s" -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "Веб-сторінка: %s\n" +#: actions/showfavorites.php:205 +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 "" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showfavorites.php:207 #, php-format msgid "" -"Bio: %s\n" -"\n" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -"Про себе: %s\n" -"\n" -#: lib/mail.php:461 lib/mail.php:462 +#: actions/showfavorites.php:211 #, php-format -msgid "You've been nudged by %s" -msgstr "Вас спробував \"розштовхати\" %s" +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/mail.php:465 +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) цікавиться, що у вас нового " +msgid "%s group" +msgstr "Група %s" -#: lib/mail.php:555 +#: actions/showgroup.php:84 #, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s додав ваше повідомлення від %2$s" +msgid "%s group, page %d" +msgstr "Група %s, сторінка %d" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "Від" +#: actions/showgroup.php:218 +msgid "Group profile" +msgstr "Профіль групи" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "Надіслати пряме повідомлення" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "Надіслати повідомлення" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" +msgstr "Зауваження" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -msgid "Available characters" -msgstr "Лишилось знаків" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "у відповідь на" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "Діяльність групи" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "Відповісти на це повідомлення" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Живлення повідомлень для групи %s" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Відповісти" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Живлення повідомлень для групи %s" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "Видалити повідомлення" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Живлення повідомлень для групи %s" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "Видалити" +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Вихідні для %s" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "\"Розштовхати\" користувача" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Учасники" -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "\"Розштовхати\"" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(Пусто)" + +#: actions/showgroup.php:392 +msgid "All members" +msgstr "Всі учасники" + +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Статистика" + +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Створити" + +#: actions/showgroup.php:448 +#, 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 "" + +#: actions/showgroup.php:454 +#, fuzzy, 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** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Адмін" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "Спробувати \"розштовхати\" цього користувача" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Немає такого повідомлення." -#: lib/personaltagcloudsection.php:56 +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Лише відправник та отримувач мають можливість читати це повідомлення." + +#: actions/showmessage.php:108 #, php-format -msgid "Tags in %s's notices" -msgstr "Теги у повідомленнях %s" +msgid "Message to %1$s on %2$s" +msgstr "Повідомлення до %1$s на %2$s" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(пусто)" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "Повідомлення від %1$s на %2$s" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Загал" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Повідомлення відправлено" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "Групи користувачів" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Повідомлення позначені з %s" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "Нові теги" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "%s, сторінка %d" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "Постаті" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Живлення повідомлень для групи %s" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "Популярне" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Живлення повідомлень для %s" -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "Повідомлення" +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Живлення повідомлень для %s" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "Знайти групи на цьому сайті" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Живлення повідомлень для %s" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "Розділ без заголовку" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Вихідні для %s" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#: actions/showstream.php:191 #, php-format -msgid "People %s subscribes to" -msgstr "%s підписався до наступних людей" +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: actions/showstream.php:198 #, php-format -msgid "People subscribed to %s" -msgstr "Люди підписані до %s" +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: actions/showstream.php:234 #, php-format -msgid "Groups %s is a member of" -msgstr "%s бере участь в цих групах" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 +#: actions/showstream.php:239 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Налаштування СМС" + +#: actions/smssettings.php:69 #, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Запросіть друзів та колег приєднатись до вас на %s" +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Ви можете отримувати СМС через електронну пошту від %%site.name%%." -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "Користувач заблокував вас." +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Ця сторінка не доступна в " -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "Підписатись до цього користувача" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Поточний підтверджений телефонний номер." -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "Пусто" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "Очікування підтвердження телефонного номера." -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "Топ дописувачів" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Код підтвердження" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Розблокувати цього користувача" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Введіть код, який ви отримали телефоном." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Розблокувати" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Телефонний номер" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Відписатись від цього користувача" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Живлення для друзів %s" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Повідомляти мене за допомогою СМС; Я розімію, що, можливо, понесу надмірні " +"витрати від мого мобільного оператора." -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Живлення для друзів %s" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Немає телефонного номера." -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Живлення для друзів %s" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "Оператора не обрано." -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s з друзями" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "Це і так вже ваш телефонний номер." -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Ви можете завантажити вашу персональну аватару." +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "Цей телефонний номер належить іншому користувачу." -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: actions/smssettings.php:347 #, fuzzy -msgid "Avatar deleted." -msgstr "Аватару оновлено." - -#: actions/block.php:129 actions/block.php:136 msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +"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 "" +"Код підтвердження був відправлений на телефонний номер, який ви додали. " +"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "Це помилковий код підтвердження." + +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Це не ваш телефонний номер." + +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "Мобільний оператор" + +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Оберіть оператора" + +#: actions/smssettings.php:476 +#, php-format msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +"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 "" -"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " -"зворотня дія неможлива." +"Оператор мобільного зв'язку. Якщо вам відомий оператор, що підтримує " +"надсилання SMS через електронну пошту, але він тут не вказаний, напишіть нам " +"і ми внесемо його до списку." -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Код не введено" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Ви не підписані до цього профілю." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "Не вдалося зберегти підписку." + +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "Такого користувача немає." + +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "Підписані" + +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "Підписані до %s" + +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "Підписані до %s, сторінка %d" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Тут представлені ті, хто слідкує за вашими повідомленнями." + +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Тут представлені ті, хто слідкує за повідомленнями від %s." + +#: actions/subscribers.php:108 msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: actions/subscribers.php:110 #, php-format -msgid "Okay, do it!" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscribers.php:114 #, php-format msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Ви маєте можливість завантажити логотип для вашої группи." +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "Підписки %s" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "Підписки %s, сторінка %d" -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Мікроблог від %s" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Тут представлені ті, за чиїми повідомленнями ви слідкуєте." -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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%% за їх ім'ям, локацією або інтересами. " -"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " -"або більше." +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "Тут представлені ті, за чиїми повідомленнями слідкує %s." -#: actions/groups.php:90 +#: actions/subscriptions.php:121 #, php-format msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Помилка при відправці прямого повідомлення." - -#: actions/noticesearch.php:91 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Потік пошуку для \"%s\"" +msgid "%s is not listening to anyone." +msgstr "%1$s тепер слідкує за повідомленями " -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " -"змінювати налаштування." +#: actions/subscriptions.php:194 +msgid "Jabber" +msgstr "Jabber" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Живлення загального потоку" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "СМС" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Живлення загального потоку" +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "Не увійшли" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Живлення загального потоку" +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "Немає аргументу ID." -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: actions/tagother.php:65 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +msgid "Tag %s" +msgstr "Позначити %s" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "Профіль користувача." -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "Фото" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Позначити користувача" + +#: actions/tagother.php:151 msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " -"номер." - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "Створити" +"Позначити користувача тегами (літери, цифри, -, . та _), відокремлюючи кожен " +"комою або пробілом" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format +#: actions/tagother.php:193 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%%%%))" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +"Ви маєте можливість позначати тегами тих, до кого ви підписані, а також тих, " +"хто є підписаним до вас." -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Профіль групи" +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Не вдалося зберегти теги." -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr " профіль" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "Скористайтесь цією формою, щоб додати теги підпискам та підписчикам." -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "Живлення повідомлень для %s" +#: actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Повідомлення позначені %s, сторінка %d" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Живлення повідомлень для %s" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Живлення повідомлень для %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Вихідні для %s" +msgid "Notice feed for tag %s (Atom)" +msgstr "Живлення повідомлень для %s" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "Аватара" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Такого тегу немає." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "Налаштування профілю" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API метод наразі знаходиться у розробці." -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "У запиті відсутній ID профілю." -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +#: actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Немає профілю з таким ID." -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "" -"Код підтвердження був відправлений на телефонний номер, який ви додали. " -"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Відписано" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "Немає такого користувача" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -"Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень " -"туди, " -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Не маю можливості відновити інформацію для \"%s\" з Твіттера." +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Авторизувати підписку" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:110 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" "Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " "підписатись на повідомлення даного користувача. Якщо ви не збирались " "підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." -#: actions/usergroups.php:131 actions/usergroups.php:130 +#: actions/userauthorization.php:188 #, fuzzy -msgid "Search for more groups" -msgstr "Пошук людей або текстів" +msgid "License" +msgstr "ліцензія." -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " -"повертайтесь за кілька хвилин." +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Погодитись" -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "Зв'язок з ІМ, СМС, Твіттер" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "Підписатись до цього користувача" + +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Забраковано" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Badge" -msgstr "\"Розштовхати\"" +msgid "Reject this subscription" +msgstr "Підписки %s" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Немає запиту на авторизацію!" + +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Підписку авторизовано" + +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" +"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " +"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " +"авторизувати підписку. Ваш підписний токен:" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Підписку скинуто" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: actions/userauthorization.php:261 +#, fuzzy 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, ви маєте увійти " - -#: lib/feed.php:85 -msgid "RSS 1.0" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" +"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " +"з інструкціями на сайті для більш конкретної інформації про те, як скинути " +"підписку." -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/imagefile.php:75 +#: actions/userauthorization.php:322 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: actions/userauthorization.php:338 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Щиро ваші,\n" -"%4$s.\n" +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не можна прочитати URL аватари '%s'" -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Неправильний тип зображення для '%s'" -#: lib/mail.php:513 -#, php-format +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Немає ID." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Налаштування профілю" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: actions/usergroups.php:64 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +msgid "%s groups, page %d" +msgstr "Групи %s, сторінка %d" -#: lib/searchaction.php:122 lib/searchaction.php:120 +#: actions/usergroups.php:130 #, fuzzy -msgid "Search site" -msgstr "Пошук" +msgid "Search for more groups" +msgstr "Пошук людей або текстів" -#: lib/section.php:106 -msgid "More..." +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Ви не є учасником цієї групи." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/all.php:80 actions/all.php:127 +#: classes/File.php:137 #, php-format msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/all.php:85 actions/all.php:132 +#: classes/File.php:147 #, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/all.php:87 actions/all.php:134 +#: classes/File.php:154 #, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "Не можна долучити повідомлення." + +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "Не можна оновити повідомлення з новим URI." + +#: classes/Notice.php:164 #, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Помилка бази даних при додаванні тегу: %s" + +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблема при збереженні повідомлення." + +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Проблема при збереженні повідомлення. Невідомий користувач." + +#: classes/Notice.php:188 msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" +"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " +"повертайтесь за кілька хвилин." -#: actions/attachment.php:73 +#: classes/Notice.php:194 #, fuzzy -msgid "No such attachment." -msgstr "Такого документа немає." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " +"повертайтесь за кілька хвилин." -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Список учасників цієї групи." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Вам заборонено надсилати дописи до цього сайту." -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Список учасників цієї групи." +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Проблема при збереженні повідомлення." -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Профіль користувача." +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "Помилка бази даних при додаванні відповіді: %s" -#: actions/blockedfromgroup.php:93 +#: classes/User.php:333 #, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s з друзями, сторінка %d" +msgid "Welcome to %1$s, @%2$s!" +msgstr "Повідомлення до %1$s на %2$s" -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "Список учасників цієї групи." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Профіль" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Спроба розблокувати користувача невдала." +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Змінити налаштування профілю" + +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "Завантаження аватари" + +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Змінити ваш пароль" + +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Змінити електронну адресу вручну" + +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/conversation.php:99 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Conversation" -msgstr "Код підтвердження" +msgid "Design your profile" +msgstr "Профіль користувача." -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "Не можна видалити це повідомлення." +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Інше" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Інші опції" + +#: lib/action.php:144 #, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgid "%s - %s" +msgstr "%s - %s" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Недійсний тег: \"%s\"" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "Сторінка без заголовку" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Це ім'я вже використовується. Спробуйте інше." +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "Відправна навігація по сайту" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +#: lib/action.php:430 +msgid "Home" +msgstr "Дім" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Не можна позначити як обране." +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "Персональний профіль і потік друзів" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: lib/action.php:432 +msgid "Account" +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 "" +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "Змінити електронну адресу, аватару, пароль, профіль" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +#: lib/action.php:435 +msgid "Connect" +msgstr "З'єднання" -#: actions/file.php:34 +#: lib/action.php:435 #, fuzzy -msgid "No notice id" -msgstr "Нове повідомлення" +msgid "Connect to services" +msgstr "Невдале перенаправлення на сервер: %s" -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "Нове повідомлення" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Запросити" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Запросіть друзів та колег приєднатись до вас на %s" -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: lib/action.php:445 +msgid "Logout" +msgstr "Вийти" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "Це недійсне ім'я користувача." +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "Вийти з сайту" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -#, fuzzy -msgid "No group specified." -msgstr "Не визначено жодного профілю." +#: lib/action.php:450 +msgid "Create an account" +msgstr "Створити новий рахунок" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "Увійти на сайт" -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Користувач заблокував вас." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Допомога" -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Ви не є учасником цієї групи." +#: lib/action.php:456 +msgid "Help me!" +msgstr "Допоможіть!" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "Блокувати користувача." +#: lib/action.php:459 +msgid "Search" +msgstr "Пошук" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "Пошук людей або текстів" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/action.php:480 +msgid "Site notice" +msgstr "Зауваження сайту" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." +#: lib/action.php:546 +msgid "Local views" +msgstr "Огляд" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Групи" +#: lib/action.php:612 +msgid "Page notice" +msgstr "Зауваження сторінки" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/action.php:714 +msgid "Secondary site navigation" +msgstr "Другорядна навігація по сайту" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 -#, fuzzy -msgid "Couldn't update your design." -msgstr "Не вдалося оновити користувача." +#: lib/action.php:721 +msgid "About" +msgstr "Про" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Не маю можливості зберегти ваші налаштування Твіттера!" +#: lib/action.php:723 +msgid "FAQ" +msgstr "ЧаПи" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -#, fuzzy -msgid "Design preferences saved." -msgstr "Преференції синхронізації збережно." +#: lib/action.php:727 +msgid "TOS" +msgstr "" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy -msgid "Make user an admin of the group" -msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Конфіденційність" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make Admin" -msgstr "Адмін" +#: lib/action.php:732 +msgid "Source" +msgstr "Джерело" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +#: lib/action.php:734 +msgid "Contact" +msgstr "Контакт" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/action.php:736 #, fuzzy -msgid "No results." -msgstr "Немає результатів" +msgid "Badge" +msgstr "\"Розштовхати\"" -#: actions/groupsearch.php:82 +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "Ліцензія StatusNet software" + +#: lib/action.php:767 #, php-format msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%" +"site.broughtbyurl%%). " -#: actions/groupsearch.php:85 +#: lib/action.php:769 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** це сервіс мікроблогів. " -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Сервіс працює на [StatusNet](http://status.net/) - програмному забезпеченні " +"для мікроблогів, версія %s, доступному під [GNU Affero General Public " +"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: actions/groupunblock.php:95 +#: lib/action.php:785 #, fuzzy -msgid "User is not blocked from group." -msgstr "Користувач заблокував вас." +msgid "Site content license" +msgstr "Ліцензія StatusNet software" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/action.php:794 +msgid "All " +msgstr "Всі " -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/action.php:799 +msgid "license." +msgstr "ліцензія." -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "Нумерація сторінок" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" +#: lib/action.php:1062 +msgid "After" +msgstr "Вперед" + +#: lib/action.php:1070 +msgid "Before" +msgstr "Назад" + +#: lib/action.php:1119 +msgid "There was a problem with your session token." +msgstr "Виникли певні проблеми з токеном поточної сесії." -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "Message sent" -msgstr "Повідомлення" +msgid "Provider" +msgstr "Профіль" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "Результати команди" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "Команду виконано" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "Команду не виконано" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "Даруйте, але виконання команди ще не завершено." -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Спробу \"розштовхати\" зараховано" + +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "Не вдалося зберегти профіль." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "Користувач має останнє повідомлення" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "Повідомлення позначено як обране." -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "Повне ім'я: %s" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "Локація: %s" -#: actions/noticesearch.php:121 +#: lib/command.php:324 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +msgid "Homepage: %s" +msgstr "Веб-сторінка: %s" -#: actions/noticesearch.php:124 +#: lib/command.php:327 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +msgid "About: %s" +msgstr "Про мене: %s" -#: actions/openidsettings.php:70 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, fuzzy, 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%%) дає вам можливість реєструватися на багатьох " -"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "Помилка при відправці прямого повідомлення." -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Відповісти на це повідомлення" + +#: lib/command.php:441 #, fuzzy -msgid "View profile designs" -msgstr "Налаштування профілю" +msgid "Error saving notice." +msgstr "Проблема при збереженні повідомлення." -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "Зазначте ім'я користувача, до якого бажаєте підписатись" -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:502 #, php-format -msgid "Beyond the page limit (%s)" -msgstr "" +msgid "Subscribed to %s" +msgstr "Підписано до %s" -#: actions/public.php:179 +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "Зазначте ім'я користувача, від якого бажаєте відписатись" + +#: lib/command.php:530 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" +msgid "Unsubscribed from %s" +msgstr "Відписано від %s" -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "Виконання команди ще не завершено." -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +#: lib/command.php:551 +msgid "Notification off." +msgstr "Сповіщення вимкнуто." + +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "Не можна вимкнути сповіщення." -#: actions/public.php:245 actions/public.php:238 +#: lib/command.php:574 +msgid "Notification on." +msgstr "Сповіщення увімкнуто." + +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "Не можна увімкнути сповіщення." + +#: lib/command.php:597 #, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" -"wiki/Micro-blogging) " +msgid "Could not create login token for %s" +msgstr "Не вдалося створити форму OpenID: %s" -#: actions/publictagcloud.php:69 +#: lib/command.php:602 #, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/publictagcloud.php:75 -#, php-format +#: lib/command.php:613 msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/recoverpassword.php:152 +#: lib/common.php:191 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +msgid "No configuration file found. " +msgstr "Немає коду підтвердження." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -"У разі, якщо ви забули або загубили свій пароль, ви маєте можливість " -"отримати новий на ту електронну адресу, яку було збережено у профілі вашого " -"рахунку." -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Вас ідентифіковано. Введіть новий пароль нижче. " +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: actions/recoverpassword.php:188 +#: lib/common.php:194 #, fuzzy -msgid "Password recover" -msgstr "Запит на відновлення паролю відправлено." +msgid "Go to the installer." +msgstr "Увійти на сайт" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Помилка з кодом підтвердження." +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "ІМ" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Підписатись до цього користувача" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Оновлення через SMS" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "Обрані повідомлення %s, сторінка %d" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Завантажити" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 +#: lib/designsettings.php:109 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." +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Живлення повідомлень для групи %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Живлення повідомлень для групи %s" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Живлення повідомлень для групи %s" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Змінити ваш пароль" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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. " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -"**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " -"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/showgroup.php:474 actions/showgroup.php:482 +#: lib/designsettings.php:191 #, fuzzy -msgid "Admins" -msgstr "Адмін" +msgid "Content" +msgstr "З'єднання" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "Такого користувача немає." +msgid "Sidebar" +msgstr "Пошук" -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Повідомлення позначені з %s" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Текст" -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Живлення повідомлень для групи %s" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Увійти" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " -"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Видалити з обраних" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Позначити як обране" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s тепер слідкує за повідомленями " +#: lib/favorform.php:140 +msgid "Favor" +msgstr "Обрати" -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Живлення повідомлень для %s" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "Експорт даних" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Живлення повідомлень для %s" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Це повідомлення вже є обраним!" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy -msgid "That status is not a favorite!" -msgstr "Це повідомлення не є обраним!" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "Не вдається відновити загальний потік." +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "Жодного отримувача не визначено." +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Фільтр для тегів" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Всі" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#: lib/galleryaction.php:139 #, fuzzy -msgid "Could not find target user." -msgstr "Жодних статусів не виявлено." +msgid "Select tag to filter" +msgstr "Оберіть оператора" -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Оновленні відповіді %2$s" +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Тег" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Оновлення від %1$s на %2$s!" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Оберіть тег до звуженого списку" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Вперед" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy -msgid "License" -msgstr "ліцензія." +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL-адреса веб-сторінки, блогу групи, або тематичного блогу" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/groupeditform.php:168 #, fuzzy -msgid "Reject this subscription" -msgstr "Підписки %s" +msgid "Describe the group or topic" +msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy -msgid "Profile design" -msgstr "Налаштування профілю" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Опис" + +#: lib/groupeditform.php:179 msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Локація групи, на зразок \"Місто, область (або регіон), країна\"" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/usergroups.php:153 +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Група" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блок" + +#: lib/groupnav.php:101 #, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Ви не є учасником цієї групи." +msgid "%s blocked users" +msgstr "Блокувати користувача." -#: actions/usergroups.php:158 +#: lib/groupnav.php:107 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" +msgid "Edit %s group properties" +msgstr "Редагувати властивості групи %s" -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" +#: lib/groupnav.php:112 +msgid "Logo" +msgstr "Лого" -#: classes/File.php:137 classes/File.php:147 +#: lib/groupnav.php:113 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" +msgid "Add or edit %s logo" +msgstr "Додати або редагувати логотип %s" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Додати або редагувати логотип %s" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Групи з найбільшою кількістю учасників" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "Групи з найбільшою кількістю дописів" -#: classes/File.php:145 classes/File.php:154 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +msgid "Tags in %s group's notices" +msgstr "Теги у повідомленнях групи %s" -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Проблема при збереженні повідомлення." +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Ця сторінка не доступна для того типу медіа, з яким ви погодились" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "Повідомлення до %1$s на %2$s" +msgid "That file is too big. The maximum file size is %s." +msgstr "Ви маєте можливість завантажити логотип для вашої группи." -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Часткове завантаження." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Профіль користувача." +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Система відповіла помилкою при завантаженні цього файла." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "Це не зображення, або файл зіпсовано." -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Формат зображення не підтримується." -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "Файл втрачено." -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "Профіль" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "Тип файлу не підтримується" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Нове повідомлення" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/joinform.php:114 +msgid "Join" +msgstr "Приєднатись" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Залишити" -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "Завантажити" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Увійти використовуючи ім'я та пароль" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "Зареєструвати новий рахунок" -#: lib/designsettings.php:139 -msgid "On" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" +"Лише користувач має можливість переглядати свою власну поштову скриньку." -#: lib/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:139 +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/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " від " -#: lib/designsettings.php:161 -msgid "Tile background image" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Підтвердження електронної адреси" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Змінити ваш пароль" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s." -#: lib/designsettings.php:178 -msgid "Background" +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Щиро ваші,\n" +"%4$s.\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "З'єднання" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Пошук" +#: lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "Локація: %s\n" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Увійти" +#: lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "Веб-сторінка: %s\n" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" +"Про себе: %s\n" +"\n" -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Нова електронна адреса для надсилання повідомлень на %s" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"Ви маєте нову поштову адресу на %1$s.\n" +"\n" +"Надсилайте листи на %2$s, щоб друкувати нові повідомлення.\n" +"\n" +"Більше інформації про використання електронної пошти на %3$s.\n" +"\n" +"Щиро ваші,\n" +"%4$s" -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s статус" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Підтвердження СМС" + +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "Вас спробував \"розштовхати\" %s" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Нове приватне повідомлення від %s" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:513 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Блок" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Блокувати користувача." - -#: lib/groupnav.php:119 +#: lib/mail.php:554 #, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "Додати або редагувати логотип %s" +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s додав(ла) ваше повідомлення до обраних" #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -7055,656 +4277,439 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"\t%3$s\n" "\n" -"\t%2$s\n" +"It reads:\n" +"\n" +"\t%4$s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mailbox.php:139 +#: lib/mediafile.php:147 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." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Немає змісту!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "Користувач" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Пошук" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Веб-сторінка має недійсну URL-адресу." +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Не вдається відновити загальний потік." -#: lib/webcolor.php:123 +#: lib/mediafile.php:270 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid " Try using another %s format." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Такого тегу немає." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Пряме повідомлення до %s" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Надто довго. Максимальний розмір 140 знаків." - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Не вдалося додати користувача: користувача не знайдено." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "опис надто довгий (140 знаків максимум)" - -#: actions/apigroupjoin.php:110 -#, fuzzy -msgid "You are already a member of that group." -msgstr "Ви вже є учасником цієї групи" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Користувачеві %s не вдалось приєднатись до групи %s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "Ви не є учасником цієї групи." - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Не вдалося видалити користувача %s з групи %s" +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Надіслати пряме повідомлення" -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "Групи %s" +#: lib/messageform.php:146 +msgid "To" +msgstr "До" -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "%s бере участь в цих групах" +#: lib/messageform.php:162 lib/noticeform.php:173 +msgid "Available characters" +msgstr "Лишилось знаків" -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Діяльність групи" +#: lib/noticeform.php:145 +msgid "Send a notice" +msgstr "Надіслати повідомлення" -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Аватару оновлено." +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "Що нового, %s?" -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Формат зображення не підтримується." - -#: actions/bookmarklet.php:50 +#: lib/noticelist.php:478 #, fuzzy -msgid "Post to " -msgstr "Фото" - -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "опис надто довгий (140 знаків максимум)" +msgid "in context" +msgstr "Немає змісту!" -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Оновлення від %1$s на %2$s!" +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "Відповісти на це повідомлення" -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує." +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Відповісти" -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Не авторизовано." +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "\"Розштовхати\" користувача" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "Не вдалося перетворити токени запиту на токени звернення." +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "\"Розштовхати\"" -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Невідома версія протоколу OMB." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Спробувати \"розштовхати\" цього користувача" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Такого повідомлення немає." +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Помилка при додаванні нового профілю" -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "Файл втрачено." +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Помилка при додаванні аватари" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Оновлення від %1$s на %2$s!" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Помилка при додаванні віддаленого профілю" -#: actions/imsettings.php:89 +#: lib/oauthstore.php:345 #, fuzzy -msgid "IM is not available." -msgstr "Ця сторінка не доступна в " +msgid "Duplicate notice" +msgstr "Видалити повідомлення" -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " -"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" -"action.openidlogin%%). " +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Не вдалося додати нову підписку." -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Оновлення від %1$s на %2$s!" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Особисте" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Всі оновлення за збігом з \"%s\"" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Відповіді" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "З'єднання" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Обрані" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "Користувач" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Вхідні" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Опишіть себе та свої інтереси (140 знаків)" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Ваші вхідні повідомлення" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "Опишіть себе та свої " +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Вихідні" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Ви перевищили ліміт (140 знаків це максимум)" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Надіслані вами повідомлення" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Теги у повідомленнях %s" -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Підписки" -#: actions/remotesubscribe.php:176 -#, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "Це локальний профіль! Увійдіть аби підписатись." +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Всі підписки" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Не вдалося отримати токен запиту." +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Підписчики" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Живлення повідомлень для %s" +#: lib/profileaction.php:157 +msgid "All subscribers" +msgstr "Всі підписчики" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Живлення повідомлень для %s" +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Користувач" -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Живлення повідомлень для %s" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "З нами від" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "Повідомлення до %1$s на %2$s" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "Всі групи" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Живлення для друзів %s" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Загал" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Живлення для друзів %s" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Групи користувачів" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Живлення для друзів %s" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Нові теги" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Постаті" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Вихідні для %s" +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Популярне" -#: actions/shownotice.php:90 +#: lib/searchaction.php:120 #, fuzzy -msgid "Notice deleted." -msgstr "Повідомлення відправлено" +msgid "Search site" +msgstr "Пошук" -#: actions/smssettings.php:91 +#: lib/searchaction.php:162 #, fuzzy -msgid "SMS is not available." -msgstr "Ця сторінка не доступна в " +msgid "Search help" +msgstr "Пошук" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Живлення повідомлень для %s" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Люди" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Знайти людей на цьому сайті" -#: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " -"підписатись на повідомлення даного користувача. Якщо ви не збирались " -"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "Повідомлення" -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " -"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " -"авторизувати підписку. Ваш підписний токен:" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Знайти за змістом повідомлень" -#: actions/userauthorization.php:261 -#, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " -"з інструкціями на сайті для більш конкретної інформації про те, як скинути " -"підписку." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Знайти групи на цьому сайті" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Розділ без заголовку" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:307 +#: lib/subgroupnav.php:83 #, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +msgid "People %s subscribes to" +msgstr "%s підписався до наступних людей" -#: actions/userauthorization.php:322 +#: lib/subgroupnav.php:91 #, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +msgid "People subscribed to %s" +msgstr "Люди підписані до %s" -#: actions/userauthorization.php:338 +#: lib/subgroupnav.php:99 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Groups %s is a member of" +msgstr "%s бере участь в цих групах" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Не можна прочитати URL аватари '%s'" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Неправильний тип зображення для '%s'" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(пусто)" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Невдале перенаправлення на сервер: %s" +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Ліцензія StatusNet software" +#: lib/subs.php:52 +msgid "User has blocked you." +msgstr "Користувач заблокував вас." -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою." +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "Невдала підписка." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "Не вдалося підписати іншого до вас." -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Спробу \"розштовхати\" зараховано" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Не підписано!." -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Не вдалося видалити підписку." -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Пусто" -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "Топ дописувачів" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Відповісти на це повідомлення" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Відписатись від цього користувача" -#: lib/command.php:441 -#, fuzzy -msgid "Error saving notice." -msgstr "Проблема при збереженні повідомлення." +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Відписатись" -#: lib/common.php:191 +#: lib/userprofile.php:116 #, fuzzy -msgid "No configuration file found. " -msgstr "Немає коду підтвердження." - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +msgid "Edit Avatar" +msgstr "Аватара" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Діяльність користувача" -#: lib/common.php:194 +#: lib/userprofile.php:248 #, fuzzy -msgid "Go to the installer." -msgstr "Увійти на сайт" +msgid "Edit profile settings" +msgstr "Налаштування профілю" -#: lib/galleryaction.php:139 -#, fuzzy -msgid "Select tag to filter" -msgstr "Оберіть оператора" +#: lib/userprofile.php:249 +msgid "Edit" +msgstr "" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "Надіслати пряме повідомлення цьому користувачеві" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "Повідомлення" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Нове повідомлення" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "мить тому" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s додав(ла) ваше повідомлення до обраних" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "хвилину тому" -#: lib/mail.php:556 +#: lib/util.php:848 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "about %d minutes ago" +msgstr "близько %d хвилин тому" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "годину тому" -#: lib/mail.php:613 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgid "about %d hours ago" +msgstr "близько %d годин тому" -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " від " +#: lib/util.php:854 +msgid "about a day ago" +msgstr "день тому" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "близько %d днів тому" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Не вдається відновити загальний потік." +#: lib/util.php:858 +msgid "about a month ago" +msgstr "місяць тому" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Видалити повідомлення" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "близько %d місяців тому" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Недійсний зміст повідомлення" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "рік тому" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Не вдалося створити форму OpenID: %s" +msgid "%s is not a valid color!" +msgstr "Веб-сторінка має недійсну URL-адресу." -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "Ви маєте можливість завантажити логотип для вашої группи." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "Не можна розібрати повідомлення." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Це не зареєстрований користувач." + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Вибачте, але це не є вашою електронною адресою для входної пошти." + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" +"Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." diff --git a/locale/vi/LC_MESSAGES/statusnet.mo b/locale/vi/LC_MESSAGES/statusnet.mo index e96b142b4..df6915cec 100644 Binary files a/locale/vi/LC_MESSAGES/statusnet.mo and b/locale/vi/LC_MESSAGES/statusnet.mo differ diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index b017c6ef4..b7bc3231a 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -5,4704 +5,1767 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:24+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:59:01+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr " Tìm dòng thông tin cho \"%s\"" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Không có tin nhắn nào." -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "Không có user nào." -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " từ " +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s và bạn bè" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" +msgid "%s and friends" +msgstr "%s và bạn bè" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s moi ban tham gia vao %2$s" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Chọn những người bạn của %s" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s mời bạn tham gia vào %2$s (%3$s).\n" -"\n" -"%2$s là dịch vụ tin nhắn nhanh giúp bạn liên kết với người quen và những " -"người yêu thích bạn.\n" -"\n" -"Bạn cũng có thể chia sẻ những suy nghĩ, thông tin về bạn, hoặc đời sống của " -"bạn lên trên mạng cho những người quen của bạn biết. Dịch vụ này cũng giúp " -"bạn gặp gỡ những người chưa quen biết nhưng có cùng sở thích.\n" -"\n" -"%1$s nói:\n" -"\n" -"%4$s\n" -"\n" -"Bạn có thể tham khảo trang thông tin cá nhân của %1$s trên %2$s tại đây:\n" -"\n" -"%5$s\n" -"\n" -"Nếu bạn muốn sử dụng dịch vụ này, hãy nhấn chuột vào liên kết dưới đây để " -"chấp nhận lời mời.\n" -"\n" -"%6$s\n" -"\n" -"Nếu không thích tham gia, bạn có thể bỏ qua tin nhắn này. Rất cảm ơn sự kiên " -"nhẫn vì đã làm mất thời gian của bạn.\n" -"\n" -"Thân, %2$s\n" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Chọn những người bạn của %s" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s đang theo dõi lưu ý của bạn trên %2$s." +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Chọn những người bạn của %s" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Người bạn trung thành của bạn,\n" -"%4$s.\n" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "Trạng thái của %1$s vào %2$s" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s Dòng tin công cộng" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s và bạn bè" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, fuzzy, php-format -msgid "%s public timeline" -msgstr "Dòng tin công cộng" +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, fuzzy, php-format -msgid "%s status" -msgstr "Trạng thái của %1$s vào %2$s" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "Phương thức API không tìm thấy!" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, fuzzy, php-format -msgid "%s timeline" -msgstr "Dòng tin nhắn của %s" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "Phương thức này yêu cầu là POST." -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "%s cập nhật từ tất cả mọi người!" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " -"của bạn.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "Người dùng không có thông tin." + +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -"**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" -"%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + +#: actions/apidirectmessagenew.php:126 +#, fuzzy +msgid "No message text!" +msgstr "Không có tin nhắn nào." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "Người đăng ký nên được phân theo tên hoặc nickname" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Quá dài. Tối đa là 140 ký tự." -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay " +#: actions/apidirectmessagenew.php:146 +#, fuzzy +msgid "Recipient user not found." +msgstr "Không tìm thấy user." -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay khoảng trắng. Bắt " -"buộc." -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "Nhiều hơn 6 ký tự" +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Tin nhắn riêng" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "Nhiều hơn 6 ký tự, đừng quên nó!" +#: actions/apidirectmessage.php:93 +#, fuzzy, php-format +msgid "All the direct messages sent from %s" +msgstr "Bạn có tin nhắn riêng từ %s" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "Nhiều hơn 6 ký tự. Bắt buộc" +#: actions/apidirectmessage.php:101 +#, fuzzy, php-format +msgid "Direct messages to %s" +msgstr "Tin nhắn riêng" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:105 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "All the direct messages sent to %s" msgstr "" -"Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi " -"tin nhắn đến bạn." -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " -"làm theo hướng dẫn." +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: ../actions/smssettings.php:216 actions/smssettings.php:224 +#: actions/apifavoritecreate.php:119 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " -"làm theo hướng dẫn." +msgid "This status is already a favorite!" +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "Phương thức API không tìm thấy!" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Không thể tạo favorite." -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "Phương thức API dưới cấu trúc có sẵn." +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "Giới thiệu" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +#, fuzzy +msgid "Could not delete favorite." +msgstr "Không thể tạo favorite." -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "Chấp nhận" +#: actions/apifriendshipscreate.php:109 +#, fuzzy +msgid "Could not follow user: User not found." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "Thêm" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "Thêm OpenID" +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "Thêm mới hoặc xóa OpenIDs" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "Địa chỉ" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -"Các địa chỉ email của những người bạn muốn mời (mỗi địa chỉ nằm trên 1 dòng)" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "Tất cả đăng nhận" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "Tất cả các cập nhật của %s" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Không tìm thấy bất kỳ trạng thái nào." -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "Các thay đổi phù hợp với từ \"%s\"" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Không thể tạo favorite." -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "Đã đăng nhập." +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Không thể tạo favorite." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "Đã đăng nhận rồi!" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Không thể tạo đăng nhận." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng." -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "Đăng nhận cho phép" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "Sẽ tự động đăng nhập, không dành cho các máy sử dụng chung!" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "Biệt hiệu không hợp lệ." -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Tự động theo những người nào đăng ký theo tôi" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "Trang chủ không phải là URL" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "Hình đại diện" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)." -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "Hình đại diện đã được cập nhật." +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" + +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Tên khu vực quá dài (không quá 255 ký tự)." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Too many aliases! Maximum %d." msgstr "" -"Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra tài khoản Jabber/GTalk để " -"nhận tin nhắn và lời hướng dẫn. (Bạn đã thêm %s vào danh sách bạn thân chưa?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Trang chủ '%s' không hợp lệ" + +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." + +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -"Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến (hoặc thư rác) " -"để nhận tin nhắn và lời hướng dẫn." -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 +#: actions/apigroupjoin.php:110 #, fuzzy -msgid "Awaiting confirmation on this phone number." -msgstr "Đó không phải là số điện thoại của bạn." +msgid "You are already a member of that group." +msgstr "Bạn đã theo những người này:" -#: ../lib/util.php:1318 lib/util.php:1452 +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/apigroupleave.php:114 #, fuzzy -msgid "Before »" -msgstr "Trước" +msgid "You are not a member of this group." +msgstr "Bạn chưa cập nhật thông tin riêng" -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "Lý lịch" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "Lý lịch quá dài (không quá 140 ký tự)" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, fuzzy, php-format +msgid "%s groups" +msgstr "%s và nhóm" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "Không thể xóa tin nhắn này." +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Mã nhóm" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s và nhóm" -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#: actions/apigrouplist.php:103 #, php-format -msgid "Can't read avatar URL '%s'" -msgstr "Không thể đọc URL cho hình đại diện '%s'" +msgid "Groups %s is a member of on %s." +msgstr "Bạn chưa cập nhật thông tin riêng" -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "Không thể lưu mật khẩu mới" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Phương thức này yêu cầu là POST hoặc DELETE" -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "Hủy" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Bạn đã không xóa trạng thái của những người khác." -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "Không thể thiết lập đối tượng OpenID." +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Hình đại diện đã được cập nhật." -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "Không thể bình thường hóa Jabber ID" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -#, fuzzy -msgid "Cannot normalize that email address" -msgstr "Không thể bình thường hóa địa chỉ GTalk này" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Quá dài. Tối đa là 140 ký tự." -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "Thay đổi" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "Không tìm thấy" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "Đang thực hiện việc thay đổi email" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "Đổi mật khẩu" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Không hỗ trợ kiểu file ảnh này." -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "Thay đổi mật khẩu của bạn" +#: actions/apitimelinefavorites.php:107 +#, fuzzy, php-format +msgid "%s / Favorites from %s" +msgstr "Tìm kiếm các tin nhắn ưa thích của %s" -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "Thay đổi các thiết lập trong hồ sơ cá nhân của bạn" +#: actions/apitimelinefavorites.php:119 +#, fuzzy, php-format +msgid "%s updates favorited by %s / %s." +msgstr "Tất cả các cập nhật của %s" -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "Xác nhận" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, fuzzy, php-format +msgid "%s timeline" +msgstr "Dòng tin nhắn của %s" -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "Xác nhận địa chỉ" +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "Sự xác nhận đã bị hủy bỏ." +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -#, fuzzy -msgid "Confirmation code" -msgstr "Không có mã số xác nhận." +#: actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "Không tìm thấy mã xác nhận." +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, fuzzy, php-format +msgid "%s public timeline" +msgstr "Dòng tin công cộng" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Chúc mừng, %s! Chào mừng bạn đến với %%%%site.name%%%%. Bây giờ bạn có " -"thể...\n" -"\n" -"* Vào trang [Hồ sơ cá nhân](%s) của bạn và gửi tin nhắn đầu tiên. \n" -"* Thêm [địa chỉ Jabber/GTalk](%%%%action.imsettings%%%%) để có thể gửi tin " -"nhắn nhanh.\n" -"* [Tìm kiếm người quen](%%%%action.peoplesearch%%%%) mà bạn nghĩ là có thể " -"chia sẻ niềm vui.\n" -"* Đọc xuyên suốt [hướng dẫn](%%%%doc.help%%%%) để hiểu thêm về dịch vụ của " -"chúng tôi.\n" -"\n" -"Cảm ơn bạn đã đăng ký để là thành viên và rất mong bạn sẽ thích dịch vụ này." - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "Kết nối" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "Kết nối đến tài khoản hiện hữu" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "Liên hệ" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "Không thể tạo OpenID mẫu: %s" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -#, fuzzy -msgid "Could not follow user: User not found." -msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." +msgid "%s updates from everyone!" +msgstr "%s cập nhật từ tất cả mọi người!" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "Could not redirect to server: %s" -msgstr "Không thể chuyển đến máy chủ: %s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "Không thể lưu hình đại diện" +msgid "Notices tagged with %s" +msgstr "Thông báo được gắn thẻ %s" -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "Không thể lưu thông tin về hồ sơ cá nhân" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Dòng tin nhắn cho %s" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +#: actions/apiusershow.php:96 #, fuzzy -msgid "Could not subscribe other to you." -msgstr "Không thể tạo favorite." +msgid "Not found." +msgstr "Không tìm thấy" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +#: actions/attachment.php:73 #, fuzzy -msgid "Could not subscribe." -msgstr "Chưa đăng nhận!" +msgid "No such attachment." +msgstr "Không có tài liệu nào." -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "Không có biệt hiệu." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "Không thể chuyển các token yêu cầu đến token truy cập." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Không có kích thước." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "Không thể xóa email xác nhận." +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Kích thước không hợp lệ." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "Không thể xóa đăng nhận." +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "Hình đại diện" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "Không tìm thấy bất kỳ trạng thái nào." +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" +"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " +"về bạn." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "Không thể lấy token yêu cầu." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +#, fuzzy +msgid "User without matching profile" +msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "Không thể chèn mã xác nhận." +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "Thay đổi hình đại diện" -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "Không thể chèn thêm vào đăng nhận." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "Không thể lưu hồ sơ cá nhân." +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "Xem trước" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 +#: actions/avatarsettings.php:148 lib/noticelist.php:522 #, fuzzy -msgid "Couldn't update user for autosubscribe." -msgstr "Không thể cập nhật thành viên." +msgid "Delete" +msgstr "Xóa tin nhắn" -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "Tải file" + +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 #, fuzzy -msgid "Couldn't update user record." -msgstr "Không thể cập nhật thành viên." +msgid "Crop" +msgstr "Nhóm" -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "Không thể cập nhật thành viên." +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "Tạo" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Bất ngờ gửi mẫu thông tin. " -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "Tạo người dùng mới với tên đăng nhập này." +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "" -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "Tạo tài khoản mới" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "Tạo tài khoản mới hoặc dùng OpenID" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "Hình đại diện đã được cập nhật." -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Địa chỉ Jabber/GTalk vừa được xác nhận." +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "Cập nhật hình đại diện không thành công." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "SMS xác nhận ngay - đã cho phép gửi qua điện thoại. " +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "Hình đại diện đã được cập nhật." -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "Đã xác nhận địa chỉ này." +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "Không có biệt hiệu." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "Hiện tại" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Không có user nào." -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#: actions/blockedfromgroup.php:90 #, fuzzy, php-format -msgid "DB error inserting hashtag: %s" -msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "Xóa tin nhắn" +msgid "%s blocked profiles" +msgstr "Hồ sơ" -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s và bạn bè" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "Email" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 +#: actions/blockedfromgroup.php:281 #, fuzzy -msgid "Email Address" -msgstr "Địa chỉ email" +msgid "Unblock user from group" +msgstr "Bỏ chặn người dùng này" -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "Thiết lập địa chỉ email" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "Bỏ chặn" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "Địa chỉ email đã tồn tại." +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +msgid "Unblock this user" +msgstr "Bỏ chặn người dùng này" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "Xac nhan dia chi email" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Chưa đăng nhập." + +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." +msgstr "" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 #, fuzzy -msgid "Email address, like \"UserName@example.org\"" -msgstr "Địa chỉ email GTalk, Ví dụ: \"UserName@gmail.com\"" +msgid "No profile with that ID." +msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "Địa chỉ email" +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "Ban user" -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "Nhập biệt hiệu hoặc email." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "Nhập mã mà bạn nhận được trên điện thoại của bạn." +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "Không" -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "Lỗi cho phép token" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "Lỗi xảy ra khi kết nối với OpenId" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "Có" -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "Lỗi khi kết nối người dùng." +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ban user" -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Lỗi xảy ra khi thêm mới hình đại diện" +#: actions/block.php:165 +#, fuzzy +msgid "You have already blocked this user." +msgstr "Bạn đã theo những người này:" -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "" -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "Lỗi xảy ra khi lưu địa chỉ đã được xác nhận." - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "Lỗi xảy ra khi lưu hồ sơ cá nhân" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "Lỗi xảy ra khi lưu hồ sơ cá nhân." - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "Lỗi xảy ra khi lưu thành viên." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "Lỗi xảy ra khi lưu thành viên; không hợp lệ." +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Không có mã số xác nhận." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "Lỗi xảy ra khi tạo thành viên." +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Không tìm thấy mã xác nhận." -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Mã xác nhận này không phải của bạn!" -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Không nhận dạng kiểu địa chỉ %s" -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "Lỗi xảy ra với mã xác nhận." +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Địa chỉ đó đã được xác nhận rồi." -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "Biệt hiệu này đã tồn tại" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Không thể cập nhật thành viên." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "FAQ" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Không thể xóa email xác nhận." -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "Cập nhật hình đại diện không thành công." +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "Xác nhận địa chỉ" -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 +#: actions/confirmaddress.php:159 #, php-format -msgid "Feed for friends of %s" -msgstr "Chọn những người bạn của %s" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Địa chỉ \"%s\" đã được xác nhận từ tài khoản của bạn." -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "Chọn các phản hồi đến %s" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Không có mã số xác nhận." -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, fuzzy, php-format -msgid "Feed for tag %s" -msgstr "Chọn các phản hồi đến %s" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "Tin nhắn" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "Tìm theo nội dung của tin nhắn" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Không có tin nhắn nào." -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "Tìm kiếm mọi người trên trang web này" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Không thể xóa tin nhắn này." -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 +#: actions/deletenotice.php:103 +#, fuzzy msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " -"đổi trong điều chỉnh." - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "Tên đầy đủ" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)." +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Xóa tin nhắn" -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "Hướng dẫn" +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "Trang chủ" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Không thể xóa tin nhắn này." -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "Trang chủ hoặc Blog" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy +msgid "Delete this notice" +msgstr "Xóa tin nhắn" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "Trang chủ không phải là URL" +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "Tôi muốn đưa tin nhắn lên bằng email." +#: actions/disfavor.php:81 +#, fuzzy +msgid "This notice is not a favorite!" +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "IM" +#: actions/disfavor.php:94 +#, fuzzy +msgid "Add to favorites" +msgstr "Tìm kiếm các tin nhắn ưa thích của %s" -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM" +#: actions/doc.php:69 +msgid "No such document." +msgstr "Không có tài liệu nào." -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "Cấu hình IM" +#: actions/editgroup.php:56 +#, fuzzy, php-format +msgid "Edit %s group" +msgstr "%s và nhóm" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " -"nối với OpenId của bạn." +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +#, fuzzy +msgid "You must be logged in to create a group." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Bạn muốn thêm một OpenId vào tài khoản của bạn, đánh nó vào hộp dưới đây và " -"nhấn\" Thêm\"." +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +#, fuzzy +msgid "You must be an admin to edit the group" +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -"Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa " -"chỉ email lưu trong tài khoản của bạn." -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 +#: actions/editgroup.php:253 #, fuzzy -msgid "Incoming email address removed." -msgstr "Địa chỉ email hoặc mật khẩu không đúng." - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "Mật khẩu cũ sai" +msgid "Could not update group." +msgstr "Không thể cập nhật thành viên." -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "Sai tên đăng nhập hoặc mật khẩu." +#: actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "Đã lưu các điều chỉnh." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Hướng dẫn cách khôi phục mật khẩu đã được gửi đến địa chỉ email đăng ký " -"trong tài khoản của bạn." +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "Thiết lập địa chỉ email" -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 +#: actions/emailsettings.php:71 #, php-format -msgid "Invalid avatar URL '%s'" -msgstr "URL cho hình đại diện '%s' không hợp lệ " +msgid "Manage how you get email from %%site.name%%." +msgstr "Bạn nhận email từ %%site.name%% như thế nào." -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "Địa chỉ email không đúng:%s" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Địa chỉ" -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "Trang chủ '%s' không hợp lệ" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Đã xác nhận địa chỉ này." -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "URL cấp phép '%s' không hợp lệ" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Xóa" -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "Nội dung tin nhắn không hợp lệ" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến (hoặc thư rác) " +"để nhận tin nhắn và lời hướng dẫn." -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "URI tin nhắn không hợp lệ" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "Hủy" -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "URL tin nhắn không hợp lệ" +#: actions/emailsettings.php:121 +#, fuzzy +msgid "Email Address" +msgstr "Địa chỉ email" -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "URL hồ sơ cá nhân của '%s' không hợp lệ" +#: actions/emailsettings.php:123 +#, fuzzy +msgid "Email address, like \"UserName@example.org\"" +msgstr "Địa chỉ email GTalk, Ví dụ: \"UserName@example.org\"" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "URL hồ sơ cá nhân không đúng định dạng." +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Thêm" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "URL hồ sơ cá nhân không hợp lệ." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "Kích thước không hợp lệ." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "Gửi email đến địa chỉ này để đưa tin nhắn mới lên." -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ." +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Tạo một địa chỉ email mới để đưa tin nhắn lên; và xóa " -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "Thư mời đã gửi" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Mới" -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "Thư mời đã gửi đến:" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Tính năng" -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "Thư mời" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "Gửi thư mời đến những người chưa có tài khoản" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Hãy gửi email cho tôi thông báo về các đăng nhận mới." -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, fuzzy, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -"Đang dùng [StatusNet](http://status.net/), phiên bản %s phát hành theo bản " -"quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" -"licenses/agpl-3.0.html)." +"Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa " +"thích của họ." -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID này đã thuộc về người khác rồi." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." + +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -"Địa chỉ Jabber hoặc GTalk, giống như \"UserName@example.org\". Đầu tiên, hãy " -"tạo thêm %s vào danh sách buddy trên IM client hoặc GTalk của bạn." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "Ngôn ngữ" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Tôi muốn đưa tin nhắn lên bằng email." -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -#, fuzzy -msgid "Language is too long (max 50 chars)." -msgstr "Ngôn ngữ quá dài (tối đa là 50 ký tự)." +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Xuất bản một MicroID đến địa chỉ email của tôi." -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "Thành phố" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Lưu" -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "Tên khu vực quá dài (không quá 255 ký tự)." +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Các tính năng đã được lưu." -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "Đăng nhập" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "Không có địa chỉ email." -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Đăng nhập bằng tài khoản [OpenID](%%doc.openid%%)." +#: actions/emailsettings.php:326 +#, fuzzy +msgid "Cannot normalize that email address" +msgstr "Không thể bình thường hóa địa chỉ GTalk này" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " -"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập " -"bằng [OpenID](%%action.openidlogin%%). " +#: actions/emailsettings.php:330 +#, fuzzy +msgid "Not a valid email address" +msgstr "Địa chỉ email không hợp lệ." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "Thoát" +#: actions/emailsettings.php:333 +#, fuzzy +msgid "That is already your email address." +msgstr "Bạn đã dùng địa chỉ email này rồi" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "Họ tên đầy đủ của bạn, tốt nhất là tên thật của bạn." +#: actions/emailsettings.php:336 +#, fuzzy +msgid "That email address already belongs to another user." +msgstr "Địa chỉ email GTalk này đã có người khác sử dụng rồi." -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "Mất hoặc quên mật khẩu?" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Không thể chèn mã xác nhận." -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "Tạo một địa chỉ email mới để đưa tin nhắn lên; và xóa " +#: actions/emailsettings.php:358 +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 "" +"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " +"làm theo hướng dẫn." -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "Bạn nhận email từ %%site.name%% như thế nào." +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Sự xác nhận chưa được hủy bỏ." -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "Gia nhập từ" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Sai IM." -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "Microblog bởi %s" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Sự xác nhận đã bị hủy bỏ." -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"Nhà cung cấp dịch vụ điện thoại di động của bạn. Nếu bạn biết nhà cung cấp " -"dịch vụ điện thoại nào cho phép nhận SMS qua email mà chưa có trong danh " -"sách này, vui lòng gửi mail cho chúng tôi đến địa chỉ %s." +#: actions/emailsettings.php:412 +#, fuzzy +msgid "That is not your email address." +msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "Ghi chú và các file của tôi đã có ở phía dưới" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Đã xóa địa chỉ." -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "Mới" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +#, fuzzy +msgid "No incoming email address." +msgstr "Địa chỉ email không hợp lệ." -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "Dia chi email moi de gui tin nhan den %s" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +#, fuzzy +msgid "Couldn't update user record." +msgstr "Không thể cập nhật thành viên." + +#: actions/emailsettings.php:458 actions/smssettings.php:531 +#, fuzzy +msgid "Incoming email address removed." +msgstr "Địa chỉ email hoặc mật khẩu không đúng." -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 #, fuzzy msgid "New incoming email address added." msgstr "Đã xác nhận địa chỉ này." -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "Biệt hiệu mới" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "Các tin nhắn bị cảnh báo" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "Thông báo mới" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Các tin nhắn bị cảnh báo" -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "Mật khẩu mới" +#: actions/favorited.php:79 +#, fuzzy +msgid "The most popular notices on the site right now." +msgstr "Các từ khóa phổ biến." -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập ngay bây giờ." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "Biệt danh" +#: 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/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Những tin nhắn ưa thích của %s" -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "Biệt hiệu không được cho phép." +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Dòng tin nhắn cho %s" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "Biệt hiệu của thành viên mà bạn muốn theo" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "Biệt hiệu hoặc email" +#: actions/favor.php:92 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor favorite" +msgstr "Không thích" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "Không" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "Không có Jabber ID." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "Không có yêu cầu!" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 +#: actions/file.php:34 #, fuzzy -msgid "No carrier selected." -msgstr "Bạn chưa chọn hình để đưa lên." +msgid "No notice id" +msgstr "Thông báo mới" -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "Không có mã nào được nhập" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Thông báo mới" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "Không có mã số xác nhận." - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "Không có nội dung!" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "Không có địa chỉ email." +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "Không có id." +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Không mong đợi trả lời lại!" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 +#: actions/finishremotesubscribe.php:80 #, fuzzy -msgid "No incoming email address." -msgstr "Địa chỉ email không hợp lệ." +msgid "User being listened to does not exist." +msgstr "Người dùng đang lắng nghe để không thoát khỏi." -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "Không có biệt hiệu được cung cấp." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Bạn có thể đăng ký tại nơi bạn ở!" -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "Không có biệt hiệu." +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "Sự xác nhận chưa được hủy bỏ." +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Chưa được phép." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "Không có số điện thoại." +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Không thể chuyển các token yêu cầu đến token truy cập." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "Không có URL cho hồ sơ để quay về." +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Không biết phiên bản của giao thức OMB." -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "Thành viên này đã không đăng ký địa chỉ email." +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "Không tìm thấy yêu cầu nào!" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Không có tin nhắn nào." -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "Không có kết quả nào" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Không có tin nhắn nào." -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "Không có kích thước." +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Không có tin nhắn nào." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "Không có OpenID nào." +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Người dùng không có thông tin." -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "Không có tài liệu nào." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Bạn chưa cập nhật thông tin riêng" -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "Không có tin nhắn nào." +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Ban user" -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "Không có mã khôi phục nào." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "Không có đăng ký nào." - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "Không có user nào." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -"Không tìm thấy người dùng nào tương ứng với địa chỉ email hoặc username đó." -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "Không có ai!" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "Mã khôi phục không đúng." +#: actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Nhóm" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "Không có người dùng nào đăng ký" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "Không hỗ trợ định dạng dữ liệu này." +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Không thể cập nhật thành viên." -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "Jabber ID không hợp lệ" +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Không thể lưu thông tin Twitter của bạn!" -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "OpenID không hợp lệ." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Các tính năng đã được lưu." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 #, fuzzy -msgid "Not a valid email address" -msgstr "Địa chỉ email không hợp lệ." +msgid "Group logo" +msgstr "Mã nhóm" -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "Địa chỉ email không hợp lệ." +#: actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "Biệt hiệu không hợp lệ." +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (dịch vụ không xác định)." +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Hình đại diện đã được cập nhật." -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (chưa định nghĩa XRDS)." +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Cập nhật hình đại diện không thành công." -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, fuzzy, php-format +msgid "%s group members" +msgstr "Thành viên" -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "File hỏng hoặc không phải là file ảnh." +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "Chưa được phép." +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "Không mong đợi trả lời lại!" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "Không tìm thấy" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "" -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "Chưa đăng nhập." +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "Ban user" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "Chưa đăng nhận!" +#: actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "Tìm kiếm thông báo" +#: actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" +#: actions/groupmembers.php:473 +#, fuzzy +msgid "Make this user an admin" +msgstr "Kênh mà bạn tham gia" + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "Tin nhắn không có hồ sơ cá nhân" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +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 "" +"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " +"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "Tin nhắn" +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Tìm kiếm nhiều người" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "Thông báo được gắn thẻ %s" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Không có kết quả nào" -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "Mật khẩu cũ" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "Tạo tài khoản OpenID" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "Tự động nhập OpenID" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "Đăng nhập OpenID" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "Xác thực OpenID bị hủy." - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "Xác thực OpendID bị lỗi: %s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID lỗi: %s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID đã xóa." - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "Cấu hình OpenID" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "Không bắt buộc phải thêm thông điệp vào thư mời." +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "Upload từng phần." +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +#, fuzzy +msgid "Groups" +msgstr "Nhóm" -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "Mật khẩu" +#: actions/groups.php:64 +#, fuzzy, php-format +msgid "Groups, page %d" +msgstr "Tên nhóm" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "Mật khẩu và mật khẩu xác nhận không khớp nhau." +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "Mật khẩu phải nhiều hơn 6 ký tự." +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Tạo nhóm" -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "Yêu cầu khôi phục lại mật khẩu đã được gửi" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "Đã lưu mật khẩu." +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Người dùng không có thông tin." -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "Mật khẩu không khớp." +#: actions/groupunblock.php:128 actions/unblock.php:108 +#, fuzzy +msgid "Error removing the block." +msgstr "Lỗi xảy ra khi lưu thành viên." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "Tên tài khoản" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "Cấu hình IM" -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -#, fuzzy -msgid "People Search" -msgstr "Tìm kiếm nhiều người" +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Bạn có thể gửi và nhận những tin nhắn qua Jabber hoặc GTalk [tin nhắn nhanh]" +"(%%doc.im%%). Định dạng địa chỉ của bạn và các thiết lập sau." -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "Tìm kiếm nhiều người" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "Cá nhân" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Địa chỉ Jabber/GTalk vừa được xác nhận." -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "Tin nhắn cá nhân" +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra tài khoản Jabber/GTalk để " +"nhận tin nhắn và lời hướng dẫn. (Bạn đã thêm %s vào danh sách bạn thân chưa?)" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Số điện thoại, không cho phép nhập dấu chấm và ký tự " +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM" -#: ../actions/userauthorization.php:78 +#: actions/imsettings.php:126 +#, php-format msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " -"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " -"của họ, hãy nhấn \"Hủy bỏ\"" +"Địa chỉ Jabber hoặc GTalk, giống như \"UserName@example.org\". Đầu tiên, hãy " +"tạo thêm %s vào danh sách buddy trên IM client hoặc GTalk của bạn." + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 +#: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Gửi một tin nhắn khi trạng thái của tôi trên Jabber hay GTalk " -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "Tính năng" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Gửi những tin nhắn trả lời của tôi từ những người mà tôi không theo qua " +"Jabber/GTalk." -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Các tính năng đã được lưu." +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Gửi MicroID đến địa chỉ Jabber/GTalk của tôi. " -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "Ngôn ngữ bạn thích" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Không có Jabber ID." -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "Riêng tư" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Không thể bình thường hóa Jabber ID" -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "Có lỗi xảy ra khi lưu tin nhắn." +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "Jabber ID không hợp lệ" -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "Hồ sơ " +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Tài khoản đó đã là tên tài khoản Jabber của bạn rồi." -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "URL của Hồ sơ cá nhân" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID này đã thuộc về người khác rồi." -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "Các thiết lập cho Hồ sơ cá nhân" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi " +"tin nhắn đến bạn." -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "Hồ sơ này không biết" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Đây không phải Jabber ID của bạn." -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "Dòng tin công cộng" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "Hộp thư đến của %s - trang %d" -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "Dòng tin công cộng" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Hộp thư đến của %s" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Gửi MicroID đến địa chỉ Jabber/GTalk của tôi. " +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "Đây là hộp thư đến của bạn, bao gồm các tin nhắn gửi đến riêng cho bạn" -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "Xuất bản một MicroID đến địa chỉ email của tôi." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "Các từ khóa hiện tại" +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "Khôi phục" +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Địa chỉ email không đúng:%s" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "Khôi phục mật khẩu" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Thư mời đã gửi" -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "Khôi phục lại code cho user không đăng ký." +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Gửi thư mời đến những người chưa có tài khoản" -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "Đăng ký" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Bạn đã theo những người này:" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -#, fuzzy -msgid "Registration not allowed." -msgstr "Biệt hiệu không được cho phép." +#: actions/invite.php:131 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "%s (%s)" -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "Đăng ký thành công" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Những người này đã là thành viên rồi và bạn chỉ cần nhấn nút \"Tôi theo " +"người này\" để theo họ:" -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "Từ chối" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Thư mời đã gửi đến:" -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "Nhớ tôi" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Bạn sẽ nhận được thông báo khi những người được bạn mời nhận lời mời và đăng " +"ký vào trang web này. Cảm ơn bạn " -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp " +"của bạn tham gia vào dịch vụ này." -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "Đăng nhận từ xa" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Địa chỉ email" -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "Xóa" +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" +"Các địa chỉ email của những người bạn muốn mời (mỗi địa chỉ nằm trên 1 dòng)" -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "Xóa OpenID" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Tin nhắn cá nhân" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Việc xóa OpenID của bạn có thể sẽ không đăng nhập được! Nếu bạn cần xóa nó, " -"hãy tạo một OpenID khác trước đã." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Không bắt buộc phải thêm thông điệp vào thư mời." -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "Trả lời" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "Gửi" -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 +#: actions/invite.php:226 #, php-format -msgid "Replies to %s" -msgstr "Trả lời cho %s" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Khởi tạo" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "Khởi tạo lại mật khẩu" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "Số điện thoại để nhắn SMS " - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "Thiết lập SMS" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "Xác nhận SMS" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "Cùng mật khẩu ở trên" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "Cùng mật khẩu ở trên. Bắt buộc." - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "Lưu" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "Tìm kiếm" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "Tìm kiếm dòng thông tin" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Tìm kiếm những tin nhắn trên %%site.name%% bằng nội dung. Chia các cụm từ " -"cần tìm bởi khoảng trắng; và phải là 3 ký tự trở lên." - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " -"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "Chọn nhà cung cấp Mobile" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "Gửi" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "Gửi email đến địa chỉ này để đưa tin nhắn mới lên." - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "Hãy gửi email cho tôi thông báo về các đăng nhận mới." - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Hãy gửi thông báo đến tôi qua SMS; Tôi biết là bạn đang phải trả giá cao " -"cho dịch vụ của chúng tôi. " - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Gửi những tin nhắn trả lời của tôi từ những người mà tôi không theo qua " -"Jabber/GTalk." - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "Điều chỉnh" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "Đã lưu các điều chỉnh." - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "Các từ khóa phổ biến." - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "Đã có người sử dụng OpenID này rồi." - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "Vài điều bất thường xảy ra." - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "Xin lỗi, không có địa chỉ email cho phép." - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "Nguồn" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "Số liệu thống kê" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "Không tìm thấy OpenID." - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "Theo bạn này" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "Bạn này theo tôi" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "Đăng nhận được phép" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "Đăng nhận từ chối" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "Tôi theo bạn này" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "Hệ thống xảy ra lỗi trong khi tải file." - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "Từ khóa" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Chuỗi bất kỳ" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "Chuỗi cần tìm" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "OpenID này không phải của bạn." - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "Địa chỉ đó đã được xác nhận rồi." - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "Mã xác nhận này không phải của bạn!" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -#, fuzzy -msgid "That email address already belongs to another user." -msgstr "Địa chỉ email GTalk này đã có người khác sử dụng rồi." - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "File quá lớn." - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "Tài khoản đó đã là tên tài khoản Jabber của bạn rồi." - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -#, fuzzy -msgid "That is already your email address." -msgstr "Bạn đã dùng địa chỉ email này rồi" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -#, fuzzy -msgid "That is already your phone number." -msgstr "Đó không phải là số điện thoại của bạn." - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "Đây không phải Jabber ID của bạn." - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -#, fuzzy -msgid "That is not your email address." -msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "Đó không phải là số điện thoại của bạn." - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "Sai IM." - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -#, fuzzy -msgid "That is the wrong confirmation number." -msgstr "Đó không phải là số điện thoại của bạn." - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -#, fuzzy -msgid "That phone number already belongs to another user." -msgstr "Địa chỉ email Yahoo này đã có người khác sử dụng rồi." - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "Quá dài. Tối đa là 140 ký tự." - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "Tin nhắn quá dài. Chỉ được phép tối đa 255 ký tự." - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "Địa chỉ \"%s\" đã được xác nhận từ tài khoản của bạn." - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "Đã xóa địa chỉ." - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các " -"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " -"của bạn là:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " -"các hướng dẫn chi tiết trên site để " - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "Có nhiều người nghe theo lời nhắn của %s." - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "Có nhiều người nghe theo lời nhắn của bạn." - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "Có nhiều người gửi lời nhắn để bạn nghe theo." - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Những người này đã là thành viên rồi và bạn chỉ cần nhấn nút \"Tôi theo " -"người này\" để theo họ:" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "Mã xác nhận quá cũ. Hãy thử lại cái khác." - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Trang này sẽ tự động gửi đi. Nếu không, hãy click lên nút Gửi để gửi đến nhà " -"cung cấp OpenID của bạn." - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"Đây là lần đầu tiên bạn đăng nhập vào %s, vì vậy chúng tôi phải kết nối tài " -"khoản OpenID của bạn với tài khoản trên site này. Bạn có thể tạo một tài " -"khoản mới, hoặc kết nối với tài khoản đã có của bạn, nếu như bạn đã có rồi." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "Phương thức này yêu cầu là POST hoặc DELETE" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "Phương thức này yêu cầu là POST." - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "Khu vực" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Để đăng ký, bạn cần [Đăng nhập](%%action.login%%), hoặc [Đăng ký](%%action." -"register%%) tài khoản mới. Nếu bạn đã có một tài khoản khác trên [site " -"microblogging tương ứng](%%doc.openmublog%%), hãy nhập URL về hồ sơ cá nhân " -"của bạn dưới đây." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "" - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "URL trong hồ sơ cá nhân của bạn ở trên các trang microblogging khác" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "Bất ngờ gửi mẫu thông tin. " - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "Bất ngờ reset mật khẩu." - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "Không tìm thấy action" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "Không biết phiên bản của giao thức OMB." - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Nếu không có các quy định khác, nội dung của trang web này có bản quyền của " -"người đóng góp và theo bản quyền " - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "Không nhận dạng kiểu địa chỉ %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "Hết theo" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "Không hỗ trợ cho version OMB" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "Không hỗ trợ kiểu file ảnh này." - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "Thay đổi bởi SMS" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "Thay đổi bởi tin nhắn nhanh (IM)" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "Tải file" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Tải \"hình đại diện\" mới (hình cá nhân) tại đây. Bạn không thể chỉnh sửa " -"lại hình sau khi tải nó lên, vì thế nếu muốn hãy sửa trước khi tải lên. Hình " -"phải phù hợp " - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "Tải lên một file ảnh mới cho hồ sơ cá nhân" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp " -"của bạn tham gia vào dịch vụ này." - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "Chỉ dùng để cập nhật, thông báo, và hồi phục mật khẩu" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "Người dùng đang lắng nghe để không thoát khỏi." - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "Người dùng không có thông tin." - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "Biệt hiệu của người dùng" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "Không tìm thấy user." - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "Khu vực nào bạn thường ở?" - -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "Bạn đang làm gì thế, %s?" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "Kiểu file ảnh không phù hợp với '%s'" - -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "Kích thước file ảnh không phù hợp đối với '%s'" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "Có" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "Bạn đã có được tài khoản OpenID này rồi!" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "Bạn đã đăng nhập!" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "Bạn đã theo những người này:" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -#, fuzzy -msgid "You are not friends with the specified user." -msgstr "Bạn đã theo những người này:" - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "Bạn có thể thay đổi mật khẩu tại đây. Hãy chọn mật khẩu mới!" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "Bạn có thể tạo tài khoản mới để có thể gửi ý kiến của mình." - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Bạn có thể nhận tin nhắn SMS qua email từ %%site.name%%." - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Bạn có thể loại bỏ OpenID khỏi tài khoản của bạn bằng cách nhấn vào nút \"Xóa" -"\"." - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Bạn có thể gửi và nhận những tin nhắn qua Jabber hoặc GTalk [tin nhắn nhanh]" -"(%%doc.im%%). Định dạng địa chỉ của bạn và các thiết lập sau." - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "Bạn có thể đăng ký tại nơi bạn ở!" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản." - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "Bạn chưa cập nhật thông tin riêng" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Bạn có địa chỉ mới để gửi tin nhắn trên %1$s.\n" -"\n" -"Hãy gửi email đến %2$s để có thể nhắn tin.\n" -"\n" -"Bạn có thể đọc hướng dẫn tại %3$s.\n" -"\n" -"Chúc sức khỏe,\n" -"%4$s" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "Bạn đã không xóa trạng thái của những người khác." - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Bạn sẽ nhận được thông báo khi những người được bạn mời nhận lời mời và đăng " -"ký vào trang web này. Cảm ơn bạn " - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "OpenID URL của bạn" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "Biệt hiệu của bạn đã tồn tại hoặc bạn đã đăng ký bằng email này rồi." - -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, 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%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " -"lý các OpenID của bạn ở đây." - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "vài giây trước" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "%d ngày trước" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "%d giờ trước" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "%d phút trước" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "%d tháng trước" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "1 ngày trước" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "1 phút trước" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "1 tháng trước" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "1 năm trước" - -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "1 giờ trước" - -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "còn nữa..." - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "trả lời" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "cùng mật khẩu ở trên" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -#, fuzzy -msgid "unsupported file type" -msgstr "Không hỗ trợ kiểu file ảnh này." - -#: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy -msgid "« After" -msgstr "Sau" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." -msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." - -#: actions/disfavor.php:55 actions/disfavor.php:81 -#, fuzzy -msgid "This notice is not a favorite!" -msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -#, fuzzy -msgid "Could not delete favorite." -msgstr "Không thể tạo favorite." - -#: actions/disfavor.php:72 lib/favorform.php:140 -#, fuzzy -msgid "Favor" -msgstr "Ưa thích" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa " -"thích của họ." - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "Không thể tạo favorite." - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "Không thích" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "%s ưa thích các tin nhắn" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, fuzzy, php-format -msgid "Feed of favorite notices of %s" -msgstr "Tìm kiếm các tin nhắn ưa thích của %s" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "Hộp thư đến của %s - trang %d" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "Hộp thư đến của %s" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "Đây là hộp thư đến của bạn, bao gồm các tin nhắn gửi đến riêng cho bạn" - -#: actions/invite.php:178 actions/invite.php:213 -#, fuzzy, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "%1$s moi ban tham gia vao %2$s (%3$s).\n" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -#, fuzzy -msgid "Automatically login in the future; " -msgstr "Sẽ tự động đăng nhập, không dành cho các máy sử dụng chung!" - -#: actions/login.php:122 actions/login.php:264 -#, fuzzy -msgid "For security reasons, please re-enter your " -msgstr "" -"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " -"đổi trong điều chỉnh." - -#: actions/login.php:126 actions/login.php:268 -#, fuzzy -msgid "Login with your username and password. " -msgstr "Sai tên đăng nhập hoặc mật khẩu." - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -#, fuzzy -msgid "That's too long. Max message size is 140 chars." -msgstr "Quá dài. Tối đa là 140 ký tự." - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -#, fuzzy -msgid "You can't send a message to this user." -msgstr "Bạn đã theo những người này:" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -#, fuzzy -msgid "No such user" -msgstr "Không có user nào." - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -#, fuzzy -msgid "New message" -msgstr "Tin mới nhất" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -#, fuzzy -msgid "Notice without matching profile" -msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " -"lý các OpenID của bạn ở đây." - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -#, fuzzy -msgid "If you want to add an OpenID to your account, " -msgstr "" -"Bạn muốn thêm một OpenId vào tài khoản của bạn, đánh nó vào hộp dưới đây và " -"nhấn\" Thêm\"." - -#: actions/openidsettings.php:74 -#, fuzzy -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Việc xóa OpenID của bạn có thể sẽ không đăng nhập được! Nếu bạn cần xóa nó, " -"hãy tạo một OpenID khác trước đã." - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -#, fuzzy -msgid "You can remove an OpenID from your account " -msgstr "" -"Bạn có thể loại bỏ OpenID khỏi tài khoản của bạn bằng cách nhấn vào nút \"Xóa" -"\"." - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "Hộp thư gửi đi của %s - trang %d" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "Hộp thư đi của %s" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Hộp thư gửi đi của bạn, bao gồm danh sách các tin nhắn gửi trực tiếp mà bạn " -"đã gửi." - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " -"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -#, fuzzy -msgid "You can update your personal profile info here " -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#, fuzzy -msgid "User without matching profile" -msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -#, fuzzy -msgid "This confirmation code is too old. " -msgstr "Mã xác nhận quá cũ. Hãy thử lại cái khác." - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a " -msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -#, fuzzy -msgid "Your nickname on this server, " -msgstr "Biệt hiệu của bạn đã tồn tại hoặc bạn đã đăng ký bằng email này rồi." - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -#, fuzzy -msgid "Instructions for recovering your password " -msgstr "Sai tên đăng nhập hoặc mật khẩu." - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -#, fuzzy -msgid "New password successfully saved. " -msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập ngay bây giờ." - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -#, fuzzy -msgid "Password must be 6 or more characters." -msgstr "Mật khẩu phải nhiều hơn 6 ký tự." - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -#, fuzzy -msgid "(You should receive a message by email momentarily, with " -msgstr "" -"(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " -"của bạn.)" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "Tìm kiếm các tin nhắn ưa thích của %s" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "Không thể lấy lại các tin nhắn ưa thích" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "Không có tin nhắn nào." - -#: actions/showmessage.php:42 actions/showmessage.php:98 -#, fuzzy -msgid "Only the sender and recipient may read this message." -msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -#, fuzzy -msgid "Send a message" -msgstr "Tin nhắn cá nhân" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, fuzzy, php-format -msgid "Direct messages to %s" -msgstr "Tin nhắn riêng" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -#, fuzzy -msgid "Direct Messages You've Sent" -msgstr "Tin nhắn riêng" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, fuzzy, php-format -msgid "All the direct messages sent from %s" -msgstr "Bạn có tin nhắn riêng từ %s" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -#, fuzzy -msgid "No message text!" -msgstr "Không có tin nhắn nào." - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -#, fuzzy -msgid "Recipient user not found." -msgstr "Không tìm thấy user." - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, fuzzy, php-format -msgid "%s / Favorites from %s" -msgstr "Tìm kiếm các tin nhắn ưa thích của %s" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, fuzzy, php-format -msgid "%s updates favorited by %s / %s." -msgstr "Tất cả các cập nhật của %s" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, fuzzy, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%s da them tin nhan cua ban vao danh sach tin nhan ua thich\n" -"\n" - -#: actions/twittersettings.php:27 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " -"bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Thiết lập tài khoản Twitter" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Tài khoản Twitter" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "Tài khoản Twitter đã được xác nhận." - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Tên tài khoản Twitter" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "Không nhập ký tự trắng." - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Mật khẩu Twitter" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "Tự động gửi tin nhắn của tôi đến Twitter." - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "Đăng ký theo những bạn trên Twitter tại đây." - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -#, fuzzy -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Tên tài khoản phải là các chữ số, chữ cái thường hoặc viết hoa, hoặc là dấu " -"gạch dưới (_)." - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "Không thể xác nhận tài khoản Twitter của bạn!" - -#: actions/twittersettings.php:137 -#, fuzzy, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "Không thể lưu thông tin Twitter của bạn!" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -#, fuzzy -msgid "Twitter settings saved." -msgstr "Thiết lập tài khoản Twitter" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "Không phải là tài khoản Twitter của bạn." - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "Không thể xóa tài khoản Twitter." - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Tài khoản Twitter đã xóa." - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "Không thể lưu các yêu cầu cho tài khoản Twitter. " - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Các yêu cầu cho tài khoản Twitter đã lưu" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -#, fuzzy -msgid "The subscription has been authorized, but no " -msgstr "Đăng nhận được phép" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -#, fuzzy -msgid "The subscription has been rejected, but no " -msgstr "Đăng nhận từ chối" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -#, fuzzy -msgid "Command results" -msgstr "Không có kết quả nào" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -#, fuzzy -msgid "Command failed" -msgstr " và bạn bè" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, fuzzy, php-format -msgid "Subscriptions: %1$s\n" -msgstr "Tôi theo: %1$s\n" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -#, fuzzy -msgid "User has no last notice" -msgstr "Người dùng không có thông tin." - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -#, fuzzy -msgid "Notice marked as fave." -msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, fuzzy, php-format -msgid "%1$s (%2$s)" -msgstr "%s (%s)" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, fuzzy, php-format -msgid "Fullname: %s" -msgstr "Tên đầy đủ" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, fuzzy, php-format -msgid "Location: %s" -msgstr "Thành phố: %s" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, fuzzy, php-format -msgid "Homepage: %s" -msgstr "Trang chủ hoặc Blog: %s" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, fuzzy, php-format -msgid "About: %s" -msgstr "Giới thiệu" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, fuzzy, php-format -msgid "Direct message to %s sent" -msgstr "Tin nhắn riêng" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -#, fuzzy -msgid "Error sending direct message." -msgstr "Thư bạn đã gửi" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, fuzzy, php-format -msgid "Subscribed to %s" -msgstr "Theo nhóm này" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, fuzzy, php-format -msgid "Unsubscribed from %s" -msgstr "Hết theo" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -#, fuzzy -msgid "Notification off." -msgstr "Không có mã số xác nhận." - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -#, fuzzy -msgid "Notification on." -msgstr "Không có mã số xác nhận." - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -#, fuzzy -msgid "Could not insert message." -msgstr "Không thể chèn thêm vào đăng nhận." - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -#, fuzzy -msgid "Could not update message with new URI." -msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." - -#: lib/gallery.php:46 -#, fuzzy -msgid "User without matching profile in system." -msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "Bạn có tin nhắn riêng từ %s" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "Ưa thích" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "Những tin nhắn ưa thích của %s" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "Hộp thư đến" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "Thư đến của bạn" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "Hộp thư đi" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "Thư bạn đã gửi" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -#, fuzzy -msgid "Twitter" -msgstr "Tài khoản Twitter" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Các lựa chọn để tích hợp với Twitter " - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -#, fuzzy -msgid "Could not parse message." -msgstr "Không thể cập nhật thành viên." - -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s và bạn bè" - -#: actions/avatarsettings.php:76 -#, fuzzy -msgid "You can upload your personal avatar." -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." - -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "Thay đổi hình đại diện" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "Xem trước" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -#, fuzzy -msgid "Crop" -msgstr "Nhóm" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -#, fuzzy -msgid "There was a problem with your session token. " -msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "" - -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -#, fuzzy -msgid "Lost our file." -msgstr "Không có tin nhắn nào." - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -#, fuzzy -msgid "Unknown file type" -msgstr "Không hỗ trợ kiểu file ảnh này." - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -#, fuzzy -msgid "No profile with that ID." -msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." - -#: actions/block.php:111 actions/block.php:134 -#, fuzzy -msgid "Block user" -msgstr "Ban user" - -#: actions/block.php:129 -#, fuzzy -msgid "Are you sure you want to block this user? " -msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" - -#: actions/block.php:162 actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "Bạn đã theo những người này:" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - -#: actions/confirmaddress.php:159 -#, fuzzy, php-format -msgid "The address \"%s\" has been " -msgstr "Đã xóa địa chỉ." - -#: actions/deletenotice.php:73 -#, fuzzy -msgid "You are about to permanently delete a notice. " -msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." - -#: actions/disfavor.php:94 -#, fuzzy -msgid "Add to favorites" -msgstr "Tìm kiếm các tin nhắn ưa thích của %s" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, fuzzy, php-format -msgid "Edit %s group" -msgstr "%s và nhóm" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -#, fuzzy -msgid "You must be logged in to create a group." -msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " - -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "Không có biệt hiệu." - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "Không có user nào." - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -#, fuzzy -msgid "You must be an admin to edit the group" -msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng." - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "Lý lịch quá dài (không quá 140 ký tự)" - -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "Không thể cập nhật thành viên." - -#: actions/editgroup.php:226 actions/editgroup.php:269 -#, fuzzy -msgid "Options saved." -msgstr "Đã lưu các điều chỉnh." - -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "Đó không phải là số điện thoại của bạn." - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#, fuzzy -msgid "Make a new email address for posting to; " -msgstr "Dia chi email moi de gui tin nhan den %s" - -#: actions/emailsettings.php:157 -#, fuzzy -msgid "Send me email when someone " -msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "Địa chỉ email GTalk này đã có người khác sử dụng rồi." - -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi " -"tin nhắn đến bạn." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "Không có nội dung!" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -#, fuzzy -msgid "After" -msgstr "Sau" - -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -#, fuzzy -msgid "Before" -msgstr "Trước" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -#, fuzzy -msgid "Invitations have been sent to the following users:" -msgstr "Thư mời đã gửi đến:" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, fuzzy, php-format -msgid "You have been invited to %s" -msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." - -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "Mời bạn bè" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - -#: actions/facebookremove.php:56 -#, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "Không thể xóa tài khoản Twitter." - -#: actions/facebooksettings.php:65 -#, fuzzy -msgid "There was a problem saving your sync preferences!" -msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." - -#: actions/facebooksettings.php:67 -#, fuzzy -msgid "Sync preferences saved." -msgstr "Các tính năng đã được lưu." - -#: actions/facebooksettings.php:90 -#, fuzzy -msgid "Automatically update my Facebook status with my notices." -msgstr "Tự động gửi tin nhắn của tôi đến Twitter." - -#: actions/facebooksettings.php:97 -#, fuzzy -msgid "Send \"@\" replies to Facebook." -msgstr "Hãy gửi tin nhắn đến tôi qua Jabber/GTalk." - -#: actions/facebooksettings.php:106 -#, fuzzy -msgid "Prefix" -msgstr "Hồ sơ " - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - -#: actions/facebooksettings.php:147 -#, fuzzy -msgid "Sync preferences" -msgstr "Tính năng" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -#, fuzzy -msgid "Disfavor favorite" -msgstr "Không thích" - -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -#, fuzzy -msgid "Popular notices" -msgstr "Các tin nhắn bị cảnh báo" - -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "Các tin nhắn bị cảnh báo" - -#: actions/favorited.php:79 -#, fuzzy -msgid "The most popular notices on the site right now." -msgstr "Các từ khóa phổ biến." - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -#, fuzzy -msgid "Group logo" -msgstr "Mã nhóm" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "Hình đại diện đã được cập nhật." - -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "Cập nhật hình đại diện không thành công." - -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, fuzzy, php-format -msgid "%s group members" -msgstr "Thành viên" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -#, fuzzy -msgid "Groups" -msgstr "Nhóm" - -#: actions/groups.php:64 -#, fuzzy, php-format -msgid "Groups, page %d" -msgstr "Tên nhóm" +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s moi ban tham gia vao %2$s" -#: actions/groups.php:90 +#: actions/invite.php:228 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "Tạo nhóm" - -#: actions/groupsearch.php:57 -#, fuzzy, php-format msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " -"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -#, fuzzy -msgid "Group search" -msgstr "Tìm kiếm nhiều người" - -#: actions/imsettings.php:70 -#, fuzzy -msgid "You can send and receive notices through " -msgstr "Bạn đã theo những người này:" - -#: actions/imsettings.php:120 -#, fuzzy, php-format -msgid "Jabber or GTalk address, " -msgstr "Chưa nhập địa chỉ email GTalk" - -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "Hãy gửi tin nhắn đến tôi qua Jabber/GTalk." - -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "Không có mã số xác nhận." +"%1$s mời bạn tham gia vào %2$s (%3$s).\n" +"\n" +"%2$s là dịch vụ tin nhắn nhanh giúp bạn liên kết với người quen và những " +"người yêu thích bạn.\n" +"\n" +"Bạn cũng có thể chia sẻ những suy nghĩ, thông tin về bạn, hoặc đời sống của " +"bạn lên trên mạng cho những người quen của bạn biết. Dịch vụ này cũng giúp " +"bạn gặp gỡ những người chưa quen biết nhưng có cùng sở thích.\n" +"\n" +"%1$s nói:\n" +"\n" +"%4$s\n" +"\n" +"Bạn có thể tham khảo trang thông tin cá nhân của %1$s trên %2$s tại đây:\n" +"\n" +"%5$s\n" +"\n" +"Nếu bạn muốn sử dụng dịch vụ này, hãy nhấn chuột vào liên kết dưới đây để " +"chấp nhận lời mời.\n" +"\n" +"%6$s\n" +"\n" +"Nếu không thích tham gia, bạn có thể bỏ qua tin nhắn này. Rất cảm ơn sự kiên " +"nhẫn vì đã làm mất thời gian của bạn.\n" +"\n" +"Thân, %2$s\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Bạn đã theo những người này:" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s và nhóm" #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "Không có tin nhắn nào." - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/leavegroup.php:100 -#, fuzzy -msgid "You may not leave a group while you are its administrator." -msgstr "Bạn đã không xóa trạng thái của những người khác." - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Không thể cập nhật thành viên." -#: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, fuzzy, php-format msgid "%s left group %s" msgstr "%s và nhóm" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "Đã đăng nhập." + +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "Nội dung tin nhắn không hợp lệ" + +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "Sai tên đăng nhập hoặc mật khẩu." + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "Lỗi xảy ra khi tạo thành viên." + +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "Đăng nhập" + +#: actions/login.php:243 msgid "Login to site" msgstr "" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "Biệt danh" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "Mật khẩu" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "Nhớ tôi" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "Sẽ tự động đăng nhập, không dành cho các máy sử dụng chung!" + +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "Mất hoặc quên mật khẩu?" + +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " +"đổi trong điều chỉnh." + +#: actions/login.php:286 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " +"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập " +"bằng [OpenID](%%action.openidlogin%%). " + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/microsummary.php:69 msgid "No current status" msgstr "" @@ -4712,44 +1775,99 @@ msgstr "" msgid "New group" msgstr "Tạo nhóm" -#: actions/newgroup.php:115 actions/newgroup.php:110 +#: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#: actions/newmessage.php:71 actions/newmessage.php:231 #, fuzzy -msgid "Could not create group." -msgstr "Không thể tạo favorite." +msgid "New message" +msgstr "Tin mới nhất" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 #, fuzzy -msgid "Could not set group membership." -msgstr "Không thể tạo đăng nhận." +msgid "You can't send a message to this user." +msgstr "Bạn đã theo những người này:" + +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "Không có nội dung!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Tin mới nhất" + +#: actions/newmessage.php:185 lib/command.php:375 +#, fuzzy, php-format +msgid "Direct message to %s sent" +msgstr "Tin nhắn riêng" + +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +#, fuzzy +msgid "Ajax Error" +msgstr "Lỗi" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Thông báo mới" -#: actions/newmessage.php:119 actions/newnotice.php:132 +#: actions/newnotice.php:199 #, fuzzy -msgid "That's too long. " -msgstr "File quá lớn." +msgid "Notice posted" +msgstr "Tin đã gửi" + +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Tìm kiếm những tin nhắn trên %%site.name%% bằng nội dung. Chia các cụm từ " +"cần tìm bởi khoảng trắng; và phải là 3 ký tự trở lên." + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Chuỗi cần tìm" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Tìm dòng thông tin cho \"%s\"" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" -#: actions/newmessage.php:134 -#, fuzzy -msgid "Don't send a message to yourself; " -msgstr "Bạn đã theo những người này:" +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -#, fuzzy -msgid "Notice posted" -msgstr "Tin đã gửi" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Dòng tin nhắn cho %s" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -#, fuzzy -msgid "Ajax Error" -msgstr "Lỗi" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Các thay đổi phù hợp với từ \"%s\"" #: actions/nudge.php:85 msgid "" @@ -4766,15 +1884,37 @@ msgstr "Tin đã gửi" msgid "Nudge sent!" msgstr "Tin đã gửi" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Tin nhắn không có hồ sơ cá nhân" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Trạng thái của %1$s vào %2$s" + +#: actions/oembed.php:157 #, fuzzy -msgid "OpenID login" -msgstr "Đăng nhập OpenID" +msgid "content type " +msgstr "Kết nối" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "Không hỗ trợ định dạng dữ liệu này." -#: actions/openidsettings.php:128 +#: actions/opensearch.php:64 #, fuzzy -msgid "Removing your only OpenID " -msgstr "Xóa OpenID" +msgid "People Search" +msgstr "Tìm kiếm nhiều người" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Tìm kiếm thông báo" #: actions/othersettings.php:60 #, fuzzy @@ -4785,2488 +1925,2442 @@ msgstr "Thiết lập tài khoản Twitter" msgid "Manage various other options." msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: actions/othersettings.php:112 -#, fuzzy -msgid "Service" -msgstr "Tìm kiếm" - -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + #: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Tên khu vực quá dài (không quá 255 ký tự)." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "Hộp thư gửi đi của %s - trang %d" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Hộp thư đi của %s" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" +"Hộp thư gửi đi của bạn, bao gồm danh sách các tin nhắn gửi trực tiếp mà bạn " +"đã gửi." + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Đổi mật khẩu" + #: actions/passwordsettings.php:69 #, fuzzy msgid "Change your password." msgstr "Thay đổi mật khẩu của bạn" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Đã lưu mật khẩu." -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "Mật khẩu cũ" + +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Mật khẩu mới" + +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "Nhiều hơn 6 ký tự" + +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Xác nhận" + +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "cùng mật khẩu ở trên" + +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "Thay đổi" + +#: actions/passwordsettings.php:153 actions/register.php:230 +#, fuzzy +msgid "Password must be 6 or more characters." +msgstr "Mật khẩu phải nhiều hơn 6 ký tự." + +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Mật khẩu không khớp." + +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "Mật khẩu cũ sai" + +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "Lỗi xảy ra khi lưu thành viên; không hợp lệ." + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Không thể lưu mật khẩu mới" + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Đã lưu mật khẩu." + +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " +"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." + +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Tìm kiếm nhiều người" + +#: actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Địa chỉ email không hợp lệ." -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" -#: actions/peopletag.php:91 +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "Nội dung tin nhắn không hợp lệ" + +#: actions/postnotice.php:90 #, php-format -msgid "These are users who have tagged themselves \"%s\" " +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." msgstr "" +"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " +"về bạn." -#: actions/profilesettings.php:91 actions/profilesettings.php:99 +#: actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Hồ sơ này không biết" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay " + +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Tên đầy đủ" + +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Trang chủ hoặc Blog" + +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " + +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" + +#: actions/profilesettings.php:125 actions/register.php:463 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "Lý lịch" + +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Thành phố" + +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" + +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Từ khóa" + #: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" #: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " -msgstr "Tự động theo những người nào đăng ký theo tôi" - -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "Trang chủ '%s' không hợp lệ" +msgid "Language" +msgstr "Ngôn ngữ" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "Không thể lưu hồ sơ cá nhân." +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "Ngôn ngữ bạn thích" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "Dòng tin công cộng" +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "Khu vực" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -#, fuzzy -msgid "Could not retrieve public stream." -msgstr "Không thể lấy lại các tin nhắn ưa thích" +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "Khu vực nào bạn thường ở?" -#: actions/public.php:220 -#, php-format +#: actions/profilesettings.php:160 msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Tự động theo những người nào đăng ký theo tôi" + +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" + +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/publictagcloud.php:57 +#: actions/profilesettings.php:234 #, fuzzy -msgid "Public tag cloud" -msgstr "Dòng tin công cộng" +msgid "Language is too long (max 50 chars)." +msgstr "Ngôn ngữ quá dài (tối đa là 50 ký tự)." -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Trang chủ '%s' không hợp lệ" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" +#: actions/profilesettings.php:295 +#, fuzzy +msgid "Couldn't update user for autosubscribe." +msgstr "Không thể cập nhật thành viên." -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "" +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/register.php:149 +#: actions/profilesettings.php:336 #, fuzzy -msgid "You can't register if you don't " -msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản." +msgid "Couldn't save tags." +msgstr "Không thể lưu hồ sơ cá nhân." + +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "Đã lưu các điều chỉnh." -#: actions/register.php:286 -msgid "With this form you can create " +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/register.php:368 +#: actions/public.php:92 #, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay " +msgid "Could not retrieve public stream." +msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "Chỉ dùng để cập nhật, thông báo, và hồi phục mật khẩu" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Dòng tin công cộng" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " -msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Dòng tin công cộng" -#: actions/register.php:404 +#: actions/public.php:151 #, fuzzy -msgid "Describe yourself and your " -msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Dòng tin công cộng" -#: actions/register.php:410 +#: actions/public.php:155 #, fuzzy -msgid "Where you are, like \"City, " -msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Dòng tin công cộng" -#: actions/register.php:432 +#: actions/public.php:159 #, fuzzy -msgid " except this private data: password, " -msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" +msgid "Public Stream Feed (Atom)" +msgstr "Dòng tin công cộng" -#: actions/register.php:471 +#: actions/public.php:179 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/register.php:495 -#, fuzzy -msgid "(You should receive a message by email " +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -"(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " -"của bạn.)" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "Trả lời cho %s" - -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s favorite notices, page %d" -msgstr "%s ưa thích các tin nhắn" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, fuzzy, php-format -msgid "%s group" -msgstr "%s và nhóm" - -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: actions/public.php:233 #, php-format -msgid "%s group, page %d" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy -msgid "Group profile" -msgstr "Thông tin nhóm" - -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" +#: actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -#, fuzzy -msgid "Note" -msgstr "Tin nhắn" - -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 +#: actions/publictagcloud.php:57 #, fuzzy -msgid "Group actions" -msgstr "Mã nhóm" - -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "Dòng tin nhắn cho %s" +msgid "Public tag cloud" +msgstr "Dòng tin công cộng" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "Thành viên" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -#, fuzzy -msgid "All members" -msgstr "Thành viên" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/showgroup.php:378 +#: actions/publictagcloud.php:75 #, php-format msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/showmessage.php:98 -#, fuzzy -msgid "Only the sender and recipient " -msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 -#, fuzzy, php-format -msgid "%s, page %d" -msgstr "Hộp thư đến của %s - trang %d" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Bạn đã đăng nhập!" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "Hồ sơ" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Không có mã khôi phục nào." -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "Hồ sơ" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Mã khôi phục không đúng." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "Khôi phục lại code cho user không đăng ký." -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -#, fuzzy -msgid "User actions" -msgstr "Không tìm thấy action" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "Lỗi xảy ra với mã xác nhận." -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -#, fuzzy -msgid "Send a direct message to this user" -msgstr "Bạn đã theo những người này:" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "Mã xác nhận quá cũ. Hãy thử lại cái khác." -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -#, fuzzy -msgid "Message" -msgstr "Tin mới nhất" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "Bạn này theo tôi" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: actions/showstream.php:533 lib/profileaction.php:235 -#, fuzzy -msgid "All groups" -msgstr "Nhóm" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: actions/recoverpassword.php:188 +msgid "Password recovery" msgstr "" -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "Số điện thoại, không cho phép nhập dấu chấm và ký tự " +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "Biệt hiệu của bạn đã tồn tại hoặc bạn đã đăng ký bằng email này rồi." -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "Đó không phải là số điện thoại của bạn." +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Khôi phục" -#: actions/smssettings.php:453 actions/smssettings.php:465 -#, fuzzy -msgid "Mobile carrier" -msgstr "Chọn nhà cung cấp Mobile" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Khởi tạo lại mật khẩu" -#: actions/subedit.php:70 -#, fuzzy -msgid "You are not subscribed to that profile." -msgstr "Bạn chưa cập nhật thông tin riêng" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Khôi phục mật khẩu" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "Không thể tạo đăng nhận." +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Yêu cầu khôi phục lại mật khẩu đã được gửi" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "Không có user nào." +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Không tìm thấy action" -#: actions/subscribe.php:69 -#, fuzzy -msgid "Subscribed" -msgstr "Theo bạn này" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "Nhiều hơn 6 ký tự, đừng quên nó!" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "Bạn này theo tôi" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Cùng mật khẩu ở trên" -#: actions/subscribers.php:52 -#, fuzzy, php-format -msgid "%s subscribers, page %d" -msgstr "Theo tôi" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Khởi tạo" -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "Có nhiều người nghe theo lời nhắn của %s." +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Nhập biệt hiệu hoặc email." -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "Có nhiều người nghe theo lời nhắn của %s." +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" +"Không tìm thấy người dùng nào tương ứng với địa chỉ email hoặc username đó." -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "Tất cả đăng nhận" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "Thành viên này đã không đăng ký địa chỉ email." -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "Tất cả đăng nhận" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "Lỗi xảy ra khi lưu địa chỉ đã được xác nhận." -#: actions/subscriptions.php:65 -#, fuzzy -msgid "These are the people whose notices " -msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Hướng dẫn cách khôi phục mật khẩu đã được gửi đến địa chỉ email đăng ký " +"trong tài khoản của bạn." -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "Có nhiều người nghe theo lời nhắn của %s." +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "Bất ngờ reset mật khẩu." -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "Không có Jabber ID." +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "Mật khẩu phải nhiều hơn 6 ký tự." -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "Dòng tin nhắn cho %s" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "Mật khẩu và mật khẩu xác nhận không khớp nhau." -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập ngay bây giờ." + +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/tagother.php:33 +#: actions/register.php:92 #, fuzzy -msgid "Not logged in" -msgstr "Chưa đăng nhập." +msgid "Sorry, invalid invitation code." +msgstr "Lỗi xảy ra với mã xác nhận." -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "Không có tài liệu nào." +#: actions/register.php:112 +msgid "Registration successful" +msgstr "Đăng ký thành công" -#: actions/tagother.php:65 -#, fuzzy, php-format -msgid "Tag %s" -msgstr "Từ khóa" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "Đăng ký" -#: actions/tagother.php:141 +#: actions/register.php:135 #, fuzzy -msgid "Tag user" -msgstr "Từ khóa" +msgid "Registration not allowed." +msgstr "Biệt hiệu không được cho phép." -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản." -#: actions/tagother.php:164 -#, fuzzy -msgid "There was a problem with your session token." -msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "Địa chỉ email không hợp lệ." + +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Địa chỉ email đã tồn tại." + +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ." -#: actions/tagother.php:191 actions/tagother.php:193 +#: actions/register.php:342 msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy -msgid "Could not save tags." -msgstr "Không thể lưu hồ sơ cá nhân." - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" +"1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay khoảng trắng. Bắt " +"buộc." -#: actions/tagrss.php:35 -#, fuzzy -msgid "No such tag." -msgstr "Không có tin nhắn nào." +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "Nhiều hơn 6 ký tự. Bắt buộc" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "Microblog bởi %s" +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "Cùng mật khẩu ở trên. Bắt buộc." -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "Email" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "Chỉ dùng để cập nhật, thông báo, và hồi phục mật khẩu" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "Không tìm thấy" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "Họ tên đầy đủ của bạn, tốt nhất là tên thật của bạn." -#: actions/twittersettings.php:71 -#, fuzzy -msgid "Add your Twitter account to automatically send " +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "Ghi chú và các file của tôi đã có ở phía dưới" + +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -"Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " -"bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." -#: actions/twittersettings.php:119 actions/twittersettings.php:122 +#: actions/register.php:496 #, fuzzy -msgid "Twitter user name" -msgstr "Tên tài khoản Twitter" +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy -msgid "Twitter password" -msgstr "Mật khẩu Twitter" +#: actions/register.php:537 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Chúc mừng, %s! Chào mừng bạn đến với %%%%site.name%%%%. Bây giờ bạn có " +"thể...\n" +"\n" +"* Vào trang [Hồ sơ cá nhân](%s) của bạn và gửi tin nhắn đầu tiên. \n" +"* Thêm [địa chỉ Jabber/GTalk](%%%%action.imsettings%%%%) để có thể gửi tin " +"nhắn nhanh.\n" +"* [Tìm kiếm người quen](%%%%action.peoplesearch%%%%) mà bạn nghĩ là có thể " +"chia sẻ niềm vui.\n" +"* Đọc xuyên suốt [hướng dẫn](%%%%doc.help%%%%) để hiểu thêm về dịch vụ của " +"chúng tôi.\n" +"\n" +"Cảm ơn bạn đã đăng ký để là thành viên và rất mong bạn sẽ thích dịch vụ này." -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -#, fuzzy -msgid "Twitter Friends" -msgstr "Thiết lập tài khoản Twitter" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " +"của bạn.)" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" +"Để đăng ký, bạn cần [Đăng nhập](%%action.login%%), hoặc [Đăng ký](%%action." +"register%%) tài khoản mới. Nếu bạn đã có một tài khoản khác trên [site " +"microblogging tương ứng](%%doc.openmublog%%), hãy nhập URL về hồ sơ cá nhân " +"của bạn dưới đây." -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Đăng nhận từ xa" -#: actions/unblock.php:108 actions/groupunblock.php:128 +#: actions/remotesubscribe.php:124 #, fuzzy -msgid "Error removing the block." -msgstr "Lỗi xảy ra khi lưu thành viên." +msgid "Subscribe to a remote user" +msgstr "Theo nhóm này" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "Không có URL cho hồ sơ để quay về." +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Biệt hiệu của người dùng" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -#, fuzzy -msgid "No profile with that id." -msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "Biệt hiệu của thành viên mà bạn muốn theo" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -#, fuzzy -msgid "Unsubscribed" -msgstr "Hết theo" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "URL của Hồ sơ cá nhân" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, fuzzy, php-format -msgid "%s groups" -msgstr "%s và nhóm" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "URL trong hồ sơ cá nhân của bạn ở trên các trang microblogging khác" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "Theo bạn này" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -#, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "Có lỗi xảy ra khi lưu tin nhắn." +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "URL hồ sơ cá nhân không đúng định dạng." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/remotesubscribe.php:168 +#, fuzzy msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "Cập nhật hình đại diện không thành công." - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 +#: actions/remotesubscribe.php:183 #, fuzzy -msgid "Other" -msgstr "Sau" +msgid "Couldn’t get a request token." +msgstr "Không thể lấy token yêu cầu." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Trả lời cho %s" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#: actions/replies.php:127 #, fuzzy, php-format -msgid "%s - %s" -msgstr "%s (%s)" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" +msgid "Replies to %s, page %d" +msgstr "Trả lời cho %s" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Account" -msgstr "Giới thiệu" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Change your email, avatar, password, profile" -msgstr "Thay đổi mật khẩu của bạn" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Dòng tin nhắn cho %s" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "Tạo tài khoản mới" +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%s chào mừng bạn " -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "Không có OpenID nào." +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s ưa thích các tin nhắn" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "Hướng dẫn" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "Thông báo mới" +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Chọn những người bạn của %s" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Chọn những người bạn của %s" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "Thông báo mới" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Chọn những người bạn của %s" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "Tôi theo" +#: actions/showfavorites.php:205 +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 "" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "Ban user" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, fuzzy, php-format +msgid "%s group" +msgstr "%s và nhóm" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: actions/showgroup.php:218 #, fuzzy -msgid "Disfavor this notice" -msgstr "cảnh báo tin nhắn" +msgid "Group profile" +msgstr "Thông tin nhóm" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 #, fuzzy -msgid " a new account." -msgstr "Tạo tài khoản mới" +msgid "Note" +msgstr "Tin nhắn" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy -msgid "Published" -msgstr "Công cộng" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 +#: actions/showgroup.php:293 #, fuzzy -msgid "Favor this notice" -msgstr "Bạn muốn cảnh báo tin nhắn này?" +msgid "Group actions" +msgstr "Mã nhóm" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Dòng tin nhắn cho %s" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -#, fuzzy -msgid "Tag" -msgstr "Từ khóa" +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "Hộp thư đi của %s" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 +msgid "Members" +msgstr "Thành viên" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: actions/showgroup.php:392 #, fuzzy -msgid "URL of the homepage or blog of the group or topic" -msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " +msgid "All members" +msgstr "Thành viên" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -msgid "Description" -msgstr "Mô tả" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "Số liệu thống kê" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 +#: actions/showgroup.php:432 #, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" +msgid "Created" +msgstr "Tạo" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -#, fuzzy +#: actions/showgroup.php:448 +#, php-format msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" - -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "Nhóm" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +"**%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 "" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: actions/showgroup.php:454 #, php-format -msgid "Edit %s group properties" +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 "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "Thoát" - -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: lib/groupsbymemberssection.php:71 +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Không có tin nhắn nào." + +#: actions/showmessage.php:98 #, fuzzy -msgid "Groups with most members" -msgstr "Thành viên" +msgid "Only the sender and recipient may read this message." +msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" msgstr "" -#: lib/grouptagcloudsection.php:56 +#: actions/showmessage.php:113 #, php-format -msgid "Tags in %s group's notices" +msgid "Message from %1$s on %2$s" msgstr "" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." - -#: lib/joinform.php:114 -#, fuzzy -msgid "Join" -msgstr "Đăng nhập" - -#: lib/leaveform.php:114 +#: actions/shownotice.php:90 #, fuzzy -msgid "Leave" -msgstr "Lưu" +msgid "Notice deleted." +msgstr "Tin đã gửi" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "Sai tên đăng nhập hoặc mật khẩu." +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Thông báo được gắn thẻ %s" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "Tạo tài khoản mới" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%s, page %d" +msgstr "Hộp thư đến của %s - trang %d" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" -#: lib/mail.php:236 +#: actions/showstream.php:136 #, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" -#: lib/mail.php:254 lib/mail.php:253 +#: actions/showstream.php:143 #, fuzzy, php-format -msgid "Location: %s\n" -msgstr "Thành phố: %s\n" +msgid "Notice feed for %s (Atom)" +msgstr "Dòng tin nhắn cho %s" -#: lib/mail.php:256 lib/mail.php:255 +#: actions/showstream.php:148 #, fuzzy, php-format -msgid "Homepage: %s\n" -msgstr "Trang chủ hoặc Blog: %s\n" +msgid "FOAF for %s" +msgstr "Hộp thư đi của %s" + +#: actions/showstream.php:191 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:196 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showstream.php:198 #, php-format msgid "" -"Bio: %s\n" -"\n" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/mail.php:461 lib/mail.php:462 +#: actions/showstream.php:234 #, php-format -msgid "You've been nudged by %s" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/mail.php:465 +#: actions/showstream.php:239 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "Thiết lập SMS" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -#, fuzzy -msgid "From" -msgstr " từ" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Bạn có thể nhận tin nhắn SMS qua email từ %%site.name%%." -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +#: actions/smssettings.php:91 #, fuzzy -msgid "Send a direct notice" -msgstr "Xóa tin nhắn" +msgid "SMS is not available." +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "Thông báo mới" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "SMS xác nhận ngay - đã cho phép gửi qua điện thoại. " -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 +#: actions/smssettings.php:123 #, fuzzy -msgid "Available characters" -msgstr "Nhiều hơn 6 ký tự" +msgid "Awaiting confirmation on this phone number." +msgstr "Đó không phải là số điện thoại của bạn." -#: lib/noticelist.php:426 lib/noticelist.php:429 +#: actions/smssettings.php:130 #, fuzzy -msgid "in reply to" -msgstr "còn nữa..." +msgid "Confirmation code" +msgstr "Không có mã số xác nhận." -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -#, fuzzy -msgid "Reply to this notice" -msgstr "Trả lời tin nhắn này" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "Nhập mã mà bạn nhận được trên điện thoại của bạn." -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "Trả lời" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "Số điện thoại để nhắn SMS " -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -#, fuzzy -msgid "Delete this notice" -msgstr "Xóa tin nhắn" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "Số điện thoại, không cho phép nhập dấu chấm và ký tự " -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -#, fuzzy -msgid "Delete" -msgstr "Xóa tin nhắn" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Hãy gửi thông báo đến tôi qua SMS; Tôi biết là bạn đang phải trả giá cao " +"cho dịch vụ của chúng tôi. " -#: lib/nudgeform.php:116 -#, fuzzy -msgid "Nudge this user" -msgstr "Tin đã gửi" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Không có số điện thoại." -#: lib/nudgeform.php:128 +#: actions/smssettings.php:311 #, fuzzy -msgid "Nudge" -msgstr "Tin đã gửi" +msgid "No carrier selected." +msgstr "Bạn chưa chọn hình để đưa lên." -#: lib/nudgeform.php:128 +#: actions/smssettings.php:318 #, fuzzy -msgid "Send a nudge to this user" -msgstr "Bạn đã theo những người này:" - -#: lib/personaltagcloudsection.php:56 -#, fuzzy, php-format -msgid "Tags in %s's notices" -msgstr "cảnh báo tin nhắn" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "Công cộng" +msgid "That is already your phone number." +msgstr "Đó không phải là số điện thoại của bạn." -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +#: actions/smssettings.php:321 #, fuzzy -msgid "User groups" -msgstr "Hồ sơ" +msgid "That phone number already belongs to another user." +msgstr "Địa chỉ email Yahoo này đã có người khác sử dụng rồi." -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#: actions/smssettings.php:347 #, fuzzy -msgid "Recent tags" -msgstr "Các từ khóa hiện tại" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +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 "" +"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " +"làm theo hướng dẫn." -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +#: actions/smssettings.php:374 #, fuzzy -msgid "Popular" -msgstr "Tên tài khoản" +msgid "That is the wrong confirmation number." +msgstr "Đó không phải là số điện thoại của bạn." -#: lib/searchgroupnav.php:82 -#, fuzzy -msgid "Notice" -msgstr "Tin nhắn" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "Đó không phải là số điện thoại của bạn." -#: lib/searchgroupnav.php:85 +#: actions/smssettings.php:465 #, fuzzy -msgid "Find groups on this site" -msgstr "Tìm kiếm mọi người trên trang web này" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "Đăng nhận từ xa" +msgid "Mobile carrier" +msgstr "Chọn nhà cung cấp Mobile" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "Theo nhóm này" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "Chọn nhà cung cấp Mobile" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: actions/smssettings.php:476 #, php-format -msgid "Groups %s is a member of" +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 "" +"Nhà cung cấp dịch vụ điện thoại di động của bạn. Nếu bạn biết nhà cung cấp " +"dịch vụ điện thoại nào cho phép nhận SMS qua email mà chưa có trong danh " +"sách này, vui lòng gửi mail cho chúng tôi đến địa chỉ %s." -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, fuzzy, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" -"Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp " -"của bạn tham gia vào dịch vụ này." +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "Không có mã nào được nhập" -#: lib/subs.php:53 lib/subs.php:52 +#: actions/subedit.php:70 #, fuzzy -msgid "User has blocked you." -msgstr "Người dùng không có thông tin." +msgid "You are not subscribed to that profile." +msgstr "Bạn chưa cập nhật thông tin riêng" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 +#: actions/subedit.php:83 #, fuzzy -msgid "Subscribe to this user" -msgstr "Theo nhóm này" +msgid "Could not save subscription." +msgstr "Không thể tạo đăng nhận." -#: lib/tagcloudsection.php:56 +#: actions/subscribe.php:55 #, fuzzy -msgid "None" -msgstr "Không" +msgid "Not a local user." +msgstr "Không có user nào." -#: lib/topposterssection.php:74 +#: actions/subscribe.php:69 #, fuzzy -msgid "Top posters" -msgstr "Top posters" - -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "Bỏ chặn người dùng này" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "Bỏ chặn" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "Ngừng đăng ký từ người dùng này" - -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Chọn những người bạn của %s" +msgid "Subscribed" +msgstr "Theo bạn này" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#: actions/subscribers.php:50 #, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Chọn những người bạn của %s" +msgid "%s subscribers" +msgstr "Bạn này theo tôi" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#: actions/subscribers.php:52 #, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "Chọn những người bạn của %s" - -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy -msgid "You and friends" -msgstr "%s và bạn bè" +msgid "%s subscribers, page %d" +msgstr "Theo tôi" -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "Có nhiều người nghe theo lời nhắn của bạn." -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 -#, fuzzy -msgid "Avatar deleted." -msgstr "Hình đại diện đã được cập nhật." +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Có nhiều người nghe theo lời nhắn của %s." -#: actions/block.php:129 actions/block.php:136 +#: actions/subscribers.php:108 msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/subscribers.php:114 #, 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." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Tất cả đăng nhận" + +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "Tất cả đăng nhận" + +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Có nhiều người gửi lời nhắn để bạn nghe theo." -#: actions/facebooksettings.php:124 +#: actions/subscriptions.php:69 #, 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 "" +msgid "These are the people whose notices %s listens to." +msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: actions/subscriptions.php:121 #, php-format msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "Microblog bởi %s" +msgid "%s is not listening to anyone." +msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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 "" -"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " -"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." +#: actions/subscriptions.php:194 +#, fuzzy +msgid "Jabber" +msgstr "Không có Jabber ID." -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" -#: actions/newmessage.php:102 +#: actions/tagother.php:33 #, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "Thư bạn đã gửi" +msgid "Not logged in" +msgstr "Chưa đăng nhập." -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr " Tìm dòng thông tin cho \"%s\"" +#: actions/tagother.php:39 +#, fuzzy +msgid "No id argument." +msgstr "Không có tài liệu nào." -#: actions/openidlogin.php:66 +#: actions/tagother.php:65 #, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " -"đổi trong điều chỉnh." +msgid "Tag %s" +msgstr "Từ khóa" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: actions/tagother.php:77 lib/userprofile.php:75 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "Dòng tin công cộng" +msgid "User profile" +msgstr "Hồ sơ" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "Dòng tin công cộng" +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: actions/tagother.php:141 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "Dòng tin công cộng" +msgid "Tag user" +msgstr "Từ khóa" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format +#: actions/tagother.php:151 msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format +#: actions/tagother.php:193 msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" - -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 +#: actions/tagother.php:200 #, fuzzy -msgid "Created" -msgstr "Tạo" +msgid "Could not save tags." +msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/showstream.php:147 -#, fuzzy -msgid "Your profile" -msgstr "Thông tin nhóm" - -#: actions/showstream.php:149 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "%s's profile" -msgstr "Hồ sơ" +msgid "Notices tagged with %s, page %d" +msgstr "Dòng tin nhắn cho %s" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (Atom)" msgstr "Dòng tin nhắn cho %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 -#, fuzzy, php-format -msgid "FOAF for %s" -msgstr "Hộp thư đi của %s" +#: actions/tagrss.php:35 +#, fuzzy +msgid "No such tag." +msgstr "Không có tin nhắn nào." + +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "Phương thức API dưới cấu trúc có sẵn." -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 +#: actions/unsubscribe.php:77 #, fuzzy -msgid "Edit Avatar" -msgstr "Hình đại diện" +msgid "No profile id in request." +msgstr "Không có URL cho hồ sơ để quay về." -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 +#: actions/unsubscribe.php:84 #, fuzzy -msgid "Edit profile settings" -msgstr "Các thiết lập cho Hồ sơ cá nhân" +msgid "No profile with that id." +msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "Hết theo" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Đăng nhận cho phép" + +#: actions/userauthorization.php:110 #, fuzzy 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." +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " -"làm theo hướng dẫn." +"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " +"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " +"của họ, hãy nhấn \"Hủy bỏ\"" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " -"mình.\n" -"\n" -"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" -"\n" -"%3$s\n" -"\n" -"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" -"\n" -"%4$s\n" -"\n" -"Chúc sức khỏe,\n" -"%5$s\n" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "Chấp nhận" + +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "No such user!" -msgstr "Không có user nào." +msgid "Subscribe to this user" +msgstr "Theo nhóm này" + +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "Từ chối" + +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Tất cả đăng nhận" + +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "Không có yêu cầu!" + +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "Đăng nhận được phép" -#: actions/twittersettings.php:72 +#: actions/userauthorization.php:249 #, fuzzy msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" -"Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " -"bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." +"Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các " +"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " +"của bạn là:" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "Đăng nhận từ chối" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:261 #, fuzzy msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " -"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " -"của họ, hãy nhấn \"Hủy bỏ\"" +"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " +"các hướng dẫn chi tiết trên site để " -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "Tin đã gửi" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: actions/userauthorization.php:322 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: actions/userauthorization.php:343 #, fuzzy, 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 "" -"Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " -"nối với OpenId của bạn." +msgid "Can’t read avatar URL ‘%s’." +msgstr "Không thể đọc URL cho hình đại diện '%s'" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Kiểu file ảnh không phù hợp với '%s'" -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" +#: actions/userbyid.php:70 +msgid "No id." +msgstr "Không có id." -#: lib/feed.php:89 -msgid "Atom" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/imagefile.php:75 +#: actions/usergroups.php:64 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "%s groups, page %d" msgstr "" -#: lib/mail.php:175 lib/mail.php:174 -#, fuzzy, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -"Chào, %1$s .\n" -"\n" -"Không biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n" -"\n" -"Nếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường " -"dẫn dưới đây: \n" -"\n" -"\t%3$s\n" -"\n" -"Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" -"\n" -"Cảm ơn bạn đã bỏ thời gian để đọc thư,\n" -"\n" -"%4$s\n" -"\n" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/usergroups.php:153 #, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Người bạn trung thành của bạn,\n" -"%4$s.\n" +msgid "%s is not a member of any group." +msgstr "Bạn chưa cập nhật thông tin riêng" -#: lib/mail.php:466 +#: actions/usergroups.php:158 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: lib/mail.php:513 +#: classes/File.php:137 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -"%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"Bạn có thể trả lời tại:\n" -"\n" -"%4$s\n" -"\n" -"Đừng trả lời lại thư này; sẽ không có ai nhận thư.\n" -"\n" -"Chúc sức khỏe,\n" -"%5$s\n" -#: lib/mail.php:598 lib/mail.php:600 +#: classes/File.php:147 #, php-format -msgid "%s sent a notice to your attention" +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: classes/File.php:154 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 +#: classes/Message.php:55 #, fuzzy -msgid "Search site" -msgstr "Tìm kiếm" +msgid "Could not insert message." +msgstr "Không thể chèn thêm vào đăng nhận." -#: lib/section.php:106 -msgid "More..." -msgstr "" +#: classes/Message.php:65 +#, fuzzy +msgid "Could not update message with new URI." +msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." -#: actions/all.php:80 actions/all.php:127 -#, php-format +#: classes/Notice.php:164 +#, fuzzy, php-format +msgid "DB error inserting hashtag: %s" +msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" + +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." + +#: classes/Notice.php:183 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." + +#: classes/Notice.php:188 msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: actions/all.php:85 actions/all.php:132 -#, php-format +#: classes/Notice.php:194 msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." + +#: classes/Notice.php:1120 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" +msgid "DB error inserting reply: %s" +msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "Không có tài liệu nào." +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "%s chào mừng bạn " -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Hồ sơ " -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "Ban user" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Thay đổi các thiết lập trong hồ sơ cá nhân của bạn" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "Hồ sơ" +#: lib/accountsettingsaction.php:112 +#, fuzzy +msgid "Upload an avatar" +msgstr "Cập nhật hình đại diện không thành công." -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s và bạn bè" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "Thay đổi mật khẩu của bạn" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "Đang thực hiện việc thay đổi email" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "Bỏ chặn người dùng này" +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" -#: actions/conversation.php:99 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Conversation" -msgstr "Không có mã số xác nhận." +msgid "Design your profile" +msgstr "Hồ sơ" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#: lib/accountsettingsaction.php:123 #, fuzzy -msgid "Do not delete this notice" -msgstr "Không thể xóa tin nhắn này." +msgid "Other" +msgstr "Sau" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "Trang chủ '%s' không hợp lệ" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 +#: lib/action.php:144 #, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." +msgid "%s - %s" +msgstr "%s (%s)" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/action.php:159 +msgid "Untitled page" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy -msgid "Could not create aliases." -msgstr "Không thể tạo favorite." - -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/action.php:424 +msgid "Primary site navigation" 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 "" +#: lib/action.php:430 +msgid "Home" +msgstr "Trang chủ" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" msgstr "" -#: actions/file.php:34 +#: lib/action.php:432 #, fuzzy -msgid "No notice id" -msgstr "Thông báo mới" +msgid "Account" +msgstr "Giới thiệu" -#: actions/file.php:38 +#: lib/action.php:432 #, fuzzy -msgid "No notice" -msgstr "Thông báo mới" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +msgid "Change your email, avatar, password, profile" +msgstr "Thay đổi mật khẩu của bạn" -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: lib/action.php:435 +msgid "Connect" +msgstr "Kết nối" -#: actions/finishopenidlogin.php:211 +#: lib/action.php:435 #, fuzzy -msgid "Not a valid invitation code." -msgstr "Biệt hiệu không hợp lệ." +msgid "Connect to services" +msgstr "Không thể chuyển đến máy chủ: %s" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Thư mời" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: lib/action.php:440 lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" msgstr "" +"Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp " +"của bạn tham gia vào dịch vụ này." -#: actions/groupblock.php:95 -#, fuzzy -msgid "User is already blocked from group." -msgstr "Người dùng không có thông tin." +#: lib/action.php:445 +msgid "Logout" +msgstr "Thoát" -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "Bạn chưa cập nhật thông tin riêng" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 +#: lib/action.php:450 #, fuzzy -msgid "Block user from group" -msgstr "Ban user" +msgid "Create an account" +msgstr "Tạo tài khoản mới" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +#: lib/action.php:453 +msgid "Login to the site" msgstr "" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "Hướng dẫn" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#: lib/action.php:456 #, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " +msgid "Help me!" +msgstr "Hướng dẫn" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "Nhóm" +#: lib/action.php:459 +msgid "Search" +msgstr "Tìm kiếm" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 +#: lib/action.php:480 #, fuzzy -msgid "Couldn't update your design." -msgstr "Không thể cập nhật thành viên." +msgid "Site notice" +msgstr "Thông báo mới" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "Không thể lưu thông tin Twitter của bạn!" +#: lib/action.php:546 +msgid "Local views" +msgstr "" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 +#: lib/action.php:612 #, fuzzy -msgid "Design preferences saved." -msgstr "Các tính năng đã được lưu." +msgid "Page notice" +msgstr "Thông báo mới" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#: lib/action.php:714 #, fuzzy -msgid "Make user an admin of the group" -msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " +msgid "Secondary site navigation" +msgstr "Tôi theo" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" +#: lib/action.php:721 +msgid "About" +msgstr "Giới thiệu" + +#: lib/action.php:723 +msgid "FAQ" +msgstr "FAQ" + +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy -msgid "Make this user an admin" -msgstr "Kênh mà bạn tham gia" +#: lib/action.php:730 +msgid "Privacy" +msgstr "Riêng tư" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/action.php:732 +msgid "Source" +msgstr "Nguồn" + +#: lib/action.php:734 +msgid "Contact" +msgstr "Liên hệ" + +#: lib/action.php:736 #, fuzzy -msgid "No results." -msgstr "Không có kết quả nào" +msgid "Badge" +msgstr "Tin đã gửi" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/groupsearch.php:85 +#: lib/action.php:767 #, php-format msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" +"%](%%site.broughtbyurl%%). " -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " + +#: lib/action.php:771 +#, fuzzy, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Đang dùng [StatusNet](http://status.net/), phiên bản %s phát hành theo bản " +"quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html)." -#: actions/groupunblock.php:95 +#: lib/action.php:785 #, fuzzy -msgid "User is not blocked from group." -msgstr "Người dùng không có thông tin." +msgid "Site content license" +msgstr "Tìm theo nội dung của tin nhắn" -#: actions/invite.php:39 -msgid "Invites have been disabled." +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." +#: lib/action.php:1062 +#, fuzzy +msgid "After" +msgstr "Sau" + +#: lib/action.php:1070 +#, fuzzy +msgid "Before" +msgstr "Trước" + +#: lib/action.php:1119 +#, fuzzy +msgid "There was a problem with your session token." +msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." + +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Hồ sơ " + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 +#: lib/channel.php:138 lib/channel.php:158 #, fuzzy -msgid "Message sent" -msgstr "Tin mới nhất" +msgid "Command results" +msgstr "Không có kết quả nào" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/channel.php:210 +msgid "Command complete" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" +#: lib/channel.php:221 +#, fuzzy +msgid "Command failed" +msgstr " và bạn bè" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." msgstr "" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Tin đã gửi" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +#, fuzzy +msgid "User has no last notice" +msgstr "Người dùng không có thông tin." -#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#: lib/command.php:190 #, fuzzy -msgid "Couldn't save file." -msgstr "Không thể lưu hồ sơ cá nhân." +msgid "Notice marked as fave." +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/command.php:315 +#, fuzzy, php-format +msgid "%1$s (%2$s)" +msgstr "%s (%s)" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/command.php:318 +#, fuzzy, php-format +msgid "Fullname: %s" +msgstr "Tên đầy đủ" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/command.php:321 +#, fuzzy, php-format +msgid "Location: %s" +msgstr "Thành phố: %s" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/command.php:324 +#, fuzzy, php-format +msgid "Homepage: %s" +msgstr "Trang chủ hoặc Blog: %s" -#: actions/noticesearch.php:121 +#: lib/command.php:327 +#, fuzzy, php-format +msgid "About: %s" +msgstr "Giới thiệu" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/noticesearch.php:124 +#: lib/command.php:377 +#, fuzzy +msgid "Error sending direct message." +msgstr "Thư bạn đã gửi" + +#: lib/command.php:431 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/openidsettings.php:70 +#: lib/command.php:439 #, fuzzy, 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%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " -"lý các OpenID của bạn ở đây." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +msgid "Reply to %s sent" +msgstr "Trả lời tin nhắn này" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/command.php:441 #, fuzzy -msgid "View profile designs" -msgstr "Các thiết lập cho Hồ sơ cá nhân" +msgid "Error saving notice." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" +#: lib/command.php:502 +#, fuzzy, php-format +msgid "Subscribed to %s" +msgstr "Theo nhóm này" -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/command.php:530 +#, fuzzy, php-format +msgid "Unsubscribed from %s" +msgstr "Hết theo" -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" +#: lib/command.php:551 +#, fuzzy +msgid "Notification off." +msgstr "Không có mã số xác nhận." -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +#: lib/command.php:574 +#, fuzzy +msgid "Notification on." +msgstr "Không có mã số xác nhận." + +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/publictagcloud.php:75 +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Không thể tạo OpenID mẫu: %s" + +#: lib/command.php:602 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/recoverpassword.php:152 -#, fuzzy +#: lib/command.php:613 msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -"Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa " -"chỉ email lưu trong tài khoản của bạn." - -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." - -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "Yêu cầu khôi phục lại mật khẩu đã được gửi" -#: actions/register.php:86 actions/register.php:92 +#: lib/common.php:191 #, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "Lỗi xảy ra với mã xác nhận." +msgid "No configuration file found. " +msgstr "Không có mã số xác nhận." -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "Theo nhóm này" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "Thay đổi bởi tin nhắn nhanh (IM)" + +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "Thay đổi bởi SMS" + +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s ưa thích các tin nhắn" +#: lib/designsettings.php:101 +#, fuzzy +msgid "Change background image" +msgstr "Background Theme:" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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 "" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Tải file" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format +#: lib/designsettings.php:109 msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Dòng tin nhắn cho %s" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Dòng tin nhắn cho %s" +#: lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "Background Theme:" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "Dòng tin nhắn cho %s" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Thay đổi mật khẩu của bạn" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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 "" +#: lib/designsettings.php:178 +#, fuzzy +msgid "Background" +msgstr "Background Theme:" -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Kết nối" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "Không có user nào." +msgid "Sidebar" +msgstr "Tìm kiếm" -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "Thông báo được gắn thẻ %s" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "Chuỗi bất kỳ" -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Dòng tin nhắn cho %s" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Đăng nhập" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:257 +#, fuzzy +msgid "Save design" +msgstr "Lưu" + +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "cảnh báo tin nhắn" + +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Bạn muốn cảnh báo tin nhắn này?" + +#: lib/favorform.php:140 +#, fuzzy +msgid "Favor" +msgstr "Ưa thích" + +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Dòng tin nhắn cho %s" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "Dòng tin nhắn cho %s" +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy -msgid "This status is already a favorite!" -msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#: lib/galleryaction.php:139 #, fuzzy -msgid "That status is not a favorite!" -msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" +msgid "Select tag to filter" +msgstr "Chọn nhà cung cấp Mobile" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 +#: lib/galleryaction.php:140 #, fuzzy -msgid "Could not determine source user." -msgstr "Không thể lấy lại các tin nhắn ưa thích" +msgid "Tag" +msgstr "Từ khóa" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." +#: lib/galleryaction.php:143 +msgid "Go" msgstr "" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#: lib/groupeditform.php:163 #, fuzzy -msgid "Could not find target user." -msgstr "Không tìm thấy bất kỳ trạng thái nào." +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 +#: lib/groupeditform.php:170 #, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "Dòng tin nhắn cho %s" +msgid "Describe the group or topic in %d characters" +msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" +#: lib/groupeditform.php:172 +msgid "Description" +msgstr "Mô tả" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" + +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy -msgid "Reject this subscription" -msgstr "Tất cả đăng nhận" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "Nhóm" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#: lib/groupnav.php:100 #, fuzzy -msgid "Profile design" -msgstr "Các thiết lập cho Hồ sơ cá nhân" +msgid "Blocked" +msgstr "Ban user" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Ban user" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" msgstr "" -#: actions/usergroups.php:153 -#, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "Bạn chưa cập nhật thông tin riêng" +#: lib/groupnav.php:112 +#, fuzzy +msgid "Logo" +msgstr "Thoát" -#: actions/usergroups.php:158 +#: lib/groupnav.php:113 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgid "Add or edit %s logo" msgstr "" -#: classes/File.php:127 classes/File.php:137 +#: lib/groupnav.php:119 #, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." +msgid "Add or edit %s design" msgstr "" -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." +#: lib/groupsbymemberssection.php:71 +#, fuzzy +msgid "Groups with most members" +msgstr "Thành viên" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" msgstr "" -#: classes/File.php:145 classes/File.php:154 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." +msgid "Tags in %s group's notices" msgstr "" -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "Có lỗi xảy ra khi lưu tin nhắn." +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/imagefile.php:75 #, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "%s chào mừng bạn " - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" +msgid "That file is too big. The maximum file size is %s." msgstr "" +"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " +"về bạn." -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "Hồ sơ" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "Upload từng phần." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "Hệ thống xảy ra lỗi trong khi tải file." -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "File hỏng hoặc không phải là file ảnh." -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "Không hỗ trợ kiểu file ảnh này." -#: lib/attachmentlist.php:278 +#: lib/imagefile.php:118 #, fuzzy -msgid "Provider" -msgstr "Hồ sơ " +msgid "Lost our file." +msgstr "Không có tin nhắn nào." -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" +#: lib/imagefile.php:150 lib/imagefile.php:197 +#, fuzzy +msgid "Unknown file type" +msgstr "Không hỗ trợ kiểu file ảnh này." -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "Thông báo mới" -#: lib/designsettings.php:101 +#: lib/joinform.php:114 #, fuzzy -msgid "Change background image" -msgstr "Background Theme:" +msgid "Join" +msgstr "Đăng nhập" -#: lib/designsettings.php:105 +#: lib/leaveform.php:114 #, fuzzy -msgid "Upload file" -msgstr "Tải file" +msgid "Leave" +msgstr "Lưu" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "Sai tên đăng nhập hoặc mật khẩu." -#: lib/designsettings.php:139 -msgid "On" -msgstr "" +#: lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Tạo tài khoản mới" -#: lib/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/designsettings.php:156 -msgid "Turn background image on or off." +#: lib/mailbox.php:139 +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/designsettings.php:161 +#: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy -msgid "Tile background image" -msgstr "Background Theme:" +msgid "from" +msgstr " từ " -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "Thay đổi mật khẩu của bạn" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "Xac nhan dia chi email" -#: lib/designsettings.php:178 -#, fuzzy -msgid "Background" -msgstr "Background Theme:" +#: lib/mail.php:174 +#, fuzzy, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" +"Chào, %1$s .\n" +"\n" +"Không biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n" +"\n" +"Nếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường " +"dẫn dưới đây: \n" +"\n" +"\t%3$s\n" +"\n" +"Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" +"\n" +"Cảm ơn bạn đã bỏ thời gian để đọc thư,\n" +"\n" +"%4$s\n" +"\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "Kết nối" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s đang theo dõi lưu ý của bạn trên %2$s." -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Tìm kiếm" +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Người bạn trung thành của bạn,\n" +"%4$s.\n" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "Đăng nhập" +#: lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "Thành phố: %s\n" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" +#: lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "Trang chủ hoặc Blog: %s\n" -#: lib/designsettings.php:248 -msgid "Restore default designs" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "Dia chi email moi de gui tin nhan den %s" + +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"Bạn có địa chỉ mới để gửi tin nhắn trên %1$s.\n" +"\n" +"Hãy gửi email đến %2$s để có thể nhắn tin.\n" +"\n" +"Bạn có thể đọc hướng dẫn tại %3$s.\n" +"\n" +"Chúc sức khỏe,\n" +"%4$s" -#: lib/designsettings.php:257 -#, fuzzy -msgid "Save design" -msgstr "Lưu" +#: lib/mail.php:412 +#, fuzzy, php-format +msgid "%s status" +msgstr "Trạng thái của %1$s vào %2$s" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " -msgstr "" +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "Xác nhận SMS" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:466 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "Ban user" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "Ban user" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "Bạn có tin nhắn riêng từ %s" -#: lib/groupnav.php:119 +#: lib/mail.php:513 #, php-format -msgid "Add or edit %s design" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" + #: lib/mail.php:556 #, fuzzy, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -7297,666 +4391,460 @@ msgstr "" "Chúc sức khỏe,\n" "%5$s\n" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"\t%3$s\n" "\n" -"\t%2$s\n" +"It reads:\n" +"\n" +"\t%4$s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mailbox.php:139 +#: lib/mediafile.php:147 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." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "Không có nội dung!" - -#: lib/profileaction.php:177 -msgid "User ID" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "Tìm kiếm" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "Trang chủ không phải là URL" +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: lib/webcolor.php:123 +#: lib/mediafile.php:270 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid " Try using another %s format." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "Không có tin nhắn nào." - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "Tin nhắn riêng" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "Quá dài. Tối đa là 140 ký tự." +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" -#: actions/apifriendshipsdestroy.php:109 +#: lib/messageform.php:120 #, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." +msgid "Send a direct notice" +msgstr "Xóa tin nhắn" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "Lý lịch quá dài (không quá 140 ký tự)" - -#: actions/apigroupjoin.php:110 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "You are already a member of that group." -msgstr "Bạn đã theo những người này:" - -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." +msgid "Available characters" +msgstr "Nhiều hơn 6 ký tự" -#: actions/apigroupleave.php:114 +#: lib/noticeform.php:145 #, fuzzy -msgid "You are not a member of this group." -msgstr "Bạn chưa cập nhật thông tin riêng" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s và nhóm" +msgid "Send a notice" +msgstr "Thông báo mới" -#: actions/apigrouplist.php:103 +#: lib/noticeform.php:158 #, php-format -msgid "Groups %s is a member of on %s." -msgstr "Bạn chưa cập nhật thông tin riêng" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "Mã nhóm" - -#: actions/apistatusesshow.php:138 -#, fuzzy -msgid "Status deleted." -msgstr "Hình đại diện đã được cập nhật." - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "Quá dài. Tối đa là 140 ký tự." +msgid "What's up, %s?" +msgstr "Bạn đang làm gì thế, %s?" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy -msgid "Unsupported format." -msgstr "Không hỗ trợ kiểu file ảnh này." - -#: actions/bookmarklet.php:50 -msgid "Post to " +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "Lý lịch quá dài (không quá 140 ký tự)" - -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "Dòng tin nhắn cho %s" - -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "Người dùng đang lắng nghe để không thoát khỏi." - -#: actions/finishremotesubscribe.php:106 -#, fuzzy -msgid "You are not authorized." -msgstr "Chưa được phép." - -#: actions/finishremotesubscribe.php:109 +#: lib/noticelist.php:478 #, fuzzy -msgid "Could not convert request token to access token." -msgstr "Không thể chuyển các token yêu cầu đến token truy cập." +msgid "in context" +msgstr "Không có nội dung!" -#: actions/finishremotesubscribe.php:114 +#: lib/noticelist.php:498 #, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "Không biết phiên bản của giao thức OMB." +msgid "Reply to this notice" +msgstr "Trả lời tin nhắn này" -#: actions/getfile.php:75 -#, fuzzy -msgid "No such file." -msgstr "Không có tin nhắn nào." +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "Trả lời" -#: actions/getfile.php:79 +#: lib/nudgeform.php:116 #, fuzzy -msgid "Cannot read file." -msgstr "Không có tin nhắn nào." - -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "Dòng tin nhắn cho %s" +msgid "Nudge this user" +msgstr "Tin đã gửi" -#: actions/imsettings.php:89 +#: lib/nudgeform.php:128 #, fuzzy -msgid "IM is not available." -msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." - -#: actions/login.php:259 actions/login.php:286 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " -"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập " -"bằng [OpenID](%%action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "Dòng tin nhắn cho %s" - -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Các thay đổi phù hợp với từ \"%s\"" +msgid "Nudge" +msgstr "Tin đã gửi" -#: actions/oembed.php:157 +#: lib/nudgeform.php:128 #, fuzzy -msgid "content type " -msgstr "Kết nối" +msgid "Send a nudge to this user" +msgstr "Bạn đã theo những người này:" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "Lỗi xảy ra khi thêm mới hình đại diện" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 +#: lib/oauthstore.php:345 #, fuzzy -msgid "Describe yourself and your interests" -msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" +msgid "Duplicate notice" +msgstr "Xóa tin nhắn" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "Lý lịch quá dài (không quá 140 ký tự)" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "Không thể chèn thêm vào đăng nhận." -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Cá nhân" -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Trả lời" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Ưa thích" + +#: lib/personalgroupnav.php:115 +msgid "User" msgstr "" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "Không thể lấy token yêu cầu." +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "Hộp thư đến" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "Dòng tin nhắn cho %s" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "Thư đến của bạn" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "Dòng tin nhắn cho %s" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "Hộp thư đi" -#: actions/replies.php:158 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "Thư bạn đã gửi" + +#: lib/personaltagcloudsection.php:56 #, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "Dòng tin nhắn cho %s" +msgid "Tags in %s's notices" +msgstr "cảnh báo tin nhắn" -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "%s chào mừng bạn " +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Tôi theo bạn này" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Chọn những người bạn của %s" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Tất cả đăng nhận" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Chọn những người bạn của %s" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Bạn này theo tôi" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "Chọn những người bạn của %s" +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Bạn này theo tôi" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" +#: lib/profileaction.php:177 +msgid "User ID" msgstr "" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "Hộp thư đi của %s" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "Gia nhập từ" -#: actions/shownotice.php:90 +#: lib/profileaction.php:235 #, fuzzy -msgid "Notice deleted." -msgstr "Tin đã gửi" +msgid "All groups" +msgstr "Nhóm" -#: actions/smssettings.php:91 +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Công cộng" + +#: lib/publicgroupnav.php:82 #, fuzzy -msgid "SMS is not available." -msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." +msgid "User groups" +msgstr "Hồ sơ" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Dòng tin nhắn cho %s" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#, fuzzy +msgid "Recent tags" +msgstr "Các từ khóa hiện tại" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" -#: actions/userauthorization.php:110 +#: lib/publicgroupnav.php:92 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " -"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " -"của họ, hãy nhấn \"Hủy bỏ\"" +msgid "Popular" +msgstr "Tên tài khoản" -#: actions/userauthorization.php:249 +#: lib/searchaction.php:120 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các " -"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " -"của bạn là:" +msgid "Search site" +msgstr "Tìm kiếm" -#: actions/userauthorization.php:261 +#: lib/searchaction.php:162 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " -"các hướng dẫn chi tiết trên site để " +msgid "Search help" +msgstr "Tìm kiếm" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Tên tài khoản" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Tìm kiếm mọi người trên trang web này" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +#: lib/searchgroupnav.php:82 +#, fuzzy +msgid "Notice" +msgstr "Tin nhắn" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Tìm theo nội dung của tin nhắn" -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#: lib/searchgroupnav.php:85 +#, fuzzy +msgid "Find groups on this site" +msgstr "Tìm kiếm mọi người trên trang web này" + +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "Không thể đọc URL cho hình đại diện '%s'" +#: lib/section.php:106 +msgid "More..." +msgstr "" -#: actions/userauthorization.php:348 +#: lib/subgroupnav.php:83 #, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Kiểu file ảnh không phù hợp với '%s'" - -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "Không thể chuyển đến máy chủ: %s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "Tìm theo nội dung của tin nhắn" +msgid "People %s subscribes to" +msgstr "Đăng nhận từ xa" -#: lib/command.php:88 +#: lib/subgroupnav.php:91 #, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." +msgid "People subscribed to %s" +msgstr "Theo nhóm này" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" msgstr "" -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "Tin đã gửi" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" msgstr "" -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "Trả lời tin nhắn này" +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/command.php:441 +#: lib/subs.php:52 #, fuzzy -msgid "Error saving notice." -msgstr "Có lỗi xảy ra khi lưu tin nhắn." +msgid "User has blocked you." +msgstr "Người dùng không có thông tin." -#: lib/common.php:191 +#: lib/subs.php:56 #, fuzzy -msgid "No configuration file found. " -msgstr "Không có mã số xác nhận." +msgid "Could not subscribe." +msgstr "Chưa đăng nhận!" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +#: lib/subs.php:75 +#, fuzzy +msgid "Could not subscribe other to you." +msgstr "Không thể tạo favorite." -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "Chưa đăng nhận!" -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "Không thể xóa đăng nhận." -#: lib/galleryaction.php:139 +#: lib/tagcloudsection.php:56 #, fuzzy -msgid "Select tag to filter" -msgstr "Chọn nhà cung cấp Mobile" +msgid "None" +msgstr "Không" -#: lib/groupeditform.php:168 +#: lib/topposterssection.php:74 #, fuzzy -msgid "Describe the group or topic" -msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" +msgid "Top posters" +msgstr "Top posters" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "Ngừng đăng ký từ người dùng này" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "Thông báo mới" +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "Hết theo" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "Hình đại diện" -#: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" +#: lib/userprofile.php:236 +#, fuzzy +msgid "User actions" +msgstr "Không tìm thấy action" + +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " -"mình.\n" -"\n" -"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" -"\n" -"%3$s\n" -"\n" -"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" -"\n" -"%4$s\n" -"\n" -"Chúc sức khỏe,\n" -"%5$s\n" -#: lib/mail.php:611 +#: lib/userprofile.php:272 +#, fuzzy +msgid "Send a direct message to this user" +msgstr "Bạn đã theo những người này:" + +#: lib/userprofile.php:273 +#, fuzzy +msgid "Message" +msgstr "Tin mới nhất" + +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "vài giây trước" + +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "1 phút trước" + +#: lib/util.php:848 #, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgid "about %d minutes ago" +msgstr "%d phút trước" -#: lib/mail.php:613 +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "1 giờ trước" + +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgid "about %d hours ago" +msgstr "%d giờ trước" -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " từ " +#: lib/util.php:854 +msgid "about a day ago" +msgstr "1 ngày trước" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" +msgstr "%d ngày trước" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "Không thể lấy lại các tin nhắn ưa thích" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "1 tháng trước" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "Xóa tin nhắn" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "%d tháng trước" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "Nội dung tin nhắn không hợp lệ" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "1 năm trước" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "Không thể tạo OpenID mẫu: %s" +msgid "%s is not a valid color!" +msgstr "Trang chủ không phải là URL" -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." +#: scripts/maildaemon.php:48 +#, fuzzy +msgid "Could not parse message." +msgstr "Không thể cập nhật thành viên." -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "Không có người dùng nào đăng ký" + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "Xin lỗi, không có địa chỉ email cho phép." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.mo b/locale/zh_CN/LC_MESSAGES/statusnet.mo index 38a4c990b..94772c6ca 100644 Binary files a/locale/zh_CN/LC_MESSAGES/statusnet.mo and b/locale/zh_CN/LC_MESSAGES/statusnet.mo differ diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 27ec36bf1..06465826f 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,4535 +10,1717 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:27+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:59:05+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "搜索有关\"%s\"的消息" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "未找到此消息。" -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "没有这个用户。" -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr " 从 " +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s 及好友" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / 回复 %2$s 的消息" +msgid "%s and friends" +msgstr "%s 及好友" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s 邀请您加入 %2$s" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s 好友的聚合" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s 邀请你加入 %2$s (%3$s).\n" -"\n" -"%2$s 是一个能让你和你认识的、感兴趣的人保持联系的微博客服务。 \n" -"你可以和你认识的人分享你的近况、想法或者你的网络生活。你也可以结交有共同兴趣" -"的新朋友。\n" -"\n" -"%1$s 说:\n" -"\n" -"%4$s\n" -"\n" -"你可以在这里查阅 %1$s's 的资料 %2$s :\n" -"\n" -"%5$s\n" -"\n" -"如果你想使用这个服务,请点击一下链接接受邀请。\n" -"%6$s\n" -"\n" -"如果你不愿意,请跳过这条信息。感谢您的耐心和时间。\n" -"\n" -"诚挚的感谢, %2$s\n" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s 好友的聚合" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s 开始关注您的 %2$s 信息。" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s 好友的聚合" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"%1$s 开始关注您的 %2$s 信息。\n" -"\n" -"\t%3$s\n" -"\n" -"为您效力的 %4$s\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "回复 %2$s / %3$s 的 %1$s 更新。" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 +#: actions/all.php:132 #, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s 的 %2$s 状态" +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" -msgstr "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s 公开聚合" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s 及好友" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "%s 公众时间表" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "%s 状态" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s timeline" -msgstr "%s 时间表" +msgid "Updates from %1$s and friends on %2$s!" +msgstr "%2$s 上 %1$s 和好友的更新!" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "来自所有人的 %s 消息!" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "API 方法未实现!" -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "(您将收到一封邮件,包含了如何确认邮件地址的说明。)" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "此方法接受POST请求。" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -"**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." -"broughtbyurl%%)。" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** 是一个微博客服务。" +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." +msgstr "用户没有个人信息。" -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "。贡献者应当有全名或昵称。" +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "阻止用户失败。" -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 到 64 个小写字母或数字,不包含标点及空白" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "取消阻止用户失败。" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1 到 64 个小写字母或数字,不包含标点及空白。此项必填。" +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "消息没有正文!" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6 个或更多字符" +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "超出长度限制。不能超过 140 个字符。" -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 个或更多字符,不能忘记!" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "未找到收件人。" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." -msgstr "6 个或更多字符。此项必填。" +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "无法向并非好友的用户发送直接消息。" + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "发给 %s 的直接消息" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessage.php:93 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" +msgid "All the direct messages sent from %s" +msgstr "%s 发送的直接消息" -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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 "" -"验证码已被发送到您新增的电子邮件。请检查收件箱(和垃圾箱),找到验证码并按要求" -"使用它。" +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "发给 %s 的直接消息" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求" -"使用它。" +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "发给 %s 的直接消息" -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "API 方法未实现!" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "没有找到此ID的信息。" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "API 方法尚未实现。" +#: actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "已收藏此通告!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "关于" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "无法创建收藏。" -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "接受" +#: actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "此通告未被收藏!" -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "添加" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "无法删除收藏。" -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "添加 OpenID" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "无法订阅用户:未找到。" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "添加或移除 OpenID" - -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "地址" +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "无法订阅用户:%s 已在订阅列表中。" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "要邀请的好友地址(每行一个)" - -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "所有订阅" - -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 -#, php-format -msgid "All updates for %s" -msgstr "所有 %s 消息" - -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 -#, php-format -msgid "All updates matching search term \"%s\"" -msgstr "所有匹配搜索条件\"%s\"的消息" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "已登录。" - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "已订阅!" - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "确定要删除这条消息吗?" - -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "确认订阅" - -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "保持这台机器上的登录状态。不要在共用的机器上保持登录!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "头像" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "头像已更新。" - -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。" -"(你是否已经添加 %s为你的好友?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"等待确认此地址。请查看您的收件箱(和垃圾箱)是否收到了邮件,其中包含了进一步的" -"指示。" - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "等待确认此电话号码。" - -#: ../lib/util.php:1318 lib/util.php:1452 +#: actions/apifriendshipsdestroy.php:109 #, fuzzy -msgid "Before »" -msgstr "下一页 »" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "自述" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "自述过长(不能超过140字符)。" - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "无法删除通告。" - -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "无法访问头像URL '%s'" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "无法保存新密码。" - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "取消" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "无法创建 OpenID 用户对象。" - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "无法识别此Jabber ID" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "无法识别此电子邮件" - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "修改" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "修改电子邮件" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "修改密码" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "修改密码" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "修改您的个人信息" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "确认" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "确认地址" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "已取消确认。" - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "确认码" - -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "未找到确认码。" - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"恭喜, %s! 欢迎来到 %%%%site.name%%%%. 这里,你需要\n" -"\n" -"* 查看你的资料Go to [your profile](%s) 发布你的第一条消息.\n" -"* 填加 [Jabber/GTalk address](%%%%action.imsettings%%%%) 然后你可以通过即时消" -"息平台发布信息。\n" -"* [Search for people](%%%%action.peoplesearch%%%%) 你认识的或和你有共同兴趣的" -"朋友。 \n" -"* 更新你的 [profile settings](%%%%action.profilesettings%%%%) 告诉大家更多关" -"于你的情况。 \n" -"* 请阅读 [online docs](%%%%doc.help%%%%) 有的功能也许你还不熟悉。\n" -"\n" -"感谢您的注册,希望您喜欢这个服务。" - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "连接" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "连接现有帐号" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "联系人" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "无法创建 OpenID 表单:%s" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "无法订阅用户:%s 已在订阅列表中。" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." +msgid "Could not unfollow user: User not found." msgstr "无法订阅用户:未找到。" -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "无法重定向到服务器:%s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "无法保存头像" - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "无法保存个人信息" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "无法订阅他人更新。" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "无法订阅。" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "无法更新已确认的电子邮件。" - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "无法将请求标记转换为访问令牌。" - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "无法删除电子邮件确认。" - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "无法删除订阅。" - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "找不到任何信息。" - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "无法获得一份请求标记。" - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "无法插入验证码。" - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "无法添加新的订阅。" - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "无法保存个人信息。" - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "无法更新用户的自动订阅选项。" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "无法更新用户记录。" - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "无法更新用户。" - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "创建" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "创建使用此昵称的新用户。" - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "创建新帐号" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "为 OpenID 用户产生新的帐号。" - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "已确认的Jabber/GTalk帐号。" - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "已确认的可以发送SMS短消息的电话号码。" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "已确认的电子邮件。" - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "目前" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "添加标签时数据库出错:%s" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "添加回复时数据库出错:%s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "删除通告" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "用不超过140个字符描述您自己和您的爱好" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "电子邮件" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "电子邮件地址" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "电子邮件设置" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "电子邮件地址已存在。" - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "电子邮件地址确认" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "电子邮件,类似 \"UserName@example.org\"" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "电子邮件地址" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "输入昵称或电子邮件。" - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "输入手机收到的验证码。" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "无法认证令牌" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "无法将用户与 OpenID 连接。" - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "无法连接用户。" - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "添加头像出错" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "添加个人信息出错" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "添加远程的个人信息出错" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "保存地址确认时出错。" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "保存远程的个人信息时出错" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "保存个人信息时出错。" - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "保存用户时出错。" - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "保存用户时出错;不正确。" - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "保存用户设置时出错。" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "更新个人信息时出错" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "更新远程的个人信息时出错" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "验证码出错。" - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "昵称已被使用" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "常见问题FAQ" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "更新头像失败。" - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "%s 好友的聚合" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "%s 回复的聚合" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "%s 标签的聚合" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "搜索通告内容" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "搜索用户信息" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "由于安全原因,修改设置前需要输入用户名和密码。" - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "全名" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "全名过长(不能超过 255 个字符)。" - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "帮助" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "主页" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "主页" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "主页的URL不正确。" - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "我希望通过邮件发布信息。" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "即时通讯IM" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "IM 帐号" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "IM 设置" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "如果您已经拥有帐号,可以将它连接到您的 OpenID。请输入用户名和密码。" - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "如果您希望添加新的 OpenID,输入它并点击“添加”。" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "发布用的电子邮件" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "发布用的电子邮件被移除。" - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "旧密码不正确" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "用户名或密码不正确。" - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "恢复密码的指示已被发送到您的注册邮箱。" - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "头像URL '%s'不正确" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "电子邮件地址 %s 不正确" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "主页'%s'不正确" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "授权方式URL '%s'不正确" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "通告内容不正确" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "通告URI不正确" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "通告URL不正确" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "个人信息URL '%s'不正确。" - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "个人信息URL不正确(格式错误)" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "服务器返回的个人信息URL不正确。" - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "大小不正确。" - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "用户名或密码不正确。" - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "已发送邀请" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "已发送邀请给这些人:" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "邀请" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "邀请新用户" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"它运行[StatusNet](http://status.net/)微博客服务,版本 %s,采用[GNU Affero " -"General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" -"授权。" - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID 属于另一用户。" - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber 或 GTalk 帐号,类似\"UserName@example.org\"。首先,必须在即时聊天工具" -"或GTalk中将 %s 加为好友。" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "语言" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "语言过长(不能超过50个字符)。" - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "位置" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "位置过长(不能超过255个字符)。" - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "登录" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "使用[OpenID](%%doc.openid%%)帐号登录。" - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " -"或使用 [OpenID](%%action.openidlogin%%). " - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "登出" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "长名字,最好是“实名”" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "忘记了密码?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "生成新的电子邮件地址用于发布信息;取消旧的。" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "设置 %%site.name%% 发送的邮件。" - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "用户始于" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "%s 的微博客服务" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" -"电话的服务商。如果您的服务商支持通过电子邮件发送SMS短信,而这里尚未列出,请联" -"系 %s 以告知。" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "我的文字和文件采用的授权方式为" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "新建" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "新的电子邮件地址,用于发布 %s 信息" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "已添加新的发布用的电子邮件地址。" - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "新昵称" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "新通告" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "新密码" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "新密码已保存,您现在已登录。" - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "昵称" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "昵称已被使用,换一个吧。" - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "昵称只能使用小写字母和数字,不包含空格。" - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "不允许的昵称。" - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "希望订阅的用户的昵称" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "昵称或电子邮件" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "否" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "没有 Jabber ID。" - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "未收到认证请求!" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "未选择运营商。" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "没有输入验证码" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "没有验证码" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "没有内容!" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "没有电子邮件地址。" - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "没有 id。" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "没有发布用的电子邮件地址。" - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "远程服务器没有昵称。" - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "没有昵称。" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "没有可以取消的确认。" - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "没有电话号码。" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "服务器没有返回个人信息URL。" - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "用户没有注册电子邮件。" - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "没有找到请求!" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "没有结果" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "没有大小。" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "没有找到此ID的信息。" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "没有找到此ID的信息。" - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "没有这个 OpenID。" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "没有这份文档。" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "没有这份通告。" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "没有这个恢复码。" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "没有这个订阅" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "没有这个用户。" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "没有拥有这个用户名或电子邮件的用户。" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "不显示任何人!" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "不是恢复码。" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "不是已注册用户。" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "不支持的数据格式。" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "不是有效的 Jabber ID" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "不是有效的 OpenID。" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "不是有效的电子邮件" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "不是有效的电子邮件。" - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "不是有效的昵称。" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "不是有效的个人信息URL(不正确的服务)。" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "不是有效的个人信息URL(未定义XRDS)。" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "不是有效的个人信息URL(没有YADIS数据)。" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "不是图片文件或文件已损坏。" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "未认证。" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "未预料的响应!" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "未找到" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "未登录。" - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "未订阅!" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "搜索通告" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "%s 的通告聚合" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "通告没有关联个人信息" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "通告" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "带 %s 标签的通告" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "旧密码" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "OpenID" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "OpenID 帐号设置" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "OpenID 自动提交" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "OpenID 登录" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "OpenID URL" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "OpenID 认证已取消。" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "OpenID 认证失败:%s" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "OpenID 失败:%s" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "OpenID 已移除。" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "OpenID 设置" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "在邀请中加几句话(可选)。" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "部分上传。" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "密码" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "密码和确认不匹配。" - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "密码必须是 6 个字符或更多。" - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "请求恢复密码" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "密码已保存。" - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "密码不匹配。" - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "用户" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "搜索用户" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "搜索用户" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "个人" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "个人消息" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "电话号码,不带标点或空格,包含地区代码" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" -"告,请点击\"取消\"。" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "首选项" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "首选项已保存。" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "首选语言" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "隐私" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "保存通告时出错。" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "个人信息" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "个人信息URL" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "个人设置" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "未知的帐号" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "公开的聚合" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "公开的时间表" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "公开Jabber/GTalk帐号的 MicroID。" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "公开电子邮件的 MicroID。" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "最近的标签" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "恢复" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "恢复密码" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "恢复码未知" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "注册" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "不允许注册。" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "注册成功。" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "拒绝" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "记住登录状态" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "没有匹配的远程个人信息" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "远程订阅" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "移除" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "移除OpenID" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "移除唯一的OpenID可能使您无法登陆!如果需要移除它,请先添加一个新的。" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "回复" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "%s 的回复" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "重置" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "重置密码" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "SMS短信" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "SMS短信电话号码" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "SMS短信设置" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "SMS短信确认" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "相同的密码" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "相同的密码。此项必填。" - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "保存" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "搜索" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "搜索聚合" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"在 %%site.name%% 的通告内容中搜索。搜索条件至少包含 3 个字符,多个搜索条件用" -"空格分隔。" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包" -"含 3 个字符,多个搜索条件用空格分隔。" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "选择运营商" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "发送" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "向这个电子邮件发信以发布新的通告。" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "如果有新订阅,通过电子邮件告诉我。" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "通过Jabber/GTalk发送通告。" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "通过SMS短信将通告发给我;我了解这样也许会给我带来不菲的开支。" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "如果我尚未订阅的用户回我消息,使用Jabber/GTalk通知我。" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "设置" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "设置已保存。" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "显示上周以来最流行的标签" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "其他人已经使用了这个OpenID。" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "发生了奇怪的错误……" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "对不起,发布用的电子邮件无法使用。" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "对不起,这个发布用的电子邮件属于其他用户。" - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "来源" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "统计" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "未找到已有的OpenID。" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "订阅" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "订阅者" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "订阅已确认" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "订阅被拒绝" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "订阅" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "上传文件时出错。" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "标签" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "文本" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "搜索文本" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "此OpenID属于他人。" - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "此地址已被确认。" - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "此确认码不适用!" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "此电子邮件属于其他用户。" - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "文件超出大小限制。" - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "您已登记此Jabber帐号。" - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "您已登记此电子邮件。" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "您已登记此电话号码。" - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "这不是您的Jabber帐号。" - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "这是他人的电子邮件。" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "这是他人的电话号码。" - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "即时通讯帐号错误。" - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "确认码错误。" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "这个电话号码属于另一个用户。" - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "超出长度限制。不能超过 140 个字符。" - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "超出长度限制。不能超过 255 个字符。" - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "地址 \"%s\" 已确认。" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "地址被移除。" - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "这些用户订阅了 %s 的通告。" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "这些用户订阅了您的通告。" - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "这是 %s 订阅的用户。" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "这是您订阅的用户。" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "这些好友已注册,您已自动订阅这些用户。" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "验证码超时,请重来。" - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "此表单会自动提交。如果没有,点击“提交”以转向 OpenID 提供者。" - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, 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 "" -"这是您第一次登陆 %s,我们需要将 OpenID 连接到这里的帐号。您可以创建新帐号,或" -"者连接到已有的帐号。" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "此方法接受POST或DELETE请求。" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "此方法接受POST请求。" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "这个页面不提供您想要的媒体类型" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "时区" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "未选择时区。" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"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." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "必须提供两个用户帐号或昵称。" - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "您的主页、博客或在其他站点的URL" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "您在其他兼容的微博客服务的个人信息URL" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "未预料的表单提交。" - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "未预料的密码重置。" - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "未知动作" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "此OMB协议版本无效。" - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "除非另外说明,此站点的内容由贡献者版权所有,授权方式为" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "不可识别的地址类型 %s" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "退订" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "不支持此OMB版本" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "不支持这种图像格式。" - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "使用SMS短信更新" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "使用即时通讯工具(IM)更新" +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "必须提供两个用户帐号或昵称。" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "%2$s 上 %1$s 和好友的更新!" +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "无法获取收藏的通告。" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "找不到任何信息。" -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "上传" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "无法创建组。" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"在这里上传新的头像。上传后无法修改,请尽量使用正方形图片。图片必须使用与站点" -"相同的授权。请使用您希望分享的属于您的图片。" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "无法创建收藏。" -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "上传个人信息头像" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "无法删除订阅。" -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "使用这个表单来邀请好友和同事加入。" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "昵称只能使用小写字母和数字,不包含空格。" -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" -msgstr "只用于更新、通告或密码恢复" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "昵称已被使用,换一个吧。" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "要查看的用户不存在。" +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "不是有效的昵称。" -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." -msgstr "用户没有个人信息。" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "主页的URL不正确。" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "昵称" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "全名过长(不能超过 255 个字符)。" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "未找到用户。" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "描述过长(不能超过140字符)。" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "您一般处于哪个时区?" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "位置过长(不能超过255个字符)。" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "What's up, %s?" -msgstr "怎么样,%s?" +msgid "Too many aliases! Maximum %d." +msgstr "" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "你的位置,格式类似\"城市,省份,国家\"" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "主页'%s'不正确" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "'%s' 图像格式错误" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "昵称已被使用,换一个吧。" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "图像大小 '%s' 错误" +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "是" +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "您已经是该组成员" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "已登记此OpenID!" +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "您选择了永久删除通告。这样做是无法恢复的。" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "无法把 %s 用户添加到 %s 组" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "已登录!" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "您未告知此个人信息" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "您已订阅这些用户:" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "无法订阅用户:未找到。" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "您与此用户并非好友。" +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" +msgstr "%s 群组" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "在这里修改密码。选择一个好密码!" +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "组动作" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "请创建新帐号,开始发布通告。" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s 群组" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "您可以通过 %%site.name%% 的电子邮件接收SMS短信。" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s 组是成员组成了" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "您可以点击\"移除\"按钮,移除帐号的 OpenID。" +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "此方法接受POST或DELETE请求。" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"您可以通过Jabber/GTalk [即时通讯工具](%%doc.im%%)发送和接受通告。在这里配置它" -"们。" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "您不能删除其他用户的状态。" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "在这里更新个人信息,让大家对您了解得更多。" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "头像已更新。" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "您可以在这里订阅!" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "没有找到此ID的信息。" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." -msgstr "您必须同意此授权方可注册。" +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "超出长度限制。不能超过 140 个字符。" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "您未告知此个人信息" +#: actions/apistatusesupdate.php:193 +msgid "Not found" +msgstr "未找到" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -"您的 %1$s 发布用地址已更新。\n" -"\n" -"发送邮件到 %2$s 来发布新消息。\n" -"\n" -"更多电子邮件的帮助请见 %3$s。\n" -"\n" -"为您效力的 %4$s" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "您不能删除其他用户的状态。" +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "不支持这种图像格式。" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 +#: actions/apitimelinefavorites.php:107 #, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "您必须登录才能邀请其他人使用 %s" +msgid "%s / Favorites from %s" +msgstr "%s 的收藏 / %s" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "如果其他人接受邀请并注册,您将得到通知。谢谢您推动了社区发展壮大!" +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "%s 收藏了 %s 的 %s 通告。" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "您已得到确认。请输入新密码。" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "%s 时间表" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "您的OpenID URL" +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "您在此服务器的昵称,或注册邮箱。" +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / 回复 %2$s 的消息" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/apitimelinementions.php:126 #, 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%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" -"关联的 OpenID。" - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "几秒前" +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "回复 %2$s / %3$s 的 %1$s 更新。" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 #, php-format -msgid "about %d days ago" -msgstr "%d 天前" +msgid "%s public timeline" +msgstr "%s 公众时间表" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 #, php-format -msgid "about %d hours ago" -msgstr "%d 小时前" +msgid "%s updates from everyone!" +msgstr "来自所有人的 %s 消息!" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 +#: actions/apitimelinetag.php:101 actions/tag.php:66 #, php-format -msgid "about %d minutes ago" -msgstr "%d 分钟前" +msgid "Notices tagged with %s" +msgstr "带 %s 标签的通告" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "%d 个月前" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "一天前" +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "未找到" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" -msgstr "一分钟前" +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "没有这份文档。" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "一个月前" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "没有昵称。" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" -msgstr "一年前" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "没有大小。" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "一小时前" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "大小不正确。" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "删除" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "头像" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "先前……" +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "您可以在这里上传个人头像。" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "回复" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" +msgstr "找不到匹配的用户。" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "相同的密码" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "头像设置" + +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "原来的" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "不支持这种类型的文件" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "预览" -#: ../lib/util.php:1309 lib/util.php:1443 +#: actions/avatarsettings.php:148 lib/noticelist.php:522 #, fuzzy -msgid "« After" -msgstr "« 之后" +msgid "Delete" +msgstr "删除" + +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" +msgstr "上传" -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" +msgstr "剪裁" + +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/othersettings.php:145 actions/passwordsettings.php:137 #: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "会话标识有问题,请重试。" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "此通告未被收藏!" +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "未预料的表单提交。" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "无法删除收藏。" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" +msgstr "请选择一块方形区域作为你的头像" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "收藏" +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "文件数据丢失" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "如果有人收藏我的通告,发邮件通知我。" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "头像已更新。" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "如果收到私人信息,发邮件通知我。" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "更新头像失败。" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "已收藏此通告!" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "头像已更新。" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "无法创建收藏。" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "没有昵称。" -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "取消收藏" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "没有这个组" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "%s 收藏的通告" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "用户没有个人信息。" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "%s 的收藏的聚合" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s 及好友" -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "%s 的收件箱 - 第 %d 页" +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "该组成员列表。" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "%s 的收件箱" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "取消阻止用户失败。" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "这是您的收件箱,包含发给您的私人消息。" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" +msgstr "取消阻止" -#: actions/invite.php:178 actions/invite.php:213 -#, php-format +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "取消阻止次用户" + +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "未登录。" + +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +#, fuzzy +msgid "No profile specified." +msgstr "没有收件人。" + +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +#, fuzzy +msgid "No profile with that ID." +msgstr "没有找到此ID的信息。" + +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "阻止用户" + +#: actions/block.php:136 msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -"%1$s 邀请您加入 %2$s (%3$s)。\n" -"\n" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "保持登录状态;" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" +msgstr "否" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "由于安全原因,请重新输入" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "该组成员列表。" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "输入用户名和密码以登录。" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" +msgstr "是" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "超出长度限制。不能超过 140 个字符。" +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "该组成员列表。" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "没有收件人。" +#: actions/block.php:165 +msgid "You have already blocked this user." +msgstr "您已成功阻止该用户:" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "无法向此用户发送消息。" +#: actions/block.php:170 +msgid "Failed to save block information." +msgstr "保存阻止信息失败。" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "不要向自己发送消息;跟自己悄悄说就得了。" +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "相片" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "未找到用户" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "没有验证码" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "新消息" +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "未找到确认码。" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "找不到匹配的通告" +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "此确认码不适用!" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/confirmaddress.php:90 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%)允许您登录许多不同的站点" +msgid "Unrecognized address type %s" +msgstr "不可识别的地址类型 %s" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "如果您希望添加OpenID," +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "此地址已被确认。" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "移除仅有的OpenID可能使您无法登陆!" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "无法更新用户。" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "您可以移除一个OpenID" +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "无法删除电子邮件确认。" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "%s 的发件箱 - 第 %d 页" +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "确认地址" -#: actions/outbox.php:30 actions/outbox.php:61 +#: actions/confirmaddress.php:159 #, php-format -msgid "Outbox for %s" -msgstr "%s 的发件箱" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "这是您的发件箱,包含您发送的私人消息。" +msgid "The address \"%s\" has been confirmed for your account." +msgstr "地址 \"%s\" 已确认。" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "确认码" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "您可以在这里更新个人信息。" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" +msgstr "通告" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "找不到匹配的用户。" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "没有这份通告。" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "验证码超时。" +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "无法删除通告。" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "如果您忘记或丢失了您的" +#: actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "您选择了永久删除通告。这样做是无法恢复的。" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "您已得到确认。输入" +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "删除通告" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "您在服务器上的昵称," +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "确定要删除这条消息吗?" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "恢复密码的步骤" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "无法删除通告。" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "新密码已保存。" +#: actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy +msgid "Delete this notice" +msgstr "删除通告" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." -msgstr "密码必须包含 6 个或更多字符。" +#: actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "会话标识有问题,请重试。" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "祝贺你,%s!欢迎来到 %%%%site.name%%%%。在这里,您可以……" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "此通告未被收藏!" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "(您将立即收到一封电子邮件,含有" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "加入收藏" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "要订阅,请先[登录](%%action.login%%)," +#: actions/doc.php:69 +msgid "No such document." +msgstr "没有这份文档。" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 +#: actions/editgroup.php:56 #, php-format -msgid "Feed for favorites of %s" -msgstr "%s 的收藏的聚合" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "无法获取收藏的通告。" +msgid "Edit %s group" +msgstr "编辑 %s 组" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "未找到此消息。" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "您必须登录才能创建小组。" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "只有发送和接受双方可以阅读此消息。" +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "只有admin才能编辑这个组" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "发送给 %1$s 的 %2$s 消息" +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "使用这个表单来编辑组" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "来自 %1$s 的 %2$s 消息" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "描述过长(不能超过140字符)。" -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "发送消息" +#: actions/editgroup.php:253 +msgid "Could not update group." +msgstr "无法更新组" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "手机的运营商。" +#: actions/editgroup.php:269 +msgid "Options saved." +msgstr "选项已保存。" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "发给 %s 的直接消息" +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "电子邮件设置" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 +#: actions/emailsettings.php:71 #, php-format -msgid "All the direct messages sent to %s" -msgstr "发给 %s 的直接消息" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "您已发送的直接消息" +msgid "Manage how you get email from %%site.name%%." +msgstr "设置 %%site.name%% 发送的邮件。" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "%s 发送的直接消息" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "地址" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "消息没有正文!" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "已确认的电子邮件。" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "未找到收件人。" +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "移除" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "无法向并非好友的用户发送直接消息。" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"等待确认此地址。请查看您的收件箱(和垃圾箱)是否收到了邮件,其中包含了进一步的" +"指示。" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "%s 的收藏 / %s" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "取消" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "%s 收藏了 %s 的 %s 通告。" +#: actions/emailsettings.php:121 +msgid "Email Address" +msgstr "电子邮件地址" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "%s 收藏了您的通告" +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "电子邮件,类似 \"UserName@example.org\"" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s 收藏了您的 %2$s 通告。\n" -"\n" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "添加" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "发布用的电子邮件" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "Twitter 设置" +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "向这个电子邮件发信以发布新的通告。" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "Twitter 帐号" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "已验证的 Twitter 帐号。" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "Twitter 用户名" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "请不要包含空格。" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "Twitter 密码" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "自动将我的通告转发到 Twitter。" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "将这里的 \"@\" 回复发送到 Twitter。" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "在这里订阅 Twitter 好友。" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "用户名只能包含数字,大写和小写字母和下划线。不能超过 15 个字符。" +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "生成新的电子邮件地址用于发布信息;取消旧的。" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "不能验证 Twitter 帐号!" +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "新建" -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "首选项" -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "无法保存 Twitter 设置!" +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "如果有新订阅,通过电子邮件告诉我。" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "Twitter 设置已保存。" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "此 Twitter 帐号属于他人。" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "无法移除 Twitter 用户。" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "Twitter 帐号已移除。" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "无法保存 Twitter 首选项。" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "Twitter 首选项已保存。" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "请检查详细信息" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "订阅已确认,但是" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "订阅已拒绝,但是" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "执行结果" +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "如果有人收藏我的通告,发邮件通知我。" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "执行完毕" +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "如果收到私人信息,发邮件通知我。" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "执行失败" +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "如果收到私人信息,发邮件通知我。" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "对不起,这个命令还没有实现。" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "允许朋友们呼叫并给我发送邮件。" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "订阅:%1$s\n" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "我希望通过邮件发布信息。" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "用户没有通告。" +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "公开电子邮件的 MicroID。" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "通告被标记为收藏。" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "保存" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "首选项已保存。" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "全名:%s" +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "没有电子邮件地址。" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "位置:%s" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "无法识别此电子邮件" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "主页:%s" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "不是有效的电子邮件" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "关于:%s" +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "您已登记此电子邮件。" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "此电子邮件属于其他用户。" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "已向 %s 发送消息" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "无法插入验证码。" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "发送消息出错。" +#: actions/emailsettings.php:358 +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 "" +"验证码已被发送到您新增的电子邮件。请检查收件箱(和垃圾箱),找到验证码并按要求" +"使用它。" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "指定要订阅的用户名" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "没有可以取消的确认。" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "订阅 %s" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "即时通讯帐号错误。" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "指定要取消订阅的用户名" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "已取消确认。" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "取消订阅 %s" +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "这是他人的电子邮件。" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "命令尚未实现。" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "地址被移除。" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "通告关闭。" +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "没有发布用的电子邮件地址。" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "无法关闭通告。" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "无法更新用户记录。" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "通告开启。" +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "发布用的电子邮件被移除。" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "无法开启通告。" +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "已添加新的发布用的电子邮件地址。" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "命令:\n" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "没有这份通告。" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "无法添加信息。" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "没有这份通告。" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "无法添加新URI的信息。" +#: actions/favorited.php:79 +#, fuzzy +msgid "The most popular notices on the site right now." +msgstr "显示上周以来最流行的标签" -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "系统中没有相应用户的信息。" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" -#: lib/mail.php:147 lib/mail.php:289 -#, php-format +#: actions/favorited.php:153 msgid "" -"You have a new posting address on %1$s.\n" -"\n" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." msgstr "" -"您的新的发布用的地址是 %1$s。\n" -"\n" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "%s 发送了新的私人信息" -#: lib/mail.php:253 lib/mail.php:512 +#: actions/favorited.php:156 #, php-format msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -"%1$s (%2$s) 发送了新的私人信息:\n" -"\n" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "只有用户自己可以访问邮箱。" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "此表单会自动提交。" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "收藏夹" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 #, php-format msgid "%s's favorite notices" msgstr "%s 收藏的通告" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "用户" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "收件箱" +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "已收藏此通告!" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "您接收的消息" +#: actions/favor.php:92 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor favorite" +msgstr "取消收藏" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "发件箱" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "推荐用户" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "您发送的消息" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "推荐用户,第 %d 页" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "Twitter" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "%s 优秀用户摘选" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "Twitter 整合选项" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新通告" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "到" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新通告" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "无法解析消息。" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s 及好友" +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "您可以在这里上传个人头像。" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "未预料的响应!" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "头像设置" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "要查看的用户不存在。" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "原来的" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "您可以在这里订阅!" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "预览" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "那个用户阻止了你的订阅。" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "剪裁" +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "未认证。" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -#, fuzzy -msgid "There was a problem with your session token. " -msgstr "会话标识有问题,请重试。" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "无法将请求标记转换为访问令牌。" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" -msgstr "请选择一块方形区域作为你的头像" +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "此OMB协议版本无效。" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." -msgstr "文件数据丢失" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "更新远程的个人信息时出错" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "没有这个组。" + +#: actions/getfile.php:75 #, fuzzy -msgid "Lost our file." +msgid "No such file." msgstr "没有这份通告。" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "未知文件类型" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "没有这份通告。" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 #, fuzzy -msgid "No profile specified." +msgid "No group specified." msgstr "没有收件人。" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -#, fuzzy -msgid "No profile with that ID." -msgstr "没有找到此ID的信息。" +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" -#: actions/block.php:111 actions/block.php:134 +#: actions/groupblock.php:95 #, fuzzy -msgid "Block user" -msgstr "阻止用户" +msgid "User is already blocked from group." +msgstr "用户没有个人信息。" -#: actions/block.php:129 +#: actions/groupblock.php:100 #, fuzzy -msgid "Are you sure you want to block this user? " -msgstr "确定要阻止该用户吗?" - -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "您已成功阻止该用户:" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "保存阻止信息失败。" - -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "该地址 \"%s\" 已被" +msgid "User is not a member of group." +msgstr "您未告知此个人信息" -#: actions/deletenotice.php:73 +#: actions/groupblock.php:136 actions/groupmembers.php:314 #, fuzzy -msgid "You are about to permanently delete a notice. " -msgstr "您将要永久删除这条通告。" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "加入收藏" +msgid "Block user from group" +msgstr "阻止用户" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/groupblock.php:155 #, php-format -msgid "Edit %s group" -msgstr "编辑 %s 组" +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -#, fuzzy -msgid "Inboxes must be enabled for groups to work" -msgstr "使用组功能前必须使能邮箱" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "您必须登录才能创建小组。" +#: actions/groupbyid.php:74 +msgid "No ID" +msgstr "没有ID" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +#: actions/groupdesignsettings.php:68 #, fuzzy -msgid "No nickname" -msgstr "没有昵称。" - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "没有这个组" - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "只有admin才能编辑这个组" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "使用这个表单来编辑组" +msgid "You must be logged in to edit a group." +msgstr "您必须登录才能创建小组。" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +#: actions/groupdesignsettings.php:141 #, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "昵称只能使用小写字母" - -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -msgid "description is too long (max 140 chars)." -msgstr "描述过长(不能超过140字符)。" - -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "无法更新组" +msgid "Group design" +msgstr "组" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "选项已保存。" +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format -msgid "Awaiting confirmation on this address. " -msgstr "正在等待这个地址的确认。" +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "无法更新用户。" -#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #, fuzzy -msgid "Make a new email address for posting to; " -msgstr "新的电子邮件地址,用于发布 %s 信息" +msgid "Unable to save your design settings!" +msgstr "无法保存 Twitter 设置!" -#: actions/emailsettings.php:157 +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 #, fuzzy -msgid "Send me email when someone " -msgstr "如果收到私人信息,发邮件通知我。" +msgid "Design preferences saved." +msgstr "同步选项已保存。" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "允许朋友们呼叫并给我发送邮件。" +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "组logo" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "此电子邮件属于其他用户。" +#: actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "你可以给你的组上载一个logo图。" -#: actions/emailsettings.php:343 +#: actions/grouplogo.php:362 #, fuzzy -msgid "A confirmation code was sent to the email address you added. " -msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" +msgid "Pick a square area of the image to be the logo." +msgstr "请选择一块方形区域作为你的头像" + +#: actions/grouplogo.php:396 +msgid "Logo updated." +msgstr "logo已更新。" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "服务器报错 -- 无法找到该用户。" +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "更新logo失败。" -#: actions/facebookhome.php:196 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format -msgid "If you would like the %s app to automatically update " -msgstr "如果你想使用 %s 程序自动更新" +msgid "%s group members" +msgstr "%s 组成员" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/groupmembers.php:96 #, php-format -msgid "Allow %s to update my Facebook status" -msgstr "允许 %s 更新我Facebook 的状态" +msgid "%s group members, page %d" +msgstr "%s 组成员, 第 %d 页" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "跳过" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "该组成员列表。" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "没有内容!" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "admin管理员" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "分页" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" +msgstr "阻止" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 #, fuzzy -msgid "After" -msgstr "« 之后" +msgid "Block this user" +msgstr "阻止该用户" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 +#: actions/groupmembers.php:441 #, fuzzy -msgid "Before" -msgstr "之前 »" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "感谢您邀请朋友使用 %s" +msgid "Make user an admin of the group" +msgstr "只有admin才能编辑这个组" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +#: actions/groupmembers.php:473 #, fuzzy -msgid "Invitations have been sent to the following users:" -msgstr "已发送邀请给这些人:" +msgid "Make Admin" +msgstr "admin管理员" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 +#: actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/grouprss.php:133 #, fuzzy, php-format -msgid "You have been invited to %s" -msgstr "您已被邀请到 %s" +msgid "Updates from members of %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 +#: actions/groupsearch.php:52 #, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "%s 好友的聚合" +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%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包" +"含 3 个字符,多个搜索条件用空格分隔。" + +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "组检索" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "没有结果" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 +#: actions/groupsearch.php:82 #, php-format -msgid "Friends already using %s:" -msgstr "已经正在使用 %s 的朋友:" +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 +#: actions/groupsearch.php:85 #, php-format -msgid "Send invitations" -msgstr "发出邀请" +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" -#: actions/facebookremove.php:56 -#, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "无法移除 facebook用户。" +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "组" -#: actions/facebooksettings.php:65 +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "组,第 %d 页" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 #, fuzzy -msgid "There was a problem saving your sync preferences!" -msgstr "会话标识有问题,请重试。" +msgid "Create a new group" +msgstr "创建新组" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "同步选项已保存。" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" -#: actions/facebooksettings.php:90 +#: actions/groupunblock.php:95 #, fuzzy -msgid "Automatically update my Facebook status with my notices." -msgstr "自动将我的通告转发到 Twitter。" +msgid "User is not blocked from group." +msgstr "用户没有个人信息。" -#: actions/facebooksettings.php:97 +#: actions/groupunblock.php:128 actions/unblock.php:108 #, fuzzy -msgid "Send \"@\" replies to Facebook." -msgstr "将这里的 \"@\" 回复发送到 Twitter。" +msgid "Error removing the block." +msgstr "保存用户时出错。" + +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "IM 设置" + +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"您可以通过Jabber/GTalk [即时通讯工具](%%doc.im%%)发送和接受通告。在这里配置它" +"们。" -#: actions/facebooksettings.php:106 +#: actions/imsettings.php:89 #, fuzzy -msgid "Prefix" -msgstr "个人信息" +msgid "IM is not available." +msgstr "这个页面不提供您想要的媒体类型" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "消息以一字符串为前缀。" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "已确认的Jabber/GTalk帐号。" -#: actions/facebooksettings.php:124 +#: actions/imsettings.php:114 #, php-format -msgid "If you would like %s to automatically update " -msgstr "如果你希望 %s 自动更新。" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。" +"(你是否已经添加 %s为你的好友?)" -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "同步设置" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "IM 帐号" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -#, fuzzy -msgid "Disfavor favorite" -msgstr "取消收藏" +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber 或 GTalk 帐号,类似\"UserName@example.org\"。首先,必须在即时聊天工具" +"或GTalk中将 %s 加为好友。" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -#, fuzzy -msgid "Popular notices" -msgstr "没有这份通告。" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "通过Jabber/GTalk发送通告。" -#: actions/favorited.php:67 -#, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "没有这份通告。" +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" -#: actions/favorited.php:79 -#, fuzzy -msgid "The most popular notices on the site right now." -msgstr "显示上周以来最流行的标签" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "如果我尚未订阅的用户回我消息,使用Jabber/GTalk通知我。" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "推荐用户" +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "公开Jabber/GTalk帐号的 MicroID。" -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "推荐用户,第 %d 页" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "没有 Jabber ID。" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "%s 优秀用户摘选" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "无法识别此Jabber ID" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "那个用户阻止了你的订阅。" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "不是有效的 Jabber ID" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "没有ID" +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "您已登记此Jabber帐号。" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "组logo" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Jabber ID 属于另一用户。" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "你可以给你的组上载一个logo图。" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -msgid "Logo updated." -msgstr "logo已更新。" +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "这不是您的Jabber帐号。" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "更新logo失败。" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "%s 的收件箱 - 第 %d 页" -#: actions/groupmembers.php:93 lib/groupnav.php:91 +#: actions/inbox.php:62 #, php-format -msgid "%s group members" -msgstr "%s 组成员" +msgid "Inbox for %s" +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." +msgstr "" + +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "您必须登录才能邀请其他人使用 %s" -#: actions/groupmembers.php:96 +#: actions/invite.php:72 #, php-format -msgid "%s group members, page %d" -msgstr "%s 组成员, 第 %d 页" +msgid "Invalid email address: %s" +msgstr "电子邮件地址 %s 不正确" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "该组成员列表。" +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "已发送邀请" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "组" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "邀请新用户" -#: actions/groups.php:64 +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "您已订阅这些用户:" + +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Groups, page %d" -msgstr "组,第 %d 页" +msgid "%s (%s)" +msgstr "%s (%s)" -#: actions/groups.php:90 -#, fuzzy, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%% 组你可以查找并联络" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "这些好友已注册,您已自动订阅这些用户。" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "创建新组" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "已发送邀请给这些人:" -#: actions/groupsearch.php:57 -#, fuzzy, php-format +#: actions/invite.php:150 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "如果其他人接受邀请并注册,您将得到通知。谢谢您推动了社区发展壮大!" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "组检索" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "使用这个表单来邀请好友和同事加入。" -#: actions/imsettings.php:70 -#, fuzzy -msgid "You can send and receive notices through " -msgstr "收发可以通过" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "电子邮件地址" -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "Jabber 或者 GTalk 地址, " +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "要邀请的好友地址(每行一个)" -#: actions/imsettings.php:147 -#, fuzzy -msgid "Send me replies through Jabber/GTalk " -msgstr "通过Jabber/GTalk发送通告。" +#: actions/invite.php:192 +msgid "Personal message" +msgstr "个人消息" + +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "在邀请中加几句话(可选)。" + +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" +msgstr "发送" + +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s 邀请您加入 %2$s" -#: actions/imsettings.php:321 +#: actions/invite.php:228 #, php-format -msgid "A confirmation code was sent " -msgstr "确认消息已经发送" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s 邀请你加入 %2$s (%3$s).\n" +"\n" +"%2$s 是一个能让你和你认识的、感兴趣的人保持联系的微博客服务。 \n" +"你可以和你认识的人分享你的近况、想法或者你的网络生活。你也可以结交有共同兴趣" +"的新朋友。\n" +"\n" +"%1$s 说:\n" +"\n" +"%4$s\n" +"\n" +"你可以在这里查阅 %1$s's 的资料 %2$s :\n" +"\n" +"%5$s\n" +"\n" +"如果你想使用这个服务,请点击一下链接接受邀请。\n" +"%6$s\n" +"\n" +"如果你不愿意,请跳过这条信息。感谢您的耐心和时间。\n" +"\n" +"诚挚的感谢, %2$s\n" -#: actions/joingroup.php:65 actions/joingroup.php:60 +#: actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "您必须登录才能加入组。" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#: actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "您已经是该组成员" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#: actions/joingroup.php:128 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "无法把 %s 用户添加到 %s 组" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#: actions/joingroup.php:135 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s 加入 %s 组" #: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "邮箱必须使能组才能工作。" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "您必须登录才能邀请其他人使用 %s" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "没有这个组。" - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#: actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "您未告知此个人信息" -#: actions/leavegroup.php:100 -#, fuzzy -msgid "You may not leave a group while you are its administrator." -msgstr "您不能删除其他用户的状态。" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "无法更新用户记录。" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "无法订阅用户:未找到。" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s 离开群 %s" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "已登录。" + +#: actions/login.php:110 actions/login.php:120 +#, fuzzy +msgid "Invalid or expired token." +msgstr "通告内容不正确" + +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "用户名或密码不正确。" + +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "保存用户设置时出错。" + +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "登录" + +#: actions/login.php:243 msgid "Login to site" msgstr "登录" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "昵称" + +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "密码" + +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" +msgstr "记住登录状态" + +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "保持这台机器上的登录状态。不要在共用的机器上保持登录!" + +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "忘记了密码?" + +#: actions/login.php:282 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "由于安全原因,修改设置前需要输入用户名和密码。" + +#: actions/login.php:286 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " +"或使用 [OpenID](%%action.openidlogin%%). " + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/microsummary.php:69 msgid "No current status" msgstr "没有当前状态" @@ -4547,41 +1729,95 @@ msgstr "没有当前状态" msgid "New group" msgstr "新组" -#: actions/newgroup.php:115 actions/newgroup.php:110 +#: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "使用此表格创建组。" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "无法创建组。" +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "新消息" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "无法删除订阅。" +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "无法向此用户发送消息。" -#: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy -msgid "That's too long. " -msgstr "文件超出大小限制。" +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "没有内容!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "没有收件人。" + +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "不要向自己发送消息;跟自己悄悄说就得了。" -#: actions/newmessage.php:134 +#: actions/newmessage.php:181 #, fuzzy -msgid "Don't send a message to yourself; " -msgstr "无法向此用户发送消息。" +msgid "Message sent" +msgstr "新消息" + +#: actions/newmessage.php:185 lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "已向 %s 发送消息" + +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Ajax错误" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "新通告" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 +#: actions/newnotice.php:199 msgid "Notice posted" msgstr "消息已发布。" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "Ajax错误" +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"在 %%site.name%% 的通告内容中搜索。搜索条件至少包含 3 个字符,多个搜索条件用" +"空格分隔。" + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "搜索文本" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "搜索有关\"%s\"的消息" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%2$s 上 %1$s 的更新!" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "所有匹配搜索条件\"%s\"的消息" #: actions/nudge.php:85 msgid "" @@ -4596,15 +1832,36 @@ msgstr "振铃呼叫发出。" msgid "Nudge sent!" msgstr "振铃呼叫已经发出!" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy -msgid "OpenID login" -msgstr "OpenID 登录" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "通告没有关联个人信息" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s 的 %2$s 状态" -#: actions/openidsettings.php:128 +#: actions/oembed.php:157 #, fuzzy -msgid "Removing your only OpenID " -msgstr "移除OpenID" +msgid "content type " +msgstr "连接" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "不支持的数据格式。" + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "搜索用户" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "搜索通告" #: actions/othersettings.php:60 #, fuzzy @@ -4615,2444 +1872,2387 @@ msgstr "Twitter 设置" msgid "Manage various other options." msgstr "管理其他选项。" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "URL自动缩短" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "服务" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "要使用的自动缩短服务。" -#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "个人设置" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + #: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "URL缩短服务超长(最多50个字符)。" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "%s 的发件箱 - 第 %d 页" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "%s 的发件箱" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "这是您的发件箱,包含您发送的私人消息。" + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "修改密码" + #: actions/passwordsettings.php:69 #, fuzzy msgid "Change your password." msgstr "修改密码" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "密码已保存。" -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format -msgid "Not a valid people tag: %s" -msgstr "不是有效的电子邮件" +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "旧密码" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "用户自加标签 %s - 第 %d 页" +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "新密码" -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "这些是自我标识为 \"%s\" 的用户" +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6 个或更多字符" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy -msgid "Profile information" -msgstr "未知的帐号" +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "确认" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "相同的密码" -#: actions/profilesettings.php:144 -#, fuzzy -msgid "Automatically subscribe to whoever " -msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "修改" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "主页'%s'不正确" +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "密码必须包含 6 个或更多字符。" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -#, fuzzy -msgid "Couldn't save tags." -msgstr "无法保存个人信息。" +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "密码不匹配。" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, fuzzy, php-format -msgid "Public timeline, page %d" -msgstr "公开的时间表" +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "旧密码不正确" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -#, fuzzy -msgid "Could not retrieve public stream." -msgstr "无法获取收藏的通告。" +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "保存用户时出错;不正确。" + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "无法保存新密码。" + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "密码已保存。" -#: actions/public.php:220 +#: actions/peoplesearch.php:52 #, php-format msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) 服务" +"在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包" +"含 3 个字符,多个搜索条件用空格分隔。" -#: actions/publictagcloud.php:57 -#, fuzzy -msgid "Public tag cloud" -msgstr "公开的聚合" +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "搜索用户" -#: actions/publictagcloud.php:63 +#: actions/peopletag.php:70 +#, fuzzy, php-format +msgid "Not a valid people tag: %s" +msgstr "不是有效的电子邮件" + +#: actions/peopletag.php:144 #, php-format -msgid "These are most popular recent tags on %s " -msgstr "这些是最近的 %s 流行标签 " +msgid "Users self-tagged with %s - page %d" +msgstr "用户自加标签 %s - 第 %d 页" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "标签云聚集" +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "通告内容不正确" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." -msgstr "对不起,请邀请那些能注册的人。" +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" -#: actions/register.php:149 -#, fuzzy -msgid "You can't register if you don't " -msgstr "您必须同意此授权方可注册。" +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "个人设置" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "使用这个表格你可以创建" +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "在这里更新个人信息,让大家对您了解得更多。" -#: actions/register.php:368 +#: actions/profilesettings.php:99 #, fuzzy -msgid "1-64 lowercase letters or numbers, " +msgid "Profile information" +msgstr "未知的帐号" + +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 到 64 个小写字母或数字,不包含标点及空白" -#: actions/register.php:382 actions/register.php:386 -#, fuzzy -msgid "Used only for updates, announcements, " -msgstr "只用于更新、通告或密码恢复" +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "全名" -#: actions/register.php:398 -#, fuzzy -msgid "URL of your homepage, blog, " +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "主页" + +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "您的主页、博客或在其他站点的URL" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " +#: actions/profilesettings.php:122 actions/register.php:460 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" msgstr "用不超过140个字符描述您自己和您的爱好" -#: actions/register.php:410 +#: actions/profilesettings.php:125 actions/register.php:463 #, fuzzy -msgid "Where you are, like \"City, " +msgid "Describe yourself and your interests" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "自述" + +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "位置" + +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "你的位置,格式类似\"城市,省份,国家\"" -#: actions/register.php:432 -#, fuzzy -msgid " except this private data: password, " -msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "标签" -#: actions/register.php:471 -#, fuzzy, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "祝贺你,%s!欢迎来到 %%%%site.name%%%%。在这里,您可以……" +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" -#: actions/register.php:495 -#, fuzzy -msgid "(You should receive a message by email " -msgstr "(您将立即收到一封电子邮件,含有" +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "语言" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "那是一个本地资料!需要登录才能订阅。" +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "首选语言" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "时区" + +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "您一般处于哪个时区?" + +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" + +#: actions/profilesettings.php:221 actions/register.php:223 #, fuzzy, php-format -msgid "Replies to %s, page %d" -msgstr "%s 的回复,第 % 页" +msgid "Bio is too long (max %d chars)." +msgstr "自述过长(不能超过140字符)。" -#: actions/showfavorites.php:79 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "未选择时区。" + +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "语言过长(不能超过50个字符)。" + +#: actions/profilesettings.php:246 actions/tagother.php:178 #, fuzzy, php-format -msgid "%s favorite notices, page %d" -msgstr "%s 收藏的通告" +msgid "Invalid tag: \"%s\"" +msgstr "主页'%s'不正确" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "%s 组" +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "无法更新用户的自动订阅选项。" + +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "无法保存个人信息。" + +#: actions/profilesettings.php:336 +#, fuzzy +msgid "Couldn't save tags." +msgstr "无法保存个人信息。" + +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "设置已保存。" -#: actions/showgroup.php:79 actions/showgroup.php:84 +#: actions/public.php:83 #, php-format -msgid "%s group, page %d" -msgstr "%s 组, 第 %d 页" +msgid "Beyond the page limit (%s)" +msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 +#: actions/public.php:92 #, fuzzy -msgid "Group profile" -msgstr "组资料" +msgid "Could not retrieve public stream." +msgstr "无法获取收藏的通告。" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "URL 互联网地址" +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "公开的时间表" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -#, fuzzy -msgid "Note" -msgstr "通告" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "公开的时间表" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "组动作" +#: actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "公开的聚合" -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format -msgid "Notice feed for %s group" -msgstr "%s 的通告聚合" +#: actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "公开的聚合" -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 +#: actions/public.php:159 #, fuzzy -msgid "Members" -msgstr "注册于" +msgid "Public Stream Feed (Atom)" +msgstr "公开的聚合" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "(没有)" +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "所有成员" +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" -#: actions/showgroup.php:378 +#: actions/public.php:186 #, php-format msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showmessage.php:98 -#, fuzzy -msgid "Only the sender and recipient " -msgstr "只有发送和接受双方可以阅读此消息。" +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: actions/public.php:238 #, fuzzy, php-format -msgid "%s, page %d" -msgstr "%s 的收件箱 - 第 %d 页" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) 服务" -#: actions/showstream.php:143 +#: actions/publictagcloud.php:57 #, fuzzy -msgid "'s profile" -msgstr "个人信息" +msgid "Public tag cloud" +msgstr "公开的聚合" -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "用户没有个人信息。" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "这些是最近的 %s 流行标签 " -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" -msgstr "相片" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -#, fuzzy -msgid "User actions" -msgstr "未知动作" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -#, fuzzy -msgid "Send a direct message to this user" -msgstr "无法向此用户发送消息。" +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -#, fuzzy -msgid "Message" -msgstr "新消息" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "标签云聚集" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "订阅者" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "已登录!" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "所有组" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "没有这个恢复码。" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "不是恢复码。" -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "电话号码,不带标点或空格,包含地区代码" +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "恢复码未知" -#: actions/smssettings.php:162 -#, fuzzy -msgid "Send me notices through SMS; " -msgstr "通过Jabber/GTalk发送通告。" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "验证码出错。" -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "等待确认此电话号码。" +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "验证码超时,请重来。" -#: actions/smssettings.php:453 actions/smssettings.php:465 -#, fuzzy -msgid "Mobile carrier" -msgstr "选择运营商" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "无法更新已确认的电子邮件。" -#: actions/subedit.php:70 -#, fuzzy -msgid "You are not subscribed to that profile." -msgstr "您未告知此个人信息" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "无法删除订阅。" +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "没有这个用户。" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/subscribe.php:69 -#, fuzzy -msgid "Subscribed" -msgstr "订阅" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "订阅者" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "您在此服务器的昵称,或注册邮箱。" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "%s 订阅者, 第 %d 页" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "恢复" -#: actions/subscribers.php:63 -#, fuzzy -msgid "These are the people who listen to " -msgstr "这些用户订阅了 %s 的通告。" +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "重置密码" -#: actions/subscribers.php:67 -#, fuzzy, php-format -msgid "These are the people who " -msgstr "这些用户订阅了 %s 的通告。" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "恢复密码" -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "所有订阅" +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "请求恢复密码" -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "所有订阅" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "未知动作" -#: actions/subscriptions.php:65 -#, fuzzy -msgid "These are the people whose notices " -msgstr "这是 %s 订阅的用户。" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 个或更多字符,不能忘记!" -#: actions/subscriptions.php:69 -#, fuzzy, php-format -msgid "These are the people whose " -msgstr "这些用户订阅了 %s 的通告。" +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "相同的密码" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "没有 Jabber ID。" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "重置" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "带 %s 标签的通告" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "输入昵称或电子邮件。" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "有 \"%s\" 标签的消息,最近的排序在前" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "没有拥有这个用户名或电子邮件的用户。" -#: actions/tagother.php:33 -#, fuzzy -msgid "Not logged in" -msgstr "未登录。" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "用户没有注册电子邮件。" -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "没有这份文档。" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "保存地址确认时出错。" + +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "恢复密码的指示已被发送到您的注册邮箱。" -#: actions/tagother.php:65 -#, fuzzy, php-format -msgid "Tag %s" -msgstr "标签" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "未预料的密码重置。" -#: actions/tagother.php:141 -#, fuzzy -msgid "Tag user" -msgstr "标签" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "密码必须是 6 个字符或更多。" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "密码和确认不匹配。" -#: actions/tagother.php:164 -#, fuzzy -msgid "There was a problem with your session token." -msgstr "会话标识有问题,请重试。" +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "新密码已保存,您现在已登录。" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "你只能给你订阅的人或订阅你的人加标签。" +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." +msgstr "对不起,请邀请那些能注册的人。" -#: actions/tagother.php:198 actions/tagother.php:200 +#: actions/register.php:92 #, fuzzy -msgid "Could not save tags." -msgstr "无法保存头像" +msgid "Sorry, invalid invitation code." +msgstr "验证码出错。" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "使用这个表格给你的关注者或你的订阅加注标签。" +#: actions/register.php:112 +msgid "Registration successful" +msgstr "注册成功。" -#: actions/tagrss.php:35 -#, fuzzy -msgid "No such tag." -msgstr "未找到此消息。" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "注册" -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "带 %s 标签的通告" +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "不允许注册。" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "阻止用户失败。" +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "您必须同意此授权方可注册。" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "取消阻止用户失败。" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "不是有效的电子邮件。" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "未找到" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "电子邮件地址已存在。" -#: actions/twittersettings.php:71 -#, fuzzy -msgid "Add your Twitter account to automatically send " -msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "用户名或密码不正确。" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -#, fuzzy -msgid "Twitter user name" -msgstr "Twitter 用户名" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy -msgid "Twitter password" -msgstr "Twitter 密码" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "1 到 64 个小写字母或数字,不包含标点及空白。此项必填。" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -#, fuzzy -msgid "Twitter Friends" -msgstr "Twitter 设置" +#: actions/register.php:429 +msgid "6 or more characters. Required." +msgstr "6 个或更多字符。此项必填。" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "用户名只能有数字," +#: actions/register.php:433 +msgid "Same as password above. Required." +msgstr "相同的密码。此项必填。" -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "电子邮件" -#: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy -msgid "Error removing the block." -msgstr "保存用户时出错。" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "只用于更新、通告或密码恢复" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "服务器没有返回个人信息URL。" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "长名字,最好是“实名”" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -#, fuzzy -msgid "No profile with that id." -msgstr "没有找到此ID的信息。" +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "我的文字和文件采用的授权方式为" + +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" +msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +#: actions/register.php:496 #, fuzzy -msgid "Unsubscribed" -msgstr "退订" +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: actions/register.php:537 #, php-format -msgid "%s groups" -msgstr "%s 群组" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"恭喜, %s! 欢迎来到 %%%%site.name%%%%. 这里,你需要\n" +"\n" +"* 查看你的资料Go to [your profile](%s) 发布你的第一条消息.\n" +"* 填加 [Jabber/GTalk address](%%%%action.imsettings%%%%) 然后你可以通过即时消" +"息平台发布信息。\n" +"* [Search for people](%%%%action.peoplesearch%%%%) 你认识的或和你有共同兴趣的" +"朋友。 \n" +"* 更新你的 [profile settings](%%%%action.profilesettings%%%%) 告诉大家更多关" +"于你的情况。 \n" +"* 请阅读 [online docs](%%%%doc.help%%%%) 有的功能也许你还不熟悉。\n" +"\n" +"感谢您的注册,希望您喜欢这个服务。" + +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "(您将收到一封邮件,包含了如何确认邮件地址的说明。)" -#: actions/usergroups.php:65 actions/usergroups.php:64 +#: actions/remotesubscribe.php:98 #, php-format -msgid "%s groups, page %d" -msgstr "%s 群组, 第 %d 页" +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"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." -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "远程订阅" + +#: actions/remotesubscribe.php:124 #, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "保存通告时出错。" +msgid "Subscribe to a remote user" +msgstr "订阅 %s" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "昵称" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "在这个网站你被禁止发布消息。" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "希望订阅的用户的昵称" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "上载一个头像。" +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "个人信息URL" -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "其他" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "您在其他兼容的微博客服务的个人信息URL" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "其他选项" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" +msgstr "订阅" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format -msgid "%s - %s" -msgstr "%s (%s)" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "个人信息URL不正确(格式错误)" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "无标题页" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "不是有效的个人信息URL(没有YADIS数据)。" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "主站导航" +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "那是一个本地资料!需要登录才能订阅。" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "个人资料及朋友年表" +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "无法获得一份请求标记。" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "检索人或文字" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "%s 的回复" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Account" -msgstr "帐号" +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "%s 的回复,第 % 页" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy -msgid "Change your email, avatar, password, profile" -msgstr "修改资料" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s 的通告聚合" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "与IM,手机短信,Twitter的连接" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s 的通告聚合" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "登出本站" +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s 的通告聚合" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "登入本站" +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "创建新帐号" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "没有这个 OpenID。" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "帮助" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "发送给 %1$s 的 %2$s 消息" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "新通告" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s 收藏的通告" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "本地显示" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "无法获取收藏的通告。" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "新通告" +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s 好友的聚合" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy -msgid "Secondary site navigation" -msgstr "次项站导航" +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s 好友的聚合" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "StatusNet软件注册证" +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s 好友的聚合" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "全部" +#: actions/showfavorites.php:205 +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 "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "注册证" +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "阻止该用户" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "阻止" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -#, fuzzy -msgid "Disfavor this notice" -msgstr "%s 收藏的通告" +#: actions/showgroup.php:82 lib/groupnav.php:85 +#, php-format +msgid "%s group" +msgstr "%s 组" -#: lib/facebookaction.php:268 +#: actions/showgroup.php:84 #, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "你需要登录方能使用%sFacebook程序" +msgid "%s group, page %d" +msgstr "%s 组, 第 %d 页" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 +#: actions/showgroup.php:218 #, fuzzy -msgid " a new account." -msgstr "一个新帐号" +msgid "Group profile" +msgstr "组资料" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "已发布" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" +msgstr "URL 互联网地址" -#: lib/favorform.php:114 lib/favorform.php:140 +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 #, fuzzy -msgid "Favor this notice" -msgstr "%s 收藏的通告" +msgid "Note" +msgstr "通告" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "导出数据" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" -#: lib/galleryaction.php:121 -#, fuzzy -msgid "Filter tags" -msgstr "%s 标签的聚合" +#: actions/showgroup.php:293 +msgid "Group actions" +msgstr "组动作" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "全部" +#: actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s 的通告聚合" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -#, fuzzy -msgid "Tag" -msgstr "标签" +#: actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s 的通告聚合" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "选择标签缩小清单" +#: actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s 的通告聚合" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "执行" +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "%s 的发件箱" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 #, fuzzy -msgid "URL of the homepage or blog of the group or topic" -msgstr "您的主页、博客或在其他站点的URL" +msgid "Members" +msgstr "注册于" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "描述" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(没有)" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "用不超过140个字符描述您自己和您的爱好" +#: actions/showgroup.php:392 +msgid "All members" +msgstr "所有成员" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" +msgstr "统计" + +#: actions/showgroup.php:432 #, fuzzy +msgid "Created" +msgstr "创建" + +#: actions/showgroup.php:448 +#, php-format msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -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%%%%))" +msgstr "" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "组" +#: actions/showgroup.php:454 +#, fuzzy, 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** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: actions/showgroup.php:482 +#, fuzzy +msgid "Admins" msgstr "admin管理员" -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "编辑 %s群选项" +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "未找到此消息。" -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "Logo图标" +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "只有发送和接受双方可以阅读此消息。" -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/showmessage.php:108 #, php-format -msgid "Add or edit %s logo" -msgstr "添加或编辑 %s 图标" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "人气最旺的群" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "消息最多的群" +msgid "Message to %1$s on %2$s" +msgstr "发送给 %1$s 的 %2$s 消息" -#: lib/grouptagcloudsection.php:56 +#: actions/showmessage.php:113 #, php-format -msgid "Tags in %s group's notices" -msgstr "这个组所发布的消息的标签" - -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "这个页面不提供您想要的媒体类型" - -#: lib/joinform.php:114 -#, fuzzy -msgid "Join" -msgstr "加入" +msgid "Message from %1$s on %2$s" +msgstr "来自 %1$s 的 %2$s 消息" -#: lib/leaveform.php:114 +#: actions/shownotice.php:90 #, fuzzy -msgid "Leave" -msgstr "保存" +msgid "Notice deleted." +msgstr "消息已发布。" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "输入用户名和密码以登录。" +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "带 %s 标签的通告" -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "创建新帐号" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%s, page %d" +msgstr "%s 的收件箱 - 第 %d 页" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "使用openID登录或注册" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s 的通告聚合" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"你好,%s.\n" -"\n" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s 的通告聚合" -#: lib/mail.php:236 +#: actions/showstream.php:136 #, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "%1$s 开始关注您的 %2$s 信息。" +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s 的通告聚合" -#: lib/mail.php:254 lib/mail.php:253 +#: actions/showstream.php:143 #, fuzzy, php-format -msgid "Location: %s\n" -msgstr "位置:%s\n" +msgid "Notice feed for %s (Atom)" +msgstr "%s 的通告聚合" -#: lib/mail.php:256 lib/mail.php:255 +#: actions/showstream.php:148 #, fuzzy, php-format -msgid "Homepage: %s\n" -msgstr "主页:%s\n" +msgid "FOAF for %s" +msgstr "%s 的发件箱" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showstream.php:191 #, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:196 msgid "" -"Bio: %s\n" -"\n" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -"自传Bio: %s\n" -"\n" -#: lib/mail.php:461 lib/mail.php:462 +#: actions/showstream.php:198 #, php-format -msgid "You've been nudged by %s" -msgstr "%s 振铃呼叫你" +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/mail.php:465 -#, fuzzy, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) 发送了新的私人信息:" +#: actions/showstream.php:234 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" -#: lib/mail.php:555 +#: actions/showstream.php:239 #, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "%1$s 收藏了您的 %2$s 通告" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -#, fuzzy -msgid "From" -msgstr "从 " - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -#, fuzzy -msgid "Send a direct notice" -msgstr "删除通告" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "发送消息" +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "SMS短信设置" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 -#, fuzzy -msgid "Available characters" -msgstr "6 个或更多字符" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "您可以通过 %%site.name%% 的电子邮件接收SMS短信。" -#: lib/noticelist.php:426 lib/noticelist.php:429 +#: actions/smssettings.php:91 #, fuzzy -msgid "in reply to" -msgstr "先前……" +msgid "SMS is not available." +msgstr "这个页面不提供您想要的媒体类型" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -#, fuzzy -msgid "Reply to this notice" -msgstr "无法删除通告。" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "已确认的可以发送SMS短消息的电话号码。" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -#, fuzzy -msgid "Reply" -msgstr "回复" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "等待确认此电话号码。" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -#, fuzzy -msgid "Delete this notice" -msgstr "删除通告" +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "确认码" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -#, fuzzy -msgid "Delete" -msgstr "删除" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "输入手机收到的验证码。" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "呼叫这个用户" +#: actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "SMS短信电话号码" -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "呼叫" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "电话号码,不带标点或空格,包含地区代码" -#: lib/nudgeform.php:128 -#, fuzzy -msgid "Send a nudge to this user" -msgstr "呼叫这个用户" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "通过SMS短信将通告发给我;我了解这样也许会给我带来不菲的开支。" -#: lib/personaltagcloudsection.php:56 -#, fuzzy, php-format -msgid "Tags in %s's notices" -msgstr "%s's 的消息的标签" +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "没有电话号码。" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "(none 没有)" +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "未选择运营商。" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "公告" +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "您已登记此电话号码。" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "用户组" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "这个电话号码属于另一个用户。" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#: actions/smssettings.php:347 #, fuzzy -msgid "Recent tags" -msgstr "最近的标签" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "特征" +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 "" +"验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求" +"使用它。" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy -msgid "Popular" -msgstr "用户" +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "确认码错误。" -#: lib/searchgroupnav.php:82 -#, fuzzy -msgid "Notice" -msgstr "通告" +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "这是他人的电话号码。" -#: lib/searchgroupnav.php:85 +#: actions/smssettings.php:465 #, fuzzy -msgid "Find groups on this site" -msgstr "搜索用户信息" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "无标题章节" - -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "%s 订阅的人" +msgid "Mobile carrier" +msgstr "选择运营商" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "订阅 %s" +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "选择运营商" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: actions/smssettings.php:476 #, php-format -msgid "Groups %s is a member of" -msgstr "%s 组是成员组成了" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, fuzzy, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "使用这个表单来邀请好友和同事加入。" - -#: lib/subs.php:53 lib/subs.php:52 -#, fuzzy -msgid "User has blocked you." -msgstr "用户没有个人信息。" - -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -#, fuzzy -msgid "Subscribe to this user" -msgstr "订阅 %s" - -#: lib/tagcloudsection.php:56 -#, fuzzy -msgid "None" -msgstr "否" +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 "" +"电话的服务商。如果您的服务商支持通过电子邮件发送SMS短信,而这里尚未列出,请联" +"系 %s 以告知。" -#: lib/topposterssection.php:74 -#, fuzzy -msgid "Top posters" -msgstr "灌水精英" +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "没有输入验证码" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 +#: actions/subedit.php:70 #, fuzzy -msgid "Unblock this user" -msgstr "取消阻止次用户" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "取消阻止" +msgid "You are not subscribed to that profile." +msgstr "您未告知此个人信息" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#: actions/subedit.php:83 #, fuzzy -msgid "Unsubscribe from this user" -msgstr "取消订阅 %s" - -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "%s 好友的聚合" - -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "%s 好友的聚合" - -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "%s 好友的聚合" +msgid "Could not save subscription." +msgstr "无法删除订阅。" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: actions/subscribe.php:55 #, fuzzy -msgid "You and friends" -msgstr "%s 及好友" - -#: actions/avatarsettings.php:78 -#, fuzzy, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "您可以在这里上传个人头像。" +msgid "Not a local user." +msgstr "没有这个用户。" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: actions/subscribe.php:69 #, fuzzy -msgid "Avatar deleted." -msgstr "头像已更新。" - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +msgid "Subscribed" +msgstr "订阅" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "您选择了永久删除通告。这样做是无法恢复的。" +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "订阅者" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy -msgid "There was a problem with your session token. Try again, please." -msgstr "会话标识有问题,请重试。" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "%s 订阅者, 第 %d 页" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "如果收到私人信息,发邮件通知我。" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "这些用户订阅了您的通告。" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#: actions/subscribers.php:67 #, php-format +msgid "These are the people who listen to %s's notices." +msgstr "这些用户订阅了 %s 的通告。" + +#: actions/subscribers.php:108 msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#: actions/subscribers.php:110 #, php-format -msgid "Okay, do it!" +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/subscribers.php:114 #, php-format msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#: actions/subscriptions.php:52 #, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "你可以给你的组上载一个logo图。" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy -msgid "Pick a square area of the image to be the logo." -msgstr "请选择一块方形区域作为你的头像" +msgid "%s subscriptions" +msgstr "所有订阅" -#: actions/grouprss.php:136 actions/grouprss.php:137 +#: actions/subscriptions.php:54 #, fuzzy, php-format -msgid "Microblog by %s group" -msgstr "%s 的微博客服务" +msgid "%s subscriptions, page %d" +msgstr "所有订阅" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -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%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包" -"含 3 个字符,多个搜索条件用空格分隔。" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "这是您订阅的用户。" -#: actions/groups.php:90 +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "这是 %s 订阅的用户。" + +#: actions/subscriptions.php:121 #, php-format msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." msgstr "" -#: actions/newmessage.php:102 -#, fuzzy -msgid "Only logged-in users can send direct messages." -msgstr "发送消息出错。" - -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "搜索有关\"%s\"的消息" - -#: actions/openidlogin.php:66 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "由于安全原因,修改设置前需要输入用户名和密码。" +msgid "%s is not listening to anyone." +msgstr "%1$s 开始关注您的 %2$s 信息。" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#: actions/subscriptions.php:194 #, fuzzy -msgid "Public Stream Feed (RSS 1.0)" -msgstr "公开的聚合" +msgid "Jabber" +msgstr "没有 Jabber ID。" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy -msgid "Public Stream Feed (RSS 2.0)" -msgstr "公开的聚合" +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS短信" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: actions/tagother.php:33 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "公开的聚合" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" +msgid "Not logged in" +msgstr "未登录。" -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +#: actions/tagother.php:39 +#, fuzzy +msgid "No id argument." +msgstr "没有这份文档。" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "标签" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 +#: actions/tagother.php:77 lib/userprofile.php:75 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" +msgid "User profile" +msgstr "用户没有个人信息。" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" +msgstr "相片" + +#: actions/tagother.php:141 #, fuzzy -msgid "Created" -msgstr "创建" +msgid "Tag user" +msgstr "标签" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format +#: actions/tagother.php:151 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%%%%))" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" +"给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" -#: actions/showstream.php:147 +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "你只能给你订阅的人或订阅你的人加标签。" + +#: actions/tagother.php:200 #, fuzzy -msgid "Your profile" -msgstr "组资料" +msgid "Could not save tags." +msgstr "无法保存头像" -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "个人信息" +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "使用这个表格给你的关注者或你的订阅加注标签。" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "%s 的通告聚合" +msgid "Notices tagged with %s, page %d" +msgstr "带 %s 标签的通告" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/tag.php:86 #, fuzzy, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s 的通告聚合" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/tag.php:92 #, fuzzy, php-format -msgid "Notice feed for %s (Atom)" +msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s 的通告聚合" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: actions/tag.php:98 #, fuzzy, php-format -msgid "FOAF for %s" -msgstr "%s 的发件箱" +msgid "Notice feed for tag %s (Atom)" +msgstr "%s 的通告聚合" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 +#: actions/tagrss.php:35 #, fuzzy -msgid "Edit Avatar" -msgstr "头像" +msgid "No such tag." +msgstr "未找到此消息。" -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "个人设置" +#: actions/twitapitrends.php:87 +msgid "API method under construction." +msgstr "API 方法尚未实现。" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" -msgstr "" +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile id in request." +msgstr "服务器没有返回个人信息URL。" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +#: actions/unsubscribe.php:84 +#, fuzzy +msgid "No profile with that id." +msgstr "没有找到此ID的信息。" -#: actions/smssettings.php:335 actions/smssettings.php:347 +#: actions/unsubscribe.php:98 #, fuzzy -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 "" -"验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求" -"使用它。" +msgid "Unsubscribed" +msgstr "退订" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "未找到用户" - -#: actions/twittersettings.php:72 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "确认订阅" -#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#: actions/userauthorization.php:110 #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" "请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" "告,请点击\"取消\"。" -#: actions/usergroups.php:131 actions/usergroups.php:130 +#: actions/userauthorization.php:188 #, fuzzy -msgid "Search for more groups" -msgstr "检索人或文字" +msgid "License" +msgstr "注册证" + +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "接受" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" +msgid "Subscribe to this user" +msgstr "订阅 %s" + +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "拒绝" + +#: actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "所有订阅" -#: lib/action.php:406 lib/action.php:425 -#, fuzzy -msgid "Connect to SMS, Twitter" -msgstr "与IM,手机短信,Twitter的连接" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "未收到认证请求!" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy -msgid "Badge" -msgstr "呼叫" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "订阅已确认" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format +#: actions/userauthorization.php:249 +#, fuzzy msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" msgstr "" +"订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "订阅被拒绝" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: actions/userauthorization.php:261 +#, fuzzy msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "你需要登录方能使用%sFacebook程序" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: lib/imagefile.php:75 +#: actions/userauthorization.php:322 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: lib/mail.php:175 lib/mail.php:174 +#: actions/userauthorization.php:338 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 +#: actions/userauthorization.php:343 #, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s 开始关注您的 %2$s 信息。\n" -"\n" -"\t%3$s\n" -"\n" -"为您效力的 %4$s\n" +msgid "Can’t read avatar URL ‘%s’." +msgstr "无法访问头像URL '%s'" -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "'%s' 图像格式错误" -#: lib/mail.php:513 -#, php-format +#: actions/userbyid.php:70 +msgid "No id." +msgstr "没有 id。" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "个人设置" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/mail.php:600 lib/mail.php:602 +#: actions/usergroups.php:64 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +msgid "%s groups, page %d" +msgstr "%s 群组, 第 %d 页" -#: lib/searchaction.php:122 lib/searchaction.php:120 +#: actions/usergroups.php:130 #, fuzzy -msgid "Search site" -msgstr "搜索" +msgid "Search for more groups" +msgstr "检索人或文字" -#: lib/section.php:106 -msgid "More..." -msgstr "" +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "您未告知此个人信息" -#: actions/all.php:80 actions/all.php:127 +#: actions/usergroups.php:158 #, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/all.php:85 actions/all.php:132 +#: classes/File.php:137 #, php-format msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." msgstr "" -#: actions/all.php:87 actions/all.php:134 +#: classes/File.php:147 #, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: classes/File.php:154 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: actions/attachment.php:73 +#: classes/Message.php:55 +msgid "Could not insert message." +msgstr "无法添加信息。" + +#: classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "无法添加新URI的信息。" + +#: classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "添加标签时数据库出错:%s" + +#: classes/Notice.php:179 #, fuzzy -msgid "No such attachment." -msgstr "没有这份文档。" +msgid "Problem saving notice. Too long." +msgstr "保存通告时出错。" -#: actions/block.php:149 +#: classes/Notice.php:183 #, fuzzy -msgid "Do not block this user from this group" -msgstr "该组成员列表。" +msgid "Problem saving notice. Unknown user." +msgstr "保存通告时出错。" -#: actions/block.php:150 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" + +#: classes/Notice.php:194 #, fuzzy -msgid "Block this user from this group" -msgstr "该组成员列表。" +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "用户没有个人信息。" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "在这个网站你被禁止发布消息。" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s 及好友" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "保存通告时出错。" -#: actions/blockedfromgroup.php:108 -#, fuzzy -msgid "A list of the users blocked from joining this group." -msgstr "该组成员列表。" +#: classes/Notice.php:1120 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "添加回复时数据库出错:%s" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "取消阻止用户失败。" +#: classes/User.php:333 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "发送给 %1$s 的 %2$s 消息" -#: actions/conversation.php:99 -#, fuzzy -msgid "Conversation" -msgstr "确认码" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "个人信息" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "无法删除通告。" +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "修改您的个人信息" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "上载一个头像。" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "主页'%s'不正确" +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "修改密码" -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "昵称已被使用,换一个吧。" +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "修改电子邮件" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#: lib/accountsettingsaction.php:121 #, fuzzy -msgid "Could not create aliases." -msgstr "无法创建收藏。" +msgid "Design your profile" +msgstr "用户没有个人信息。" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +#: lib/accountsettingsaction.php:123 +msgid "Other" +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 "" +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "其他选项" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +#: lib/action.php:144 +#, fuzzy, php-format +msgid "%s - %s" +msgstr "%s (%s)" -#: actions/file.php:34 -#, fuzzy -msgid "No notice id" -msgstr "新通告" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "无标题页" -#: actions/file.php:38 -#, fuzzy -msgid "No notice" -msgstr "新通告" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "主站导航" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" +#: lib/action.php:430 +msgid "Home" +msgstr "主页" -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "个人资料及朋友年表" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "不是有效的昵称。" +#: lib/action.php:432 +msgid "Account" +msgstr "帐号" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 +#: lib/action.php:432 #, fuzzy -msgid "No group specified." -msgstr "没有收件人。" +msgid "Change your email, avatar, password, profile" +msgstr "修改资料" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +#: lib/action.php:435 +msgid "Connect" +msgstr "连接" -#: actions/groupblock.php:95 +#: lib/action.php:435 #, fuzzy -msgid "User is already blocked from group." -msgstr "用户没有个人信息。" +msgid "Connect to services" +msgstr "无法重定向到服务器:%s" -#: actions/groupblock.php:100 -#, fuzzy -msgid "User is not a member of group." -msgstr "您未告知此个人信息" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "邀请" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "阻止用户" +#: lib/action.php:440 lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "使用这个表单来邀请好友和同事加入。" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" +#: lib/action.php:445 +msgid "Logout" +msgstr "登出" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#: lib/action.php:445 +msgid "Logout from the site" +msgstr "登出本站" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#: lib/action.php:450 #, fuzzy -msgid "You must be logged in to edit a group." -msgstr "您必须登录才能创建小组。" +msgid "Create an account" +msgstr "创建新帐号" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy -msgid "Group design" -msgstr "组" +#: lib/action.php:453 +msgid "Login to the site" +msgstr "登入本站" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "帮助" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 +#: lib/action.php:456 #, fuzzy -msgid "Couldn't update your design." -msgstr "无法更新用户。" +msgid "Help me!" +msgstr "帮助" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy -msgid "Unable to save your design settings!" -msgstr "无法保存 Twitter 设置!" +#: lib/action.php:459 +msgid "Search" +msgstr "搜索" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 +#: lib/action.php:459 +msgid "Search for people or text" +msgstr "检索人或文字" + +#: lib/action.php:480 #, fuzzy -msgid "Design preferences saved." -msgstr "同步选项已保存。" +msgid "Site notice" +msgstr "新通告" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#: lib/action.php:546 +msgid "Local views" +msgstr "本地显示" + +#: lib/action.php:612 #, fuzzy -msgid "Make user an admin of the group" -msgstr "只有admin才能编辑这个组" +msgid "Page notice" +msgstr "新通告" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#: lib/action.php:714 #, fuzzy -msgid "Make Admin" -msgstr "admin管理员" +msgid "Secondary site navigation" +msgstr "次项站导航" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/action.php:721 +msgid "About" +msgstr "关于" + +#: lib/action.php:723 +msgid "FAQ" +msgstr "常见问题FAQ" + +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 +#: lib/action.php:730 +msgid "Privacy" +msgstr "隐私" + +#: lib/action.php:732 +msgid "Source" +msgstr "来源" + +#: lib/action.php:734 +msgid "Contact" +msgstr "联系人" + +#: lib/action.php:736 #, fuzzy -msgid "No results." -msgstr "没有结果" +msgid "Badge" +msgstr "呼叫" -#: actions/groupsearch.php:82 +#: lib/action.php:764 +msgid "StatusNet software license" +msgstr "StatusNet软件注册证" + +#: lib/action.php:767 #, php-format msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." +"broughtbyurl%%)。" -#: actions/groupsearch.php:85 +#: lib/action.php:769 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%** 是一个微博客服务。" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" +"它运行[StatusNet](http://status.net/)微博客服务,版本 %s,采用[GNU Affero " +"General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" +"授权。" -#: actions/groupunblock.php:95 +#: lib/action.php:785 #, fuzzy -msgid "User is not blocked from group." -msgstr "用户没有个人信息。" +msgid "Site content license" +msgstr "StatusNet软件注册证" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" +#: lib/action.php:794 +msgid "All " +msgstr "全部" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" +#: lib/action.php:799 +msgid "license." +msgstr "注册证" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" +#: lib/action.php:1053 +msgid "Pagination" +msgstr "分页" -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" +#: lib/action.php:1062 +#, fuzzy +msgid "After" +msgstr "« 之后" + +#: lib/action.php:1070 +#, fuzzy +msgid "Before" +msgstr "之前 »" + +#: lib/action.php:1119 +#, fuzzy +msgid "There was a problem with your session token." +msgstr "会话标识有问题,请重试。" -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/newmessage.php:178 actions/newmessage.php:181 +#: lib/attachmentlist.php:278 #, fuzzy -msgid "Message sent" -msgstr "新消息" +msgid "Provider" +msgstr "个人信息" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "执行结果" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +#: lib/channel.php:210 +msgid "Command complete" +msgstr "执行完毕" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" +#: lib/channel.php:221 +msgid "Command failed" +msgstr "执行失败" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "对不起,这个命令还没有实现。" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "无法更新已确认的电子邮件。" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "振铃呼叫发出。" + +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "无法保存个人信息。" +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "用户没有通告。" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "通告被标记为收藏。" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" +#: lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" +#: lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "全名:%s" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" +#: lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "位置:%s" -#: actions/noticesearch.php:121 +#: lib/command.php:324 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" +msgid "Homepage: %s" +msgstr "主页:%s" -#: actions/noticesearch.php:124 +#: lib/command.php:327 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +msgid "About: %s" +msgstr "关于:%s" -#: actions/openidsettings.php:70 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, fuzzy, 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%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" -"关联的 OpenID。" +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/command.php:377 +msgid "Error sending direct message." +msgstr "发送消息出错。" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" -#: actions/othersettings.php:115 actions/othersettings.php:122 +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "无法删除通告。" + +#: lib/command.php:441 #, fuzzy -msgid "View profile designs" -msgstr "个人设置" +msgid "Error saving notice." +msgstr "保存通告时出错。" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "指定要订阅的用户名" -#: actions/public.php:82 actions/public.php:83 +#: lib/command.php:502 #, php-format -msgid "Beyond the page limit (%s)" -msgstr "" +msgid "Subscribed to %s" +msgstr "订阅 %s" -#: actions/public.php:179 +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "指定要取消订阅的用户名" + +#: lib/command.php:530 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" +msgid "Unsubscribed from %s" +msgstr "取消订阅 %s" -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." +msgstr "命令尚未实现。" -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +#: lib/command.php:551 +msgid "Notification off." +msgstr "通告关闭。" -#: actions/public.php:245 actions/public.php:238 +#: lib/command.php:553 +msgid "Can't turn off notification." +msgstr "无法关闭通告。" + +#: lib/command.php:574 +msgid "Notification on." +msgstr "通告开启。" + +#: lib/command.php:576 +msgid "Can't turn on notification." +msgstr "无法开启通告。" + +#: lib/command.php:597 #, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) 服务" +msgid "Could not create login token for %s" +msgstr "无法创建 OpenID 表单:%s" -#: actions/publictagcloud.php:69 +#: lib/command.php:602 #, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/publictagcloud.php:75 -#, php-format +#: lib/command.php:613 msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/recoverpassword.php:152 +#: lib/common.php:191 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" +msgid "No configuration file found. " +msgstr "没有验证码" -#: actions/recoverpassword.php:158 -#, fuzzy -msgid "You've been identified. Enter a new password below. " -msgstr "您已得到确认。请输入新密码。" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" -#: actions/recoverpassword.php:188 -#, fuzzy -msgid "Password recover" -msgstr "请求恢复密码" +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" -#: actions/register.php:86 actions/register.php:92 +#: lib/common.php:194 #, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "验证码出错。" +msgid "Go to the installer." +msgstr "登入本站" -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy -msgid "Subscribe to a remote user" -msgstr "订阅 %s" +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "即时通讯IM" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "使用即时通讯工具(IM)更新" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "使用SMS短信更新" + +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "%s 收藏的通告" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "上传" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 +#: lib/designsettings.php:109 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." +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "%s 的通告聚合" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "%s 的通告聚合" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "%s 的通告聚合" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "修改密码" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, 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. " +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:474 actions/showgroup.php:482 +#: lib/designsettings.php:191 #, fuzzy -msgid "Admins" -msgstr "admin管理员" +msgid "Content" +msgstr "连接" -#: actions/shownotice.php:101 +#: lib/designsettings.php:204 #, fuzzy -msgid "Not a local notice" -msgstr "没有这个用户。" - -#: actions/showstream.php:72 actions/showstream.php:73 -#, fuzzy, php-format -msgid " tagged %s" -msgstr "带 %s 标签的通告" - -#: actions/showstream.php:121 actions/showstream.php:122 -#, fuzzy, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "%s 的通告聚合" +msgid "Sidebar" +msgstr "搜索" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" +#: lib/designsettings.php:217 +msgid "Text" +msgstr "文本" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "登录" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "%1$s 开始关注您的 %2$s 信息。" - -#: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "%s 的通告聚合" - -#: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "%s 的通告聚合" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#: lib/disfavorform.php:114 lib/disfavorform.php:140 #, fuzzy -msgid "This status is already a favorite!" -msgstr "已收藏此通告!" +msgid "Disfavor this notice" +msgstr "%s 收藏的通告" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy -msgid "That status is not a favorite!" -msgstr "此通告未被收藏!" +msgid "Favor this notice" +msgstr "%s 收藏的通告" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 -#, fuzzy -msgid "Could not determine source user." -msgstr "无法获取收藏的通告。" +#: lib/favorform.php:140 +msgid "Favor" +msgstr "收藏" -#: actions/twitapifriendships.php:215 -#, fuzzy -msgid "Target user not specified." -msgstr "没有收件人。" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "导出数据" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy -msgid "Could not find target user." -msgstr "找不到任何信息。" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / 回复 %2$s 的消息" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#: lib/galleryaction.php:121 #, fuzzy -msgid "License" -msgstr "注册证" +msgid "Filter tags" +msgstr "%s 标签的聚合" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/galleryaction.php:131 +msgid "All" +msgstr "全部" + +#: lib/galleryaction.php:139 #, fuzzy -msgid "Reject this subscription" -msgstr "所有订阅" +msgid "Select tag to filter" +msgstr "选择运营商" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#: lib/galleryaction.php:140 #, fuzzy -msgid "Profile design" -msgstr "个人设置" +msgid "Tag" +msgstr "标签" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "选择标签缩小清单" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "执行" -#: actions/usergroups.php:153 +#: lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "您的主页、博客或在其他站点的URL" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: lib/groupeditform.php:170 #, fuzzy, php-format -msgid "%s is not a member of any group." -msgstr "您未告知此个人信息" +msgid "Describe the group or topic in %d characters" +msgstr "用不超过140个字符描述您自己和您的爱好" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" +#: lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "描述" -#: classes/File.php:127 classes/File.php:137 -#, php-format +#: lib/groupeditform.php:179 +#, fuzzy msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "你的位置,格式类似\"城市,省份,国家\"" -#: classes/File.php:137 classes/File.php:147 +#: lib/groupeditform.php:187 #, php-format -msgid "A file this large would exceed your user quota of %d bytes." +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "组" -#: classes/Notice.php:139 classes/Notice.php:179 +#: lib/groupnav.php:100 #, fuzzy -msgid "Problem saving notice. Too long." -msgstr "保存通告时出错。" +msgid "Blocked" +msgstr "阻止" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/groupnav.php:101 #, fuzzy, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "发送给 %1$s 的 %2$s 消息" +msgid "%s blocked users" +msgstr "阻止用户" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "编辑 %s群选项" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#: lib/groupnav.php:112 #, fuzzy -msgid "Design your profile" -msgstr "用户没有个人信息。" +msgid "Logo" +msgstr "Logo图标" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +#: lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "添加或编辑 %s 图标" -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "添加或编辑 %s 图标" -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "人气最旺的群" -#: lib/attachmentlist.php:278 -#, fuzzy -msgid "Provider" -msgstr "个人信息" +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "消息最多的群" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "这个组所发布的消息的标签" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "这个页面不提供您想要的媒体类型" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +#: lib/imagefile.php:75 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "你可以给你的组上载一个logo图。" -#: lib/designsettings.php:105 -#, fuzzy -msgid "Upload file" -msgstr "上传" +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "部分上传。" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "上传文件时出错。" -#: lib/designsettings.php:139 -msgid "On" -msgstr "" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "不是图片文件或文件已损坏。" -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "不支持这种图像格式。" -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "没有这份通告。" -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "未知文件类型" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "修改密码" +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "新通告" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "加入" -#: lib/designsettings.php:191 +#: lib/leaveform.php:114 #, fuzzy -msgid "Content" -msgstr "连接" +msgid "Leave" +msgstr "保存" -#: lib/designsettings.php:204 +#: lib/logingroupnav.php:80 #, fuzzy -msgid "Sidebar" -msgstr "搜索" +msgid "Login with a username and password" +msgstr "输入用户名和密码以登录。" -#: lib/designsettings.php:230 +#: lib/logingroupnav.php:86 #, fuzzy -msgid "Links" -msgstr "登录" +msgid "Sign up for a new account" +msgstr "创建新帐号" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "只有用户自己可以访问邮箱。" + +#: lib/mailbox.php:139 +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/designsettings.php:248 -msgid "Restore default designs" +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " 从 " + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "电子邮件地址确认" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s 开始关注您的 %2$s 信息。" + +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"%1$s 开始关注您的 %2$s 信息。\n" +"\n" +"\t%3$s\n" +"\n" +"为您效力的 %4$s\n" -#: lib/designsettings.php:257 -msgid "Save design" +#: lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "位置:%s\n" + +#: lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "主页:%s\n" + +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" +"自传Bio: %s\n" +"\n" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "新的电子邮件地址,用于发布 %s 信息" + +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" +"您的 %1$s 发布用地址已更新。\n" +"\n" +"发送邮件到 %2$s 来发布新消息。\n" +"\n" +"更多电子邮件的帮助请见 %3$s。\n" +"\n" +"为您效力的 %4$s" + +#: lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "%s 状态" + +#: lib/mail.php:438 +msgid "SMS confirmation" +msgstr "SMS短信确认" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." -msgstr "" +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s 振铃呼叫你" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:466 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "阻止" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "%s 发送了新的私人信息" -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "阻止用户" +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" -#: lib/groupnav.php:119 +#: lib/mail.php:554 #, fuzzy, php-format -msgid "Add or edit %s design" -msgstr "添加或编辑 %s 图标" +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s 收藏了您的通告" #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -7070,649 +4270,456 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"\t%3$s\n" "\n" -"\t%2$s\n" +"It reads:\n" +"\n" +"\t%4$s\n" "\n" -"Regards,\n" -"%3$s\n" msgstr "" -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mailbox.php:139 +#: lib/mediafile.php:147 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." +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "没有内容!" - -#: lib/profileaction.php:177 -#, fuzzy -msgid "User ID" -msgstr "用户" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" -#: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy -msgid "Search help" -msgstr "搜索" +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "主页的URL不正确。" +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "无法获取收藏的通告。" -#: lib/webcolor.php:123 +#: lib/mediafile.php:270 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgid " Try using another %s format." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "未找到此消息。" - -#: actions/apidirectmessage.php:89 -#, fuzzy, php-format -msgid "Direct messages from %s" -msgstr "发给 %s 的直接消息" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "超出长度限制。不能超过 140 个字符。" - -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "无法订阅用户:未找到。" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "描述过长(不能超过140字符)。" - -#: actions/apigroupjoin.php:110 +#: lib/messageform.php:120 #, fuzzy -msgid "You are already a member of that group." -msgstr "您已经是该组成员" +msgid "Send a direct notice" +msgstr "删除通告" -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "无法把 %s 用户添加到 %s 组" +#: lib/messageform.php:146 +msgid "To" +msgstr "到" -#: actions/apigroupleave.php:114 +#: lib/messageform.php:162 lib/noticeform.php:173 #, fuzzy -msgid "You are not a member of this group." -msgstr "您未告知此个人信息" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "无法订阅用户:未找到。" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "%s 群组" - -#: actions/apigrouplist.php:103 -#, fuzzy, php-format -msgid "Groups %s is a member of on %s." -msgstr "%s 组是成员组成了" - -#: actions/apigrouplistall.php:94 -#, fuzzy, php-format -msgid "groups on %s" -msgstr "组动作" +msgid "Available characters" +msgstr "6 个或更多字符" -#: actions/apistatusesshow.php:138 +#: lib/noticeform.php:145 #, fuzzy -msgid "Status deleted." -msgstr "头像已更新。" +msgid "Send a notice" +msgstr "发送消息" -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "怎么样,%s?" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 -#, fuzzy, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "超出长度限制。不能超过 140 个字符。" +#: lib/noticeform.php:180 +msgid "Attach" +msgstr "" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#: lib/noticelist.php:478 #, fuzzy -msgid "Unsupported format." -msgstr "不支持这种图像格式。" +msgid "in context" +msgstr "没有内容!" -#: actions/bookmarklet.php:50 +#: lib/noticelist.php:498 #, fuzzy -msgid "Post to " -msgstr "相片" +msgid "Reply to this notice" +msgstr "无法删除通告。" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "描述过长(不能超过140字符)。" +#: lib/noticelist.php:499 +#, fuzzy +msgid "Reply" +msgstr "回复" -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "呼叫这个用户" -#: actions/finishremotesubscribe.php:80 -#, fuzzy -msgid "User being listened to does not exist." -msgstr "要查看的用户不存在。" +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "呼叫" -#: actions/finishremotesubscribe.php:106 +#: lib/nudgeform.php:128 #, fuzzy -msgid "You are not authorized." -msgstr "未认证。" +msgid "Send a nudge to this user" +msgstr "呼叫这个用户" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "无法将请求标记转换为访问令牌。" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "添加个人信息出错" -#: actions/finishremotesubscribe.php:114 -#, fuzzy -msgid "Remote service uses unknown version of OMB protocol." -msgstr "此OMB协议版本无效。" +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "添加头像出错" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "添加远程的个人信息出错" -#: actions/getfile.php:75 +#: lib/oauthstore.php:345 #, fuzzy -msgid "No such file." -msgstr "没有这份通告。" +msgid "Duplicate notice" +msgstr "删除通告" -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "没有这份通告。" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "无法添加新的订阅。" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "个人" -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "这个页面不提供您想要的媒体类型" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "回复" -#: actions/login.php:259 actions/login.php:286 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " -"或使用 [OpenID](%%action.openidlogin%%). " +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "收藏夹" -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "%2$s 上 %1$s 的更新!" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "用户" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "所有匹配搜索条件\"%s\"的消息" +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "收件箱" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " -msgstr "连接" +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "您接收的消息" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "发件箱" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "您发送的消息" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 +#: lib/personaltagcloudsection.php:56 #, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "用不超过140个字符描述您自己和您的爱好" - -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "用不超过140个字符描述您自己和您的爱好" +msgid "Tags in %s's notices" +msgstr "%s's 的消息的标签" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "自述过长(不能超过140字符)。" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "订阅" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "所有订阅" -#: actions/remotesubscribe.php:168 -#, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "不是有效的个人信息URL(没有YADIS数据)。" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "订阅者" -#: actions/remotesubscribe.php:176 +#: lib/profileaction.php:157 #, fuzzy -msgid "That’s a local profile! Login to subscribe." -msgstr "那是一个本地资料!需要登录才能订阅。" +msgid "All subscribers" +msgstr "订阅者" -#: actions/remotesubscribe.php:183 +#: lib/profileaction.php:177 #, fuzzy -msgid "Couldn’t get a request token." -msgstr "无法获得一份请求标记。" - -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "%s 的通告聚合" - -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "%s 的通告聚合" +msgid "User ID" +msgstr "用户" -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "%s 的通告聚合" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "用户始于" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "发送给 %1$s 的 %2$s 消息" +#: lib/profileaction.php:235 +msgid "All groups" +msgstr "所有组" -#: actions/showfavorites.php:170 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "%s 好友的聚合" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "公告" -#: actions/showfavorites.php:177 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "%s 好友的聚合" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "用户组" -#: actions/showfavorites.php:184 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "%s 好友的聚合" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#, fuzzy +msgid "Recent tags" +msgstr "最近的标签" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "特征" -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "%s 的发件箱" +#: lib/publicgroupnav.php:92 +#, fuzzy +msgid "Popular" +msgstr "用户" -#: actions/shownotice.php:90 +#: lib/searchaction.php:120 #, fuzzy -msgid "Notice deleted." -msgstr "消息已发布。" +msgid "Search site" +msgstr "搜索" -#: actions/smssettings.php:91 +#: lib/searchaction.php:162 #, fuzzy -msgid "SMS is not available." -msgstr "这个页面不提供您想要的媒体类型" +msgid "Search help" +msgstr "搜索" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "%s 的通告聚合" +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "用户" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "搜索用户信息" -#: actions/userauthorization.php:110 +#: lib/searchgroupnav.php:82 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" -"告,请点击\"取消\"。" +msgid "Notice" +msgstr "通告" -#: actions/userauthorization.php:249 -#, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "搜索通告内容" -#: actions/userauthorization.php:261 +#: lib/searchgroupnav.php:85 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" +msgid "Find groups on this site" +msgstr "搜索用户信息" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "无标题章节" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "%s 订阅的人" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "订阅 %s" -#: actions/userauthorization.php:338 +#: lib/subgroupnav.php:99 #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Groups %s is a member of" +msgstr "%s 组是成员组成了" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" msgstr "" -#: actions/userauthorization.php:343 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "无法访问头像URL '%s'" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" -#: actions/userauthorization.php:348 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "'%s' 图像格式错误" +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(none 没有)" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "无法重定向到服务器:%s" +#: lib/subs.php:48 +msgid "Already subscribed!" +msgstr "" -#: lib/action.php:785 +#: lib/subs.php:52 #, fuzzy -msgid "Site content license" -msgstr "StatusNet软件注册证" +msgid "User has blocked you." +msgstr "用户没有个人信息。" -#: lib/command.php:88 -#, fuzzy, php-format -msgid "Could not find a user with nickname %s" -msgstr "无法更新已确认的电子邮件。" +#: lib/subs.php:56 +msgid "Could not subscribe." +msgstr "无法订阅。" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "无法订阅他人更新。" -#: lib/command.php:99 -#, fuzzy, php-format -msgid "Nudge sent to %s" -msgstr "振铃呼叫发出。" +#: lib/subs.php:124 +msgid "Not subscribed!." +msgstr "未订阅!" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "无法删除订阅。" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" +#: lib/tagcloudsection.php:56 +#, fuzzy +msgid "None" +msgstr "否" -#: lib/command.php:431 -#, fuzzy, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" +#: lib/topposterssection.php:74 +#, fuzzy +msgid "Top posters" +msgstr "灌水精英" -#: lib/command.php:439 -#, fuzzy, php-format -msgid "Reply to %s sent" -msgstr "无法删除通告。" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#, fuzzy +msgid "Unsubscribe from this user" +msgstr "取消订阅 %s" -#: lib/command.php:441 +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "退订" + +#: lib/userprofile.php:116 #, fuzzy -msgid "Error saving notice." -msgstr "保存通告时出错。" +msgid "Edit Avatar" +msgstr "头像" -#: lib/common.php:191 +#: lib/userprofile.php:236 #, fuzzy -msgid "No configuration file found. " -msgstr "没有验证码" +msgid "User actions" +msgstr "未知动作" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" +#: lib/userprofile.php:248 +#, fuzzy +msgid "Edit profile settings" +msgstr "个人设置" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/userprofile.php:249 +msgid "Edit" msgstr "" -#: lib/common.php:194 +#: lib/userprofile.php:272 #, fuzzy -msgid "Go to the installer." -msgstr "登入本站" +msgid "Send a direct message to this user" +msgstr "无法向此用户发送消息。" -#: lib/galleryaction.php:139 +#: lib/userprofile.php:273 #, fuzzy -msgid "Select tag to filter" -msgstr "选择运营商" +msgid "Message" +msgstr "新消息" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "用不超过140个字符描述您自己和您的爱好" +#: lib/util.php:844 +msgid "a few seconds ago" +msgstr "几秒前" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "用不超过140个字符描述您自己和您的爱好" +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "一分钟前" -#: lib/jabber.php:192 +#: lib/util.php:848 #, php-format -msgid "notice id: %s" -msgstr "新通告" +msgid "about %d minutes ago" +msgstr "%d 分钟前" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "%s 收藏了您的通告" +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "一小时前" -#: lib/mail.php:556 +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgid "about %d hours ago" +msgstr "%d 小时前" -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" +#: lib/util.php:854 +msgid "about a day ago" +msgstr "一天前" -#: lib/mail.php:613 +#: lib/util.php:856 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy -msgid "from" -msgstr " 从 " - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +msgid "about %d days ago" +msgstr "%d 天前" -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "无法获取收藏的通告。" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "一个月前" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "删除通告" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "%d 个月前" -#: actions/login.php:110 actions/login.php:120 -#, fuzzy -msgid "Invalid or expired token." -msgstr "通告内容不正确" +#: lib/util.php:862 +msgid "about a year ago" +msgstr "一年前" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "无法创建 OpenID 表单:%s" +msgid "%s is not a valid color!" +msgstr "主页的URL不正确。" -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, fuzzy, php-format -msgid "That file is too big. The maximum file size is %s." -msgstr "你可以给你的组上载一个logo图。" +#: scripts/maildaemon.php:48 +msgid "Could not parse message." +msgstr "无法解析消息。" -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "不是已注册用户。" + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "对不起,这个发布用的电子邮件属于其他用户。" + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." +msgstr "对不起,发布用的电子邮件无法使用。" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.mo b/locale/zh_TW/LC_MESSAGES/statusnet.mo index 01220f3f1..2d9e59f00 100644 Binary files a/locale/zh_TW/LC_MESSAGES/statusnet.mo and b/locale/zh_TW/LC_MESSAGES/statusnet.mo differ diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index b6512494c..e40803515 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -10,4481 +10,1751 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-08 11:53+0000\n" -"PO-Revision-Date: 2009-11-08 11:57:29+0000\n" +"POT-Creation-Date: 2009-11-08 22:51+0000\n" +"PO-Revision-Date: 2009-11-08 22:59:08+0000\n" "Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" -#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format -msgid " Search Stream for \"%s\"" -msgstr "搜尋 \"%s\"相關資料" +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "無此通知" -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" +#: actions/all.php:74 actions/allrss.php:68 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75 +#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74 +#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62 +#: actions/newmessage.php:116 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 +#: lib/command.php:364 lib/command.php:411 lib/command.php:466 +#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 +#: lib/subs.php:34 lib/subs.php:112 +msgid "No such user." +msgstr "無此使用者" -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "" +#: actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s與好友" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100 #, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgid "%s and friends" +msgstr "%s與好友" -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" +#: actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "發送給%s好友的訂閱" -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "現在%1$s在%2$s成為你的粉絲囉" +#: actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "發送給%s好友的訂閱" -#: ../lib/mail.php:126 +#: actions/all.php:127 #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +"This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"現在%1$s在%2$s成為你的粉絲囉。\n" -"\n" -"\t%3$s\n" -"\n" -"\n" -"%4$s.\n" -"敬上。\n" -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#: actions/all.php:132 #, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." msgstr "" -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "%1$s的狀態是%2$s" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#: actions/all.php:134 #, php-format -msgid "%s (%s)" +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 actions/publicrss.php:89 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202 #, php-format -msgid "%s Public Stream" -msgstr "%s的公開內容" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: ../actions/all.php:47 ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 -#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 -#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 -#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 -#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 -#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 -#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 -#: actions/allrss.php:115 actions/apitimelinefriends.php:114 -#, php-format -msgid "%s and friends" +#: actions/all.php:165 +#, fuzzy +msgid "You and friends" msgstr "%s與好友" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 +#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format -msgid "%s public timeline" +msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" +#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120 +#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101 +#: actions/apigroupshow.php:105 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108 +#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 +#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144 +#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141 +#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130 +#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163 +#: actions/apiusershow.php:101 +msgid "API method not found!" msgstr "" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109 +msgid "This method requires a POST." msgstr "" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 +#: actions/newnotice.php:94 lib/designsettings.php:283 #, php-format -msgid "%s updates from everyone!" -msgstr "" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 actions/register.php:561 msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 lib/action.php:767 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +msgid "User has no profile." msgstr "" -"**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" -"部落格服務" - -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 lib/action.php:769 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%**是個微型部落格" - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "必須注明作者姓名或昵稱." - -#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 actions/profilesettings.php:108 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -#: actions/register.php:424 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#: actions/apiblockcreate.php:108 +msgid "Block user failed." msgstr "" -#: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 -msgid "6 or more characters" -msgstr "6個以上字元" - -#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6個或6個以上字元,別忘了自己密碼喔" +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -#: actions/register.php:429 -msgid "6 or more characters. Required." +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" msgstr "" -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -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." +msgid "That's too long. Max message size is %d chars." msgstr "" -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." msgstr "" -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 lib/action.php:721 -msgid "About" -msgstr "關於" - -#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 actions/userauthorization.php:178 -#: actions/userauthorization.php:209 -msgid "Accept" -msgstr "接受" - -#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 actions/imsettings.php:64 -#: actions/openidsettings.php:58 actions/smssettings.php:71 -#: actions/twittersettings.php:85 actions/emailsettings.php:120 -#: actions/imsettings.php:127 actions/openidsettings.php:111 -#: actions/smssettings.php:133 actions/twittersettings.php:163 -#: actions/twittersettings.php:166 actions/twittersettings.php:182 -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 -msgid "Add" -msgstr "新增" - -#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 -#: actions/openidsettings.php:93 -msgid "Add OpenID" -msgstr "新增OpenID" - -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" msgstr "" -#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 actions/emailsettings.php:39 -#: actions/imsettings.php:40 actions/smssettings.php:39 -#: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 actions/emailsettings.php:100 -#: actions/imsettings.php:100 actions/smssettings.php:104 -msgid "Address" -msgstr "信箱" - -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" msgstr "" -#: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "所有訂閱" - -#: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 actions/publicrss.php:91 +#: actions/apidirectmessage.php:101 #, php-format -msgid "All updates for %s" -msgstr "%s的所有新增內容" +msgid "Direct messages to %s" +msgstr "" -#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 +#: actions/apidirectmessage.php:105 #, php-format -msgid "All updates matching search term \"%s\"" -msgstr "所有符合 \"%s\"的更新" - -#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 -#: ../actions/openidlogin.php:29 ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 actions/login.php:31 -#: actions/openidlogin.php:29 actions/register.php:30 -#: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 -#: actions/login.php:79 actions/register.php:137 -msgid "Already logged in." -msgstr "已登入" - -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 -msgid "Already subscribed!." -msgstr "此帳號已註冊" +msgid "All the direct messages sent to %s" +msgstr "" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." msgstr "" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "註冊確認" +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" -#: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 actions/login.php:226 -#: actions/register.php:473 actions/login.php:253 actions/register.php:479 -msgid "Automatically login in the future; not for shared computers!" -msgstr "未來在同一部電腦自動登入" +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" msgstr "" -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "個人圖像" +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "" -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -#: actions/avatarsettings.php:360 -msgid "Avatar updated." -msgstr "更新個人圖像" +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 +#: actions/apifriendshipscreate.php:118 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Could not follow user: %s is already on your list." msgstr "" -"等待確認此信箱。看看你的Jabber/GTalk是否有訊息指示下一步動作。(你加入%s到你的" -"好友清單了嗎?)" -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "無法連結到伺服器:%s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" msgstr "" -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." msgstr "" -#: ../lib/util.php:1318 lib/util.php:1452 +#: actions/apifriendshipsshow.php:135 #, fuzzy -msgid "Before »" -msgstr "之前的內容»" - -#: ../actions/profilesettings.php:49 ../actions/register.php:170 -#: actions/profilesettings.php:82 actions/register.php:184 -#: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 actions/profilesettings.php:127 -#: actions/register.php:459 actions/register.php:465 -msgid "Bio" -msgstr "自我介紹" - -#: ../actions/profilesettings.php:101 ../actions/register.php:82 -#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 -#: actions/register.php:89 actions/updateprofile.php:104 -#: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 actions/updateprofile.php:109 -#: actions/profilesettings.php:206 actions/register.php:211 -msgid "Bio is too long (max 140 chars)." -msgstr "自我介紹過長(共140個字元)" - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" - -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "無法讀取此%sURL的圖像" - -#: ../actions/password.php:85 ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 -#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 -#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 -#: actions/passwordsettings.php:185 -msgid "Can't save new password." -msgstr "無法存取新密碼" - -#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 actions/emailsettings.php:58 -#: actions/imsettings.php:59 actions/smssettings.php:62 -#: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 actions/emailsettings.php:117 -#: actions/imsettings.php:120 actions/smssettings.php:126 -msgid "Cancel" -msgstr "取消" - -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "無法初始化OpenID用戶對象(consumer object)" - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "此JabberID錯誤" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "" - -#: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 -msgid "Change" -msgstr "更改" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" - -#: ../actions/password.php:32 actions/profilesettings.php:36 -#: actions/passwordsettings.php:58 -msgid "Change password" -msgstr "更改密碼" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "" - -#: ../actions/password.php:43 ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 actions/recoverpassword.php:187 -#: actions/register.php:169 actions/smssettings.php:65 -#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 -#: actions/register.php:376 actions/smssettings.php:122 -#: actions/recoverpassword.php:236 actions/register.php:422 -#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 -#: actions/register.php:426 actions/smssettings.php:134 -#: actions/register.php:432 -msgid "Confirm" -msgstr "確認" - -#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 -#: actions/confirmaddress.php:144 -msgid "Confirm Address" -msgstr "確認信箱" - -#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 actions/emailsettings.php:256 -#: actions/imsettings.php:230 actions/smssettings.php:253 -#: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 actions/emailsettings.php:386 -#: actions/emailsettings.php:394 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." -msgstr "確認取消" - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" - -#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 -#: actions/confirmaddress.php:80 -msgid "Confirmation code not found." -msgstr "確認碼遺失" - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 actions/register.php:537 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - -#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 -#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 lib/action.php:435 -msgid "Connect" -msgstr "連結" - -#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 -msgid "Connect existing account" -msgstr "與現有帳號連結" - -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 lib/action.php:734 -msgid "Contact" -msgstr "好友名單" - -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "無法從 %s 建立OpenID" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "無法連結到伺服器:%s" - -#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 actions/updateprofile.php:176 -msgid "Could not save avatar info" -msgstr "無法存取個人圖像資料" - -#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 actions/updateprofile.php:163 -msgid "Could not save new profile info" -msgstr "無法存取新的個人資料" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "無法轉換請求標記以致無法存取標記" - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "無法取消信箱確認" - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "無法刪除帳號" - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "無法取得轉換標記" - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "無法輸入確認碼" - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "無法新增訂閱" - -#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 -msgid "Couldn't save profile." -msgstr "無法儲存個人資料" - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - -#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 actions/emailsettings.php:174 -#: actions/emailsettings.php:277 actions/imsettings.php:146 -#: actions/imsettings.php:251 actions/profilesettings.php:256 -#: actions/smssettings.php:165 actions/smssettings.php:277 -#: actions/confirmaddress.php:114 actions/emailsettings.php:280 -#: actions/emailsettings.php:411 actions/imsettings.php:252 -#: actions/imsettings.php:395 actions/othersettings.php:162 -#: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 actions/emailsettings.php:287 -#: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 actions/emailsettings.php:295 -#: actions/emailsettings.php:426 actions/imsettings.php:258 -#: actions/imsettings.php:401 actions/othersettings.php:174 -#: actions/profilesettings.php:276 actions/smssettings.php:278 -#: actions/smssettings.php:420 -msgid "Couldn't update user." -msgstr "無法更新使用者" - -#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 -msgid "Create" -msgstr "新增" - -#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 -msgid "Create a new user with this nickname." -msgstr "以此暱稱新增使用者" - -#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 -msgid "Create new account" -msgstr "新增帳號" - -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "該OpenID已經注冊" - -#: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "目前已確認的Jabber/Gtalk地址" - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" - -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "目前" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#: classes/Notice.php:1120 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "增加回覆時,資料庫發生錯誤: %s" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - -#: ../actions/profilesettings.php:51 ../actions/register.php:172 -#: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 actions/register.php:404 -#: actions/register.php:450 -msgid "Describe yourself and your interests in 140 chars" -msgstr "請在140個字以內描述你自己與你的興趣" - -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 actions/register.php:437 -#: actions/register.php:441 -msgid "Email" -msgstr "電子信箱" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 actions/register.php:212 -msgid "Email address already exists." -msgstr "此電子信箱已註冊過了" - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "確認信箱" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "請輸入暱稱或電子信箱" - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "授權錯誤(Error authorizing token)" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "連接OpenID時發生錯誤" - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "連接用戶時發生錯誤(Error connecting user.)" - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "個人圖像插入錯誤" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "新的更人資料輸入錯誤" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "儲存信箱確認發生錯誤" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "儲存遠端個人資料發生錯誤" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "儲存個人資料發生錯誤" - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "儲存使用者發生錯誤" - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 actions/passwordsettings.php:180 -msgid "Error saving user; invalid." -msgstr "儲存使用者發生錯誤;使用者名稱無效" - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -#: actions/login.php:149 actions/register.php:248 -msgid "Error setting user." -msgstr "使用者設定發生錯誤" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "更新個人資料發生錯誤" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "更新遠端個人資料發生錯誤" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "確認碼發生錯誤" - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "這個暱稱已有人用了喔" - -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 lib/action.php:723 -msgid "FAQ" -msgstr "常見問題" - -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -#: actions/avatarsettings.php:363 -msgid "Failed updating avatar." -msgstr "無法上傳個人圖像" - -#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 -#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 -#: actions/allrss.php:110 actions/allrss.php:118 -#, php-format -msgid "Feed for friends of %s" -msgstr "發送給%s好友的訂閱" - -#: ../actions/replies.php:65 ../actions/repliesrss.php:80 -#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format -msgid "Feed for replies to %s" -msgstr "回應給%s的訂閱" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -#: actions/login.php:282 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" - -#: ../actions/profilesettings.php:44 ../actions/register.php:164 -#: actions/profilesettings.php:77 actions/register.php:178 -#: actions/profilesettings.php:103 actions/register.php:391 -#: actions/showgroup.php:235 actions/showstream.php:262 -#: actions/tagother.php:105 lib/groupeditform.php:142 -#: actions/showgroup.php:237 actions/showstream.php:255 -#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 -#: actions/showstream.php:220 lib/groupeditform.php:157 -#: actions/profilesettings.php:111 actions/register.php:441 -#: actions/showgroup.php:247 actions/showstream.php:267 -#: actions/register.php:447 lib/userprofile.php:149 -msgid "Full name" -msgstr "全名" - -#: ../actions/profilesettings.php:98 ../actions/register.php:79 -#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 -#: actions/register.php:86 actions/updateprofile.php:94 -#: actions/editgroup.php:195 actions/newgroup.php:146 -#: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 actions/updateprofile.php:99 -#: actions/editgroup.php:197 actions/newgroup.php:147 -#: actions/profilesettings.php:203 actions/register.php:208 -#: actions/apigroupcreate.php:253 actions/editgroup.php:198 -#: actions/newgroup.php:142 actions/profilesettings.php:218 -#: actions/register.php:214 actions/register.php:220 -msgid "Full name is too long (max 255 chars)." -msgstr "全名過長(最多255字元)" - -#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 -#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 -#: lib/action.php:456 lib/action.php:719 -msgid "Help" -msgstr "求救" - -#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 lib/action.php:430 -msgid "Home" -msgstr "主頁" - -#: ../actions/profilesettings.php:46 ../actions/register.php:167 -#: actions/profilesettings.php:79 actions/register.php:181 -#: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 actions/profilesettings.php:115 -#: actions/register.php:446 actions/register.php:452 -msgid "Homepage" -msgstr "個人首頁" - -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 actions/register.php:217 -msgid "Homepage is not a valid URL." -msgstr "個人首頁位址錯誤" - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - -#: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 actions/imsettings.php:124 -msgid "IM Address" -msgstr "線上即時通信箱" - -#: ../actions/imsettings.php:33 actions/imsettings.php:33 -#: actions/imsettings.php:59 -msgid "IM Settings" -msgstr "線上即時通設定" - -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "若想新增OpenID到你的帳號,請在下方空格輸入並勾選『新增』" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" - -#: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 -#: actions/passwordsettings.php:164 -msgid "Incorrect old password" -msgstr "舊密碼錯誤" - -#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143 -msgid "Incorrect username or password." -msgstr "使用者名稱或密碼錯誤" - -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "我們已寄出一封信到你帳號中的信箱,告訴你如何取回你的密碼。" - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "個人圖像連結%s無效" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "個人首頁連結%s無效" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "個人資料連結%s無效" - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "個人資料連結無效(格式錯誤)" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "尺寸錯誤" - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -#: actions/register.php:243 actions/register.php:264 -msgid "Invalid username or password." -msgstr "使用者名稱或密碼無效" - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "此Jabber ID已有人使用" - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164 -msgid "Location" -msgstr "地點" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 actions/register.php:227 -msgid "Location is too long (max 255 chars)." -msgstr "地點過長(共255個字)" - -#: ../actions/login.php:97 ../actions/login.php:106 -#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 -#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 -#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 -#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 -#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 -#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 -#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 -#: actions/login.php:204 actions/login.php:257 -#, php-format -msgid "Login" -msgstr "登入" - -#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 actions/openidlogin.php:70 -#, php-format -msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "用OpenID(%%doc.openid%%)帳號登入" - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" - -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 lib/action.php:445 -msgid "Logout" -msgstr "登出" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -#: actions/register.php:449 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - -#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263 -msgid "Lost or forgotten password?" -msgstr "遺失或忘記密碼了嗎?" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - -#: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 lib/profileaction.php:182 -msgid "Member since" -msgstr "何時加入會員的呢?" - -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "&s的微型部落格" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -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 "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 actions/register.php:493 -msgid "My text and files are available under " -msgstr "" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - -#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 -msgid "New nickname" -msgstr "新暱稱" - -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "新訊息" - -#: ../actions/password.php:41 ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 -#: actions/recoverpassword.php:235 -msgid "New password" -msgstr "新密碼" - -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "新密碼已儲存成功。你已登入。" - -#: ../actions/login.php:101 ../actions/profilesettings.php:41 -#: ../actions/register.php:151 actions/login.php:101 -#: actions/profilesettings.php:74 actions/register.php:165 -#: actions/login.php:228 actions/profilesettings.php:98 -#: actions/register.php:367 actions/showgroup.php:224 -#: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 -#: actions/showgroup.php:226 actions/showstream.php:244 -#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 -#: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 -#: actions/profilesettings.php:106 actions/register.php:417 -#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246 -#: actions/register.php:423 lib/userprofile.php:131 -msgid "Nickname" -msgstr "暱稱" - -#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 -#: ../actions/register.php:69 actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 actions/register.php:76 -#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 actions/editgroup.php:185 -#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 -#: actions/profilesettings.php:215 actions/register.php:196 -#: actions/apigroupcreate.php:221 actions/editgroup.php:186 -#: actions/newgroup.php:130 actions/profilesettings.php:231 -#: actions/register.php:202 actions/register.php:208 -msgid "Nickname already in use. Try another one." -msgstr "此暱稱已有人使用。再試試看別的吧。" - -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 actions/register.php:205 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "暱稱請用小寫字母或數字,勿加空格。" - -#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 -msgid "Nickname not allowed." -msgstr "此暱稱無法使用" - -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "你想成為誰的粉絲呢?請輸入他/她的暱稱。" - -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "暱稱或信箱" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "查無此Jabber ID" - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "無確認請求" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "無確認碼" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "無內容" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "無遠端伺服器提供的暱稱" - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "無暱稱" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "" - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "查無此使用者所註冊的信箱" - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "目前無請求" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "無結果" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "無尺寸" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "無此OpenID" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "無此文件" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "無此通知" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "無此恢復碼" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "無此訂閱" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "無此使用者" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "此恢復碼錯誤" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963 -#: lib/api.php:991 lib/api.php:1101 -msgid "Not a supported data format." -msgstr "" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "此JabberID無效" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "此OpenID無效" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 actions/register.php:201 -msgid "Not a valid email address." -msgstr "此信箱無效" - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 actions/register.php:210 -msgid "Not a valid nickname." -msgstr "" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -#: actions/apistatusesupdate.php:193 -msgid "Not found" -msgstr "" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "" - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 actions/login.php:249 -#: actions/register.php:428 -msgid "Password" -msgstr "" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "" - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "" - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -#: actions/passwordsettings.php:191 -msgid "Password saved." -msgstr "" - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -#: actions/register.php:233 -msgid "Passwords don't match." -msgstr "" - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502 -msgid "Register" -msgstr "" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 actions/register.php:135 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 actions/register.php:112 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -#: actions/login.php:252 actions/register.php:477 -msgid "Remember me" -msgstr "" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -#: actions/register.php:433 -msgid "Same as password above. Required." -msgstr "" - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -#: lib/userprofile.php:321 -msgid "Subscribe" -msgstr "" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -#: lib/userprofile.php:209 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "" - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "" - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "" +msgid "Could not determine source user." +msgstr "無法更新使用者" -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "" +#: actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "無法更新使用者" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "無法存取個人圖像資料" -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" +#: actions/apigroupcreate.php:147 actions/editgroup.php:259 +#: actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "無法存取個人圖像資料" -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "" +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "註冊失敗" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "暱稱請用小寫字母或數字,勿加空格。" -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "此暱稱已有人使用。再試試看別的吧。" -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:210 +msgid "Not a valid nickname." msgstr "" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "個人首頁位址錯誤" -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "全名過長(最多255字元)" -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "" +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "地點過長(共255個字)" -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "" - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" +msgid "Too many aliases! Maximum %d." msgstr "" -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "個人首頁連結%s無效" -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "" +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "此暱稱已有人使用。再試試看別的吧。" -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." msgstr "" -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." msgstr "" -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." +#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." msgstr "" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "無法連結到伺服器:%s" -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "無法連結到伺服器:%s" -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "無法從 %s 建立OpenID" -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, 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 "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -#: actions/apiaccountupdateprofileimage.php:84 -msgid "This method requires a POST." -msgstr "" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." +msgid "%s groups" msgstr "" -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 +#: actions/apigrouplistall.php:94 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94 -msgid "Two user ids or screen_names must be supplied." -msgstr "" - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 actions/register.php:454 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -#: actions/avatarsettings.php:277 lib/designsettings.php:304 -msgid "Unexpected form submission." -msgstr "" - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "" - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." +msgid "groups on %s" msgstr "" -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "無此通知" -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 +#: actions/apigrouplist.php:103 #, php-format -msgid "Unrecognized address type %s" -msgstr "" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" +msgid "Groups %s is a member of on %s." msgstr "" -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." msgstr "" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." msgstr "" -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "更新個人圖像" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." msgstr "" -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 +#: actions/apistatusesupdate.php:152 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 #, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 actions/register.php:438 actions/register.php:442 -msgid "Used only for updates, announcements, and password recovery" +msgid "That's too long. Max notice size is %d chars." msgstr "" -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124 -#: actions/apiaccountupdateprofileimage.php:130 -msgid "User has no profile." +#: actions/apistatusesupdate.php:193 +msgid "Not found" msgstr "" -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" +#: actions/apistatusesupdate.php:216 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." msgstr "" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" msgstr "" -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 +#: actions/apitimelinefavorites.php:119 #, php-format -msgid "What's up, %s?" +msgid "%s updates favorited by %s / %s." msgstr "" -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 actions/register.php:472 -msgid "Where you are, like \"City, State (or Region), Country\"" +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" msgstr "" -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format -msgid "Wrong image type for '%s'" +msgid "Updates from %1$s on %2$s!" msgstr "" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#: actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s的狀態是%2$s" + +#: actions/apitimelinementions.php:126 #, php-format -msgid "Wrong size image at '%s'" +msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" +#: actions/apitimelinepublic.php:106 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" msgstr "" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" +#: actions/apitimelinepublic.php:110 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" msgstr "" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +#: actions/apitimelinetag.php:101 actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" msgstr "" -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "" +#: actions/apitimelinetag.php:107 actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "&s的微型部落格" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" +#: actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "目前無請求" -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "無此文件" -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "" +#: actions/avatarbynickname.php:59 actions/leavegroup.php:76 +msgid "No nickname." +msgstr "無暱稱" -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "無尺寸" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "尺寸錯誤" -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" +#: actions/avatarsettings.php:67 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "個人圖像" -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 +#: actions/avatarsettings.php:78 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:178 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:103 +msgid "User without matching profile" msgstr "" -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "" +#: actions/avatarsettings.php:119 actions/avatarsettings.php:194 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "線上即時通設定" -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 actions/register.php:198 -msgid "You can't register if you don't agree to the license." +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" msgstr "" -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" msgstr "" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +#: actions/avatarsettings.php:148 lib/noticelist.php:522 +msgid "Delete" msgstr "" -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." +#: actions/avatarsettings.php:165 actions/grouplogo.php:233 +msgid "Upload" msgstr "" -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#: actions/avatarsettings.php:228 actions/grouplogo.php:286 +msgid "Crop" msgstr "" -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/emailsettings.php:237 actions/favor.php:75 +#: actions/groupblock.php:66 actions/grouplogo.php:309 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 +#: actions/tagother.php:166 actions/unblock.php:65 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 "" -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " +#: actions/avatarsettings.php:277 actions/emailsettings.php:255 +#: actions/grouplogo.php:319 actions/imsettings.php:220 +#: actions/recoverpassword.php:44 actions/smssettings.php:248 +#: lib/designsettings.php:304 +msgid "Unexpected form submission." msgstr "" -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" +#: actions/avatarsettings.php:322 +msgid "Pick a square area of the image to be your avatar" msgstr "" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." +#: actions/avatarsettings.php:337 actions/grouplogo.php:377 +msgid "Lost our file data." msgstr "" -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" +#: actions/avatarsettings.php:360 +msgid "Avatar updated." +msgstr "更新個人圖像" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 lib/util.php:844 -msgid "a few seconds ago" -msgstr "" +#: actions/avatarsettings.php:363 +msgid "Failed updating avatar." +msgstr "無法上傳個人圖像" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 lib/util.php:856 -#, php-format -msgid "about %d days ago" -msgstr "" +#: actions/avatarsettings.php:387 +#, fuzzy +msgid "Avatar deleted." +msgstr "更新個人圖像" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 lib/util.php:852 -#, php-format -msgid "about %d hours ago" -msgstr "" +#: actions/blockedfromgroup.php:73 actions/editgroup.php:84 +#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/grouprss.php:91 +#: actions/joingroup.php:76 actions/showgroup.php:121 +#, fuzzy +msgid "No nickname" +msgstr "無暱稱" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 lib/util.php:848 -#, php-format -msgid "about %d minutes ago" -msgstr "" +#: actions/blockedfromgroup.php:80 actions/editgroup.php:96 +#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97 +#: actions/grouplogo.php:99 actions/groupmembers.php:83 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "無此通知" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 lib/util.php:860 -#, php-format -msgid "about %d months ago" -msgstr "" +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "無此通知" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 lib/util.php:854 -msgid "about a day ago" -msgstr "" +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s與好友" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 lib/util.php:846 -msgid "about a minute ago" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 lib/util.php:858 -msgid "about a month ago" -msgstr "" +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "無此使用者" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 lib/util.php:862 -msgid "about a year ago" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +msgid "Unblock" msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 lib/util.php:850 -msgid "about an hour ago" -msgstr "" +#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 +#: lib/unblockform.php:150 +#, fuzzy +msgid "Unblock this user" +msgstr "無此使用者" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" +#: actions/block.php:59 actions/deletenotice.php:67 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:30 actions/unblock.php:60 actions/unsubscribe.php:52 +#: lib/settingsaction.php:72 +msgid "Not logged in." msgstr "" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." +#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +msgid "No profile specified." msgstr "" -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" +#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 +msgid "No profile with that ID." msgstr "" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "" +#: actions/block.php:111 actions/block.php:134 +#, fuzzy +msgid "Block user" +msgstr "無此使用者" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 actions/login.php:131 -#: actions/register.php:165 actions/avatarsettings.php:265 -#: lib/designsettings.php:294 -msgid "There was a problem with your session token. Try again, please." +#: actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." msgstr "" -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" +#: actions/block.php:149 actions/deletenotice.php:145 +#: actions/groupblock.php:176 +msgid "No" msgstr "" -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "無法連結到伺服器:%s" -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" +#: actions/block.php:150 actions/deletenotice.php:146 +#: actions/groupblock.php:177 +msgid "Yes" msgstr "" -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "無此使用者" -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." +#: actions/block.php:165 +msgid "You have already blocked this user." msgstr "" -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" +#: actions/block.php:170 +msgid "Failed to save block information." msgstr "" -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." +#: actions/bookmarklet.php:50 +msgid "Post to " msgstr "" -#: actions/favor.php:70 -msgid "Disfavor" +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "無確認碼" + +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "確認碼遺失" + +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" msgstr "" -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 +#: actions/confirmaddress.php:90 #, php-format -msgid "%s favorite notices" +msgid "Unrecognized address type %s" +msgstr "" + +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." msgstr "" -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" +#: actions/confirmaddress.php:114 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "無法更新使用者" + +#: actions/confirmaddress.php:126 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "無法取消信箱確認" + +#: actions/confirmaddress.php:144 +msgid "Confirm Address" +msgstr "確認信箱" -#: actions/inbox.php:28 actions/inbox.php:59 +#: actions/confirmaddress.php:159 #, php-format -msgid "Inbox for %s - page %d" +msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "地點" -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:206 +msgid "Notices" msgstr "" -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "無此通知" -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." msgstr "" -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "" -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" msgstr "" -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" msgstr "" -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" +#: actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "無此通知" -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." +#: actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" msgstr "" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +#: actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" msgstr "" -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" +#: actions/disfavor.php:94 +msgid "Add to favorites" msgstr "" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" +#: actions/doc.php:69 +msgid "No such document." +msgstr "無此文件" -#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#: actions/editgroup.php:56 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgid "Edit %s group" msgstr "" -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." msgstr "" -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " +#: actions/editgroup.php:103 actions/editgroup.php:168 +#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" msgstr "" -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." msgstr "" -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" +#: actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "無法更新使用者" + +#: actions/editgroup.php:269 +msgid "Options saved." msgstr "" -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." +#: actions/emailsettings.php:60 +msgid "Email Settings" msgstr "" -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#: actions/emailsettings.php:71 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "信箱" -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." msgstr "" -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" msgstr "" -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." msgstr "" -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 +msgid "Cancel" +msgstr "取消" -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " +#: actions/emailsettings.php:121 +msgid "Email Address" msgstr "" -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "新增" -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -#: actions/register.php:230 -msgid "Password must be 6 or more characters." +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" msgstr "" -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." msgstr "" -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" msgstr "" -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" msgstr "" -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/showstream.php:154 -msgid "Send a message" +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." msgstr "" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." msgstr "" -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" +#: actions/emailsettings.php:195 actions/imsettings.php:163 +#: actions/othersettings.php:126 actions/profilesettings.php:167 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" msgstr "" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." msgstr "" -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" +#: actions/emailsettings.php:319 +msgid "No email address." msgstr "" -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" msgstr "" -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" +#: actions/emailsettings.php:330 +msgid "Not a valid email address" msgstr "" -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." +#: actions/emailsettings.php:333 +msgid "That is already your email address." msgstr "" -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." +#: actions/emailsettings.php:336 +msgid "That email address already belongs to another user." msgstr "" -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "無法輸入確認碼" -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." +#: actions/emailsettings.php:358 +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 "" -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." msgstr "" -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" +#: actions/emailsettings.php:382 actions/imsettings.php:355 +msgid "That is the wrong IM address." msgstr "" -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "確認取消" -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" +#: actions/emailsettings.php:412 +msgid "That is not your email address." msgstr "" -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." msgstr "" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." msgstr "" -#: actions/twittersettings.php:63 -msgid "Twitter Username" +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." msgstr "" -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." msgstr "" -#: actions/twittersettings.php:67 -msgid "Twitter Password" +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." msgstr "" -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" +#: actions/favorited.php:65 lib/popularnoticesection.php:87 +#: lib/publicgroupnav.php:93 +#, fuzzy +msgid "Popular notices" +msgstr "無此通知" -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "無此通知" -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." msgstr "" -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" +#: 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/twittersettings.php:137 +#: actions/favorited.php:156 #, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" msgstr "" -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" msgstr "" -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "&s的微型部落格" -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." +#: actions/favor.php:79 +msgid "This notice is already a favorite!" msgstr "" -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" msgstr "" -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" msgstr "" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" msgstr "" -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新訊息" -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新訊息" -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" +#: actions/file.php:42 +msgid "No attachments" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" +#: actions/file.php:51 +msgid "No uploaded attachments" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." msgstr "" -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" msgstr "" -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" +#: actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." msgstr "" -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "無法轉換請求標記以致無法存取標記" -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "更新遠端個人資料發生錯誤" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/leavegroup.php:83 +#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "無此通知" -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "無此通知" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "無此通知" -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" +#: actions/groupblock.php:95 +msgid "User is already blocked from group." msgstr "" -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" +#: actions/groupblock.php:100 +msgid "User is not a member of group." msgstr "" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" +#: actions/groupblock.php:136 actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "無此使用者" -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 +#: actions/groupblock.php:155 #, php-format -msgid "Unsubscribed from %s" +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." msgstr "" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." +#: actions/groupbyid.php:74 +msgid "No ID" msgstr "" -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." +#: actions/groupdesignsettings.php:141 +msgid "Group design" msgstr "" -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." +#: actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "" -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" +#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 +#: lib/designsettings.php:434 lib/designsettings.php:464 +#, fuzzy +msgid "Couldn't update your design." +msgstr "無法更新使用者" -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings!" msgstr "" -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." +#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 +msgid "Design preferences saved." msgstr "" -#: lib/gallery.php:46 -msgid "User without matching profile in system." +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" msgstr "" -#: lib/mail.php:147 lib/mail.php:289 +#: actions/grouplogo.php:150 #, php-format msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +#: actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "更新個人圖像" -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "無法上傳個人圖像" -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#: actions/groupmembers.php:96 #, php-format -msgid "%s's favorite notices" +msgid "%s group members, page %d" msgstr "" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." msgstr "" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" +#: actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" msgstr "" -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" +#: actions/groupmembers.php:346 lib/blockform.php:153 +msgid "Block" msgstr "" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" +#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153 +#, fuzzy +msgid "Block this user" +msgstr "無此使用者" -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" +#: actions/groupmembers.php:441 +msgid "Make user an admin of the group" msgstr "" -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" +#: actions/groupmembers.php:473 +msgid "Make Admin" msgstr "" -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" +#: actions/groupmembers.php:473 +msgid "Make this user an admin" msgstr "" -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "&s的微型部落格" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." +#: actions/groupsearch.php:52 +#, php-format +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 "" -#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 -#: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format -msgid "%s and friends, page %d" -msgstr "%s與好友" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." +#: actions/groupsearch.php:58 +msgid "Group search" msgstr "" -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 #, fuzzy -msgid "Avatar settings" -msgstr "線上即時通設定" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" +msgid "No results." +msgstr "無結果" -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." msgstr "" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" msgstr "" -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " +#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81 +#: lib/subgroupnav.php:98 +msgid "Groups" msgstr "" -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 actions/avatarsettings.php:322 -msgid "Pick a square area of the image to be your avatar" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" msgstr "" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 actions/avatarsettings.php:337 -msgid "Lost our file data." +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" msgstr "" -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 #, fuzzy -msgid "Lost our file." -msgstr "無此通知" - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" +msgid "Create a new group" +msgstr "新增帳號" -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." msgstr "" -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." msgstr "" -#: actions/block.php:111 actions/block.php:134 +#: actions/groupunblock.php:128 actions/unblock.php:108 #, fuzzy -msgid "Block user" -msgstr "無此使用者" +msgid "Error removing the block." +msgstr "儲存使用者發生錯誤" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" +#: actions/imsettings.php:59 +msgid "IM Settings" +msgstr "線上即時通設定" -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." msgstr "" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "個人首頁位址錯誤" -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "" +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "目前已確認的Jabber/Gtalk地址" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " +#: actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" msgstr "" +"等待確認此信箱。看看你的Jabber/GTalk是否有訊息指示下一步動作。(你加入%s到你的" +"好友清單了嗎?)" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" +#: actions/imsettings.php:124 +msgid "IM Address" +msgstr "線上即時通信箱" -#: actions/editgroup.php:54 actions/editgroup.php:56 +#: actions/imsettings.php:126 #, php-format -msgid "Edit %s group" +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." msgstr "" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy -msgid "No nickname" -msgstr "無暱稱" - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy -msgid "No such group" -msgstr "無此通知" - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy -msgid "Nickname must have only lowercase letters " -msgstr "暱稱請用小寫字母或數字,勿加空格。" +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "查無此Jabber ID" -#: actions/editgroup.php:198 actions/newgroup.php:149 -#: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy -msgid "description is too long (max 140 chars)." -msgstr "自我介紹過長(共140個字元)" +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "此JabberID錯誤" -#: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy -msgid "Could not update group." -msgstr "無法更新使用者" +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "此JabberID無效" -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." msgstr "" -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format -msgid "Awaiting confirmation on this address. " -msgstr "確認碼發生錯誤" +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "此Jabber ID已有人使用" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" -#: actions/emailsettings.php:157 -msgid "Send me email when someone " +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" msgstr "" -#: actions/emailsettings.php:321 -#, fuzzy -msgid "That email address already belongs " -msgstr "此電子信箱已註冊過了" +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" -#: actions/emailsettings.php:343 -#, fuzzy -msgid "A confirmation code was sent to the email address you added. " -msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" +#: actions/invite.php:39 +msgid "Invites have been disabled." msgstr "" -#: actions/facebookhome.php:196 +#: actions/invite.php:41 #, php-format -msgid "If you would like the %s app to automatically update " +msgid "You must be logged in to invite other users to use %s" msgstr "" -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#: actions/invite.php:72 #, php-format -msgid "Allow %s to update my Facebook status" +msgid "Invalid email address: %s" msgstr "" -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" +#: actions/invite.php:110 +msgid "Invitation(s) sent" msgstr "" -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -#, fuzzy -msgid "No notice content!" -msgstr "無內容" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" +#: actions/invite.php:112 +msgid "Invite new users" msgstr "" -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" msgstr "" -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -#, fuzzy -msgid "Before" -msgstr "之前的內容»" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#: actions/invite.php:131 actions/invite.php:139 #, php-format -msgid "Thanks for inviting your friends to use %s" +msgid "%s (%s)" msgstr "" -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "" -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" msgstr "" -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, fuzzy, php-format -msgid "Invite your friends to use %s" -msgstr "發送給%s好友的訂閱" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" msgstr "" -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -#: actions/facebookremove.php:56 -#, fuzzy -msgid "Couldn't remove Facebook user." -msgstr "無法更新使用者" - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" +#: actions/invite.php:187 +msgid "Email addresses" msgstr "" -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" msgstr "" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." +#: actions/invite.php:192 +msgid "Personal message" msgstr "" -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." msgstr "" -#: actions/facebooksettings.php:106 -msgid "Prefix" +#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208 +msgid "Send" msgstr "" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." +#: actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/facebooksettings.php:124 +#: actions/invite.php:228 #, php-format -msgid "If you would like %s to automatically update " +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" msgstr "" -#: actions/facebooksettings.php:147 -msgid "Sync preferences" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" +#: actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -#, fuzzy -msgid "Popular notices" -msgstr "無此通知" - -#: actions/favorited.php:67 +#: actions/joingroup.php:128 lib/command.php:234 #, fuzzy, php-format -msgid "Popular notices, page %d" -msgstr "無此通知" +msgid "Could not join user %s to group %s" +msgstr "無法連結到伺服器:%s" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." +#: actions/joingroup.php:135 lib/command.php:239 +#, php-format +msgid "%s joined group %s" msgstr "" -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." msgstr "" -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" +#: actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." msgstr "" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." msgstr "" -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "無法從 %s 建立OpenID" -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" msgstr "" -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" +#: actions/login.php:79 actions/register.php:137 +msgid "Already logged in." +msgstr "已登入" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." +#: actions/login.php:110 actions/login.php:120 +msgid "Invalid or expired token." msgstr "" -#: actions/grouplogo.php:448 actions/grouplogo.php:401 -#: actions/grouplogo.php:396 -#, fuzzy -msgid "Logo updated." -msgstr "更新個人圖像" +#: actions/login.php:143 +msgid "Incorrect username or password." +msgstr "使用者名稱或密碼錯誤" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -#, fuzzy -msgid "Failed updating logo." -msgstr "無法上傳個人圖像" +#: actions/login.php:149 actions/recoverpassword.php:375 +#: actions/register.php:248 +msgid "Error setting user." +msgstr "使用者設定發生錯誤" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" +#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: lib/logingroupnav.php:79 +msgid "Login" +msgstr "登入" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" +#: actions/login.php:243 +msgid "Login to site" msgstr "" -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" +#: actions/login.php:246 actions/profilesettings.php:106 +#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94 +#: lib/groupeditform.php:152 lib/userprofile.php:131 +msgid "Nickname" +msgstr "暱稱" -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" +#: actions/login.php:249 actions/register.php:428 +#: lib/accountsettingsaction.php:114 +msgid "Password" msgstr "" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" +#: actions/login.php:252 actions/register.php:477 +msgid "Remember me" msgstr "" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" +#: actions/login.php:253 actions/register.php:479 +msgid "Automatically login in the future; not for shared computers!" +msgstr "未來在同一部電腦自動登入" -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy -msgid "Create a new group" -msgstr "新增帳號" +#: actions/login.php:263 +msgid "Lost or forgotten password?" +msgstr "遺失或忘記密碼了嗎?" -#: actions/groupsearch.php:57 -#, php-format +#: actions/login.php:282 msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" +#: actions/login.php:286 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." msgstr "" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." msgstr "" -#: actions/imsettings.php:120 +#: actions/makeadmin.php:95 #, php-format -msgid "Jabber or GTalk address, " +msgid "%s is already an admin for group \"%s\"." msgstr "" -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" msgstr "" -#: actions/imsettings.php:321 -#, fuzzy, php-format -msgid "A confirmation code was sent " -msgstr "無確認碼" - -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" msgstr "" -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" +#: actions/microsummary.php:69 +msgid "No current status" msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "無法連結到伺服器:%s" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." msgstr "" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" msgstr "" -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367 +msgid "You can't send a message to this user." msgstr "" -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -#, fuzzy -msgid "No such group." -msgstr "無此通知" +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351 +#: lib/command.php:424 +msgid "No content!" +msgstr "無內容" -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." +#: actions/newmessage.php:158 +msgid "No recipient specified." msgstr "" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." +#: actions/newmessage.php:181 +msgid "Message sent" msgstr "" -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" -msgstr "無法從 %s 建立OpenID" - -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 +#: actions/newmessage.php:185 lib/command.php:375 #, php-format -msgid "%s left group %s" +msgid "Direct message to %s sent" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 actions/login.php:243 -msgid "Login to site" +#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170 +msgid "Ajax Error" msgstr "" -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "新訊息" -#: actions/newgroup.php:53 -msgid "New group" +#: actions/newnotice.php:199 +msgid "Notice posted" msgstr "" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "" -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy -msgid "Could not create group." -msgstr "無法存取個人圖像資料" +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "" -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy -msgid "Could not set group membership." -msgstr "註冊失敗" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "搜尋 \"%s\"相關資料" -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" msgstr "" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "" +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "&s的微型部落格" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "所有符合 \"%s\"的更新" #: actions/nudge.php:85 msgid "" @@ -4499,12 +1769,35 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s的狀態是%2$s" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "連結" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963 +#: lib/api.php:991 lib/api.php:1101 +msgid "Not a supported data format." +msgstr "" + +#: actions/opensearch.php:64 +msgid "People Search" msgstr "" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " +#: actions/opensearch.php:67 +msgid "Notice Search" msgstr "" #: actions/othersettings.php:60 @@ -4516,2335 +1809,2307 @@ msgstr "線上即時通設定" msgid "Manage various other options." msgstr "" -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - -#: actions/othersettings.php:112 -msgid "Service" +#: actions/othersettings.php:117 +msgid "Shorten URLs with" msgstr "" -#: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + #: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "地點過長(共255個字)" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "更改密碼" + #: actions/passwordsettings.php:69 #, fuzzy msgid "Change your password." msgstr "更改密碼" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "" -#: actions/peopletag.php:35 actions/peopletag.php:70 +#: actions/passwordsettings.php:103 +msgid "Old password" +msgstr "" + +#: actions/passwordsettings.php:107 actions/recoverpassword.php:235 +msgid "New password" +msgstr "新密碼" + +#: actions/passwordsettings.php:108 +msgid "6 or more characters" +msgstr "6個以上字元" + +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:432 actions/smssettings.php:134 +msgid "Confirm" +msgstr "確認" + +#: actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "" + +#: actions/passwordsettings.php:116 +msgid "Change" +msgstr "更改" + +#: actions/passwordsettings.php:153 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/passwordsettings.php:156 actions/register.php:233 +msgid "Passwords don't match." +msgstr "" + +#: actions/passwordsettings.php:164 +msgid "Incorrect old password" +msgstr "舊密碼錯誤" + +#: actions/passwordsettings.php:180 +msgid "Error saving user; invalid." +msgstr "儲存使用者發生錯誤;使用者名稱無效" + +#: actions/passwordsettings.php:185 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "無法存取新密碼" + +#: actions/passwordsettings.php:191 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "" + +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "" + +#: actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "此信箱無效" -#: actions/peopletag.php:47 actions/peopletag.php:144 +#: actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" -#: actions/peopletag.php:91 +#: actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "" + +#: actions/postnotice.php:90 #, php-format -msgid "These are users who have tagged themselves \"%s\" " +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" +#: actions/profilesettings.php:60 +msgid "Profile settings" msgstr "" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 +#: actions/profilesettings.php:71 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"You can update your personal profile info here so people know more about you." msgstr "" -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "" + +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" + +#: actions/profilesettings.php:111 actions/register.php:447 +#: actions/showgroup.php:247 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "全名" + +#: actions/profilesettings.php:115 actions/register.php:452 +#: lib/groupeditform.php:161 +msgid "Homepage" +msgstr "個人首頁" + +#: actions/profilesettings.php:117 actions/register.php:454 +msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 +#: actions/profilesettings.php:122 actions/register.php:460 #, fuzzy, php-format -msgid "Invalid tag: \"%s\"" -msgstr "個人首頁連結%s無效" +msgid "Describe yourself and your interests in %d chars" +msgstr "請在140個字以內描述你自己與你的興趣" -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 +#: actions/profilesettings.php:125 actions/register.php:463 #, fuzzy -msgid "Couldn't save tags." -msgstr "無法儲存個人資料" +msgid "Describe yourself and your interests" +msgstr "請在140個字以內描述你自己與你的興趣" -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "" +#: actions/profilesettings.php:127 actions/register.php:465 +msgid "Bio" +msgstr "自我介紹" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" +#: actions/profilesettings.php:132 actions/register.php:470 +#: actions/showgroup.php:256 actions/tagother.php:112 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "地點" -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +#: actions/profilesettings.php:134 actions/register.php:472 +msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" +#: actions/profilesettings.php:138 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" msgstr "" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" +#: actions/profilesettings.php:144 +msgid "Language" msgstr "" -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 actions/register.php:85 actions/register.php:189 -#: actions/register.php:404 -msgid "Sorry, only invited people can register." +#: actions/profilesettings.php:145 +msgid "Preferred language" msgstr "" -#: actions/register.php:149 -msgid "You can't register if you don't " +#: actions/profilesettings.php:154 +msgid "Timezone" msgstr "" -#: actions/register.php:286 -msgid "With this form you can create " +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" msgstr "" -#: actions/register.php:368 -#, fuzzy -msgid "1-64 lowercase letters or numbers, " -msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " +#: actions/profilesettings.php:221 actions/register.php:223 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" + +#: actions/profilesettings.php:228 +msgid "Timezone not selected." msgstr "" -#: actions/register.php:398 -msgid "URL of your homepage, blog, " +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." msgstr "" -#: actions/register.php:404 -#, fuzzy -msgid "Describe yourself and your " -msgstr "請在140個字以內描述你自己與你的興趣" +#: actions/profilesettings.php:246 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "個人首頁連結%s無效" -#: actions/register.php:410 -msgid "Where you are, like \"City, " +#: actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." msgstr "" -#: actions/register.php:432 +#: actions/profilesettings.php:328 +msgid "Couldn't save profile." +msgstr "無法儲存個人資料" + +#: actions/profilesettings.php:336 #, fuzzy -msgid " except this private data: password, " -msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" +msgid "Couldn't save tags." +msgstr "無法儲存個人資料" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +#: actions/profilesettings.php:344 +msgid "Settings saved." msgstr "" -#: actions/register.php:495 -msgid "(You should receive a message by email " +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" msgstr "" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." +#: actions/public.php:92 +msgid "Could not retrieve public stream." msgstr "" -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 +#: actions/public.php:129 #, php-format -msgid "Replies to %s, page %d" +msgid "Public timeline, page %d" msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" +#: actions/public.php:131 lib/publicgroupnav.php:79 +msgid "Public timeline" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" +#: actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" +#: actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 +#: actions/public.php:159 #, fuzzy -msgid "Group profile" -msgstr "無此通知" - -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 lib/userprofile.php:177 -msgid "URL" -msgstr "" +msgid "Public Stream Feed (Atom)" +msgstr "%s的公開內容" -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 lib/userprofile.php:194 -msgid "Note" +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." msgstr "" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" +#: actions/public.php:182 +msgid "Be the first to post!" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:304 +#: actions/public.php:186 #, php-format -msgid "Notice feed for %s group" -msgstr "" - -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -#, fuzzy -msgid "Members" -msgstr "何時加入會員的呢?" - -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" +#: actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/showgroup.php:378 +#: actions/public.php:238 #, php-format msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." msgstr "" -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" msgstr "" -#: actions/showstream.php:73 actions/showstream.php:78 -#: actions/showstream.php:79 +#: actions/publictagcloud.php:63 #, php-format -msgid "%s, page %d" +msgid "These are most popular recent tags on %s " msgstr "" -#: actions/showstream.php:143 -#, fuzzy -msgid "'s profile" -msgstr "無此通知" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 lib/userprofile.php:75 -#, fuzzy -msgid "User profile" -msgstr "無此通知" +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 lib/userprofile.php:102 -msgid "Photo" +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" msgstr "" -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -#: lib/userprofile.php:236 -msgid "User actions" +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" msgstr "" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 lib/userprofile.php:272 -msgid "Send a direct message to this user" +#: actions/publictagcloud.php:135 +msgid "Tag cloud" msgstr "" -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 lib/userprofile.php:273 -msgid "Message" +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" msgstr "" -#: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy -msgid "All subscribers" -msgstr "所有訂閱" +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "無此恢復碼" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "此恢復碼錯誤" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." msgstr "" -#: actions/smssettings.php:128 -#, fuzzy -msgid "Phone number, no punctuation or spaces, " -msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "確認碼發生錯誤" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." msgstr "" -#: actions/smssettings.php:335 -#, fuzzy -msgid "A confirmation code was sent to the phone number you added. " -msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." msgstr "" -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " msgstr "" -#: actions/subedit.php:83 -#, fuzzy -msgid "Could not save subscription." -msgstr "註冊失敗" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "" -#: actions/subscribe.php:55 -#, fuzzy -msgid "Not a local user." -msgstr "無此使用者" +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" -#: actions/subscribe.php:69 -#, fuzzy -msgid "Subscribed" -msgstr "此帳號已註冊" +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" -#: actions/subscribers.php:50 -#, fuzzy, php-format -msgid "%s subscribers" -msgstr "此帳號已註冊" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" +#: actions/recoverpassword.php:208 +msgid "Reset password" msgstr "" -#: actions/subscribers.php:63 -msgid "These are the people who listen to " +#: actions/recoverpassword.php:209 +msgid "Recover password" msgstr "" -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" msgstr "" -#: actions/subscriptions.php:52 -#, fuzzy, php-format -msgid "%s subscriptions" -msgstr "所有訂閱" +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" -#: actions/subscriptions.php:54 -#, fuzzy, php-format -msgid "%s subscriptions, page %d" -msgstr "所有訂閱" +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6個或6個以上字元,別忘了自己密碼喔" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " +#: actions/recoverpassword.php:240 +msgid "Same as password above" msgstr "" -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " +#: actions/recoverpassword.php:243 +msgid "Reset" msgstr "" -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy -msgid "Jabber" -msgstr "查無此Jabber ID" - -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format -msgid "Notices tagged with %s, page %d" -msgstr "&s的微型部落格" +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "請輸入暱稱或電子信箱" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." msgstr "" -#: actions/tagother.php:33 -#, fuzzy -msgid "Not logged in" -msgstr "已登入" +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "查無此使用者所註冊的信箱" -#: actions/tagother.php:39 -#, fuzzy -msgid "No id argument." -msgstr "無此文件" +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "儲存信箱確認發生錯誤" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "我們已寄出一封信到你帳號中的信箱,告訴你如何取回你的密碼。" -#: actions/tagother.php:141 -msgid "Tag user" +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." msgstr "" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." msgstr "" -#: actions/tagother.php:164 -msgid "There was a problem with your session token." +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." msgstr "" -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "新密碼已儲存成功。你已登入。" + +#: actions/register.php:85 actions/register.php:189 actions/register.php:404 +msgid "Sorry, only invited people can register." msgstr "" -#: actions/tagother.php:198 actions/tagother.php:200 +#: actions/register.php:92 #, fuzzy -msgid "Could not save tags." -msgstr "無法存取個人圖像資料" +msgid "Sorry, invalid invitation code." +msgstr "確認碼發生錯誤" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#: actions/register.php:112 +msgid "Registration successful" msgstr "" -#: actions/tagrss.php:35 -#, fuzzy -msgid "No such tag." -msgstr "無此通知" - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Microblog tagged with %s" -msgstr "&s的微型部落格" +#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." +#: actions/register.php:135 +msgid "Registration not allowed." msgstr "" -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." msgstr "" -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "目前無請求" +#: actions/register.php:201 +msgid "Not a valid email address." +msgstr "此信箱無效" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "此電子信箱已註冊過了" + +#: actions/register.php:243 actions/register.php:264 +msgid "Invalid username or password." +msgstr "使用者名稱或密碼無效" -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" +#: actions/register.php:342 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " msgstr "" -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy -msgid "Twitter password" -msgstr "新密碼" +#: actions/register.php:424 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" +#: actions/register.php:429 +msgid "6 or more characters. Required." msgstr "" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " +#: actions/register.php:433 +msgid "Same as password above. Required." msgstr "" -#: actions/twittersettings.php:341 -#, fuzzy, php-format -msgid "Unable to retrieve account information " -msgstr "無法取消信箱確認" +#: actions/register.php:437 actions/register.php:441 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "電子信箱" -#: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy -msgid "Error removing the block." -msgstr "儲存使用者發生錯誤" +#: actions/register.php:438 actions/register.php:442 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy -msgid "No profile id in request." -msgstr "無確認請求" +#: actions/register.php:449 +msgid "Longer name, preferably your \"real\" name" +msgstr "" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." +#: actions/register.php:493 +msgid "My text and files are available under " +msgstr "" + +#: actions/register.php:495 +msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +#: actions/register.php:496 #, fuzzy -msgid "Unsubscribed" -msgstr "此帳號已註冊" +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 +#: actions/register.php:537 #, php-format -msgid "%s groups" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" +#: actions/register.php:561 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" msgstr "" -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -#, fuzzy -msgid "Problem saving notice. Unknown user." -msgstr "儲存使用者發生錯誤" - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 +#: actions/remotesubscribe.php:98 +#, php-format msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" msgstr "" -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy -msgid "Upload an avatar" -msgstr "無法上傳個人圖像" - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" +#: actions/remotesubscribe.php:129 +msgid "User nickname" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "你想成為誰的粉絲呢?請輸入他/她的暱稱。" + +#: actions/remotesubscribe.php:133 +msgid "Profile URL" msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:321 +msgid "Subscribe" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "個人資料連結無效(格式錯誤)" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#: actions/remotesubscribe.php:183 #, fuzzy -msgid "Account" -msgstr "關於" +msgid "Couldn’t get a request token." +msgstr "無法取得轉換標記" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" +#: actions/replies.php:125 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" msgstr "" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "發送給%s好友的訂閱" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "發送給%s好友的訂閱" + +#: actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy -msgid "Create an account" -msgstr "新增帳號" +#: actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" -#: lib/action.php:341 lib/action.php:418 -#, fuzzy -msgid "Login with OpenID" -msgstr "無此OpenID" +#: actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy -msgid "Help me!" -msgstr "求救" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "&s的微型部落格" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy -msgid "Site notice" -msgstr "新訊息" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "無此通知" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy -msgid "Page notice" -msgstr "新訊息" +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "發送給%s好友的訂閱" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "" +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "發送給%s好友的訂閱" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " +#: actions/showfavorites.php:205 +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 "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." +#: actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -#, fuzzy -msgid "Block this user" -msgstr "無此使用者" - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" +#: actions/showfavorites.php:242 +msgid "This is a way to share what you like." msgstr "" -#: lib/facebookaction.php:268 +#: actions/showgroup.php:82 lib/groupnav.php:85 #, php-format -msgid "To use the %s Facebook Application you need to login " +msgid "%s group" msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -#, fuzzy -msgid " a new account." -msgstr "新增帳號" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" +#: actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 +#: actions/showgroup.php:218 #, fuzzy -msgid "Favor this notice" +msgid "Group profile" msgstr "無此通知" -#: lib/feedlist.php:64 -msgid "Export data" +#: actions/showgroup.php:263 actions/tagother.php:118 +#: actions/userauthorization.php:167 lib/userprofile.php:177 +msgid "URL" msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" +#: actions/showgroup.php:274 actions/tagother.php:128 +#: actions/userauthorization.php:179 lib/userprofile.php:194 +msgid "Note" msgstr "" -#: lib/galleryaction.php:131 -msgid "All" +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" msgstr "" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" +#: actions/showgroup.php:293 +msgid "Group actions" msgstr "" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#: actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" +#: actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" +#: actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" msgstr "" -#: lib/groupeditform.php:151 lib/groupeditform.php:166 -#: lib/groupeditform.php:172 -#, fuzzy -msgid "Description" -msgstr "所有訂閱" +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "無此通知" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 +#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90 #, fuzzy -msgid "Describe the group or topic in 140 chars" -msgstr "請在140個字以內描述你自己與你的興趣" +msgid "Members" +msgstr "何時加入會員的呢?" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +#: actions/showgroup.php:386 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95 +#: lib/tagcloudsection.php:71 +msgid "(None)" msgstr "" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" +#: actions/showgroup.php:392 +msgid "All members" msgstr "" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" +#: actions/showgroup.php:429 lib/profileaction.php:173 +msgid "Statistics" msgstr "" -#: lib/groupnav.php:101 lib/groupnav.php:107 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "新增" + +#: actions/showgroup.php:448 #, php-format -msgid "Edit %s group properties" +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 "" -#: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy -msgid "Logo" -msgstr "登出" - -#: lib/groupnav.php:107 lib/groupnav.php:113 +#: actions/showgroup.php:454 #, php-format -msgid "Add or edit %s logo" +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 "" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" +#: actions/showgroup.php:482 +msgid "Admins" msgstr "" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +#: actions/showmessage.php:81 +msgid "No such message." msgstr "" -#: lib/grouptagcloudsection.php:56 +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:108 #, php-format -msgid "Tags in %s group's notices" +msgid "Message to %1$s on %2$s" msgstr "" -#: lib/htmloutputter.php:104 -#, fuzzy -msgid "This page is not available in a " -msgstr "個人首頁位址錯誤" +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" -#: lib/joinform.php:114 +#: actions/shownotice.php:90 #, fuzzy -msgid "Join" -msgstr "登入" +msgid "Notice deleted." +msgstr "更新個人圖像" -#: lib/leaveform.php:114 -msgid "Leave" +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" msgstr "" -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy -msgid "Login with a username and password" -msgstr "使用者名稱或密碼無效" - -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy -msgid "Sign up for a new account" -msgstr "新增帳號" +#: actions/showstream.php:79 +#, php-format +msgid "%s, page %d" +msgstr "" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" +#: actions/showstream.php:122 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "" -#: lib/mail.php:175 +#: actions/showstream.php:129 #, php-format -msgid "" -"Hey, %s.\n" -"\n" +msgid "Notice feed for %s (RSS 1.0)" msgstr "" -#: lib/mail.php:236 -#, fuzzy, php-format -msgid "%1$s is now listening to " -msgstr "現在%1$s在%2$s成為你的粉絲囉" +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" -#: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format -msgid "Location: %s\n" -msgstr "地點" +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" -#: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format -msgid "Homepage: %s\n" -msgstr "個人首頁" +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "" -#: lib/mail.php:258 lib/mail.php:257 +#: actions/showstream.php:191 #, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:196 msgid "" -"Bio: %s\n" -"\n" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" msgstr "" -#: lib/mail.php:461 lib/mail.php:462 +#: actions/showstream.php:198 #, php-format -msgid "You've been nudged by %s" +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: lib/mail.php:465 +#: actions/showstream.php:234 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: lib/mail.php:555 -#, fuzzy, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "現在%1$s在%2$s成為你的粉絲囉" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" +#: actions/showstream.php:239 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" +#: actions/smssettings.php:58 +msgid "SMS Settings" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy -msgid "Send a notice" -msgstr "新訊息" +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 -#: lib/noticeform.php:173 +#: actions/smssettings.php:91 #, fuzzy -msgid "Available characters" -msgstr "6個以上字元" +msgid "SMS is not available." +msgstr "個人首頁位址錯誤" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." msgstr "" -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" +#: actions/smssettings.php:130 +msgid "Confirmation code" msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." msgstr "" -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" +#: actions/smssettings.php:138 +msgid "SMS Phone number" msgstr "" -#: lib/nudgeform.php:116 -msgid "Nudge this user" +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: lib/nudgeform.php:128 -msgid "Nudge" +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." msgstr "" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +#: actions/smssettings.php:306 +msgid "No phone number." msgstr "" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" +#: actions/smssettings.php:311 +msgid "No carrier selected." msgstr "" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" +#: actions/smssettings.php:318 +msgid "That is already your phone number." msgstr "" -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." msgstr "" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" +#: actions/smssettings.php:347 +#, fuzzy +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 "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" + +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." msgstr "" -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" +#: actions/smssettings.php:405 +msgid "That is not your phone number." msgstr "" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" +#: actions/smssettings.php:465 +msgid "Mobile carrier" msgstr "" -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" +#: actions/smssettings.php:469 +msgid "Select a carrier" msgstr "" -#: lib/searchgroupnav.php:82 -#, fuzzy -msgid "Notice" -msgstr "新訊息" +#: actions/smssettings.php:476 +#, php-format +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 "" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" +#: actions/smssettings.php:498 +msgid "No code entered" msgstr "" -#: lib/section.php:89 -msgid "Untitled section" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." msgstr "" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "無此訂閱" +#: actions/subedit.php:83 +#, fuzzy +msgid "Could not save subscription." +msgstr "註冊失敗" + +#: actions/subscribe.php:55 +#, fuzzy +msgid "Not a local user." +msgstr "無此使用者" + +#: actions/subscribe.php:69 +#, fuzzy +msgid "Subscribed" +msgstr "此帳號已註冊" -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#: actions/subscribers.php:50 #, fuzzy, php-format -msgid "People subscribed to %s" +msgid "%s subscribers" msgstr "此帳號已註冊" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#: actions/subscribers.php:52 #, php-format -msgid "Groups %s is a member of" +msgid "%s subscribers, page %d" msgstr "" -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." msgstr "" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -#, fuzzy -msgid "Unblock this user" -msgstr "無此使用者" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "所有訂閱" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "所有訂閱" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." msgstr "" -#: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "發送給%s好友的訂閱" +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "" -#: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "發送給%s好友的訂閱" +#: actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" -#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "發送給%s好友的訂閱" +msgid "%s is not listening to anyone." +msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#: actions/subscriptions.php:194 #, fuzzy -msgid "You and friends" -msgstr "%s與好友" +msgid "Jabber" +msgstr "查無此Jabber ID" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" msgstr "" -#: actions/avatarsettings.php:373 actions/avatarsettings.php:387 +#: actions/tagother.php:33 #, fuzzy -msgid "Avatar deleted." -msgstr "更新個人圖像" - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +msgid "Not logged in" +msgstr "已登入" -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" +#: actions/tagother.php:39 +#, fuzzy +msgid "No id argument." +msgstr "無此文件" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" msgstr "" -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:75 +#, fuzzy +msgid "User profile" +msgstr "無此通知" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, 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." +#: actions/tagother.php:81 lib/userprofile.php:102 +msgid "Photo" msgstr "" -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" +#: actions/tagother.php:141 +msgid "Tag user" msgstr "" -#: actions/facebooksettings.php:124 -#, php-format +#: actions/tagother.php:151 msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "" -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format +#: actions/tagother.php:193 msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." +#: actions/tagother.php:200 +#, fuzzy +msgid "Could not save tags." +msgstr "無法存取個人圖像資料" + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -#: actions/grouprss.php:136 actions/grouprss.php:137 +#: actions/tag.php:68 #, fuzzy, php-format -msgid "Microblog by %s group" +msgid "Notices tagged with %s, page %d" msgstr "&s的微型部落格" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#: actions/tag.php:86 #, php-format -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." +msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." +#: actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" msgstr "" -#: actions/noticesearch.php:91 -#, fuzzy, php-format -msgid "Search results for \"%s\" on %s" -msgstr "搜尋 \"%s\"相關資料" - -#: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" +#: actions/tagrss.php:35 +#, fuzzy +msgid "No such tag." +msgstr "無此通知" -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" +#: actions/twitapitrends.php:87 +msgid "API method under construction." msgstr "" -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile id in request." +msgstr "無確認請求" + +#: actions/unsubscribe.php:84 +msgid "No profile with that id." msgstr "" -#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#: actions/unsubscribe.php:98 #, fuzzy -msgid "Public Stream Feed (Atom)" -msgstr "%s的公開內容" +msgid "Unsubscribed" +msgstr "此帳號已註冊" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -#: actions/register.php:286 actions/register.php:329 -#, php-format +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "註冊確認" + +#: actions/userauthorization.php:110 msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." msgstr "" -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -#: actions/register.php:495 -msgid "Creative Commons Attribution 3.0" +#: actions/userauthorization.php:188 +msgid "License" msgstr "" -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#: actions/register.php:496 -#, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" +#: actions/userauthorization.php:209 +msgid "Accept" +msgstr "接受" -#: actions/showgroup.php:378 actions/showgroup.php:424 -#: actions/showgroup.php:432 -#, fuzzy -msgid "Created" -msgstr "新增" +#: actions/userauthorization.php:210 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, 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%%%%))" +#: actions/userauthorization.php:211 +msgid "Reject" msgstr "" -#: actions/showstream.php:147 +#: actions/userauthorization.php:212 #, fuzzy -msgid "Your profile" -msgstr "無此通知" +msgid "Reject this subscription" +msgstr "所有訂閱" -#: actions/showstream.php:149 -#, fuzzy, php-format -msgid "%s's profile" -msgstr "無此通知" +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "無確認請求" -#: actions/showstream.php:163 actions/showstream.php:128 -#: actions/showstream.php:129 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" +#: actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "" -#: actions/showstream.php:170 actions/showstream.php:135 -#: actions/showstream.php:136 +#: actions/userauthorization.php:296 #, php-format -msgid "Notice feed for %s (RSS 2.0)" +msgid "Listener URI ‘%s’ not found here" msgstr "" -#: actions/showstream.php:177 actions/showstream.php:142 -#: actions/showstream.php:143 +#: actions/userauthorization.php:301 #, php-format -msgid "Notice feed for %s (Atom)" +msgid "Listenee URI ‘%s’ is too long." msgstr "" -#: actions/showstream.php:182 actions/showstream.php:147 -#: actions/showstream.php:148 +#: actions/userauthorization.php:307 #, php-format -msgid "FOAF for %s" +msgid "Listenee URI ‘%s’ is a local user." msgstr "" -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 lib/userprofile.php:116 -#, fuzzy -msgid "Edit Avatar" -msgstr "個人圖像" - -#: actions/showstream.php:316 actions/showstream.php:281 -#: actions/showstream.php:366 lib/userprofile.php:248 -#, fuzzy -msgid "Edit profile settings" -msgstr "線上即時通設定" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 lib/userprofile.php:249 -msgid "Edit" +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 actions/showstream.php:234 +#: actions/userauthorization.php:338 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy -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 "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "無法讀取此%sURL的圖像" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 +#: actions/userauthorization.php:348 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" +msgid "Wrong image type for avatar URL ‘%s’." msgstr "" -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#: actions/apiaccountupdateprofileimage.php:91 -#: actions/apiaccountupdateprofileimage.php:105 -#: actions/apistatusesupdate.php:139 -#, fuzzy -msgid "No such user!" -msgstr "無此使用者" - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." +#: actions/userbyid.php:70 +msgid "No id." msgstr "" -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "無法取消信箱確認" - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" msgstr "" -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" msgstr "" -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" +#: actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" msgstr "" -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" +#: actions/usergroups.php:130 +msgid "Search for more groups" msgstr "" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#: actions/usergroups.php:153 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" +msgid "%s is not a member of any group." msgstr "" -#: lib/dberroraction.php:60 -msgid "Database error" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#: classes/File.php:137 +#, 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 "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" -#: lib/feed.php:85 -msgid "RSS 1.0" +#: classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: lib/feed.php:87 -msgid "RSS 2.0" +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: lib/feed.php:89 -msgid "Atom" +#: classes/Message.php:55 +msgid "Could not insert message." msgstr "" -#: lib/feed.php:91 -msgid "FOAF" +#: classes/Message.php:65 +msgid "Could not update message with new URI." msgstr "" -#: lib/imagefile.php:75 +#: classes/Notice.php:164 #, php-format -msgid "That file is too big. The maximum file size is %d." +msgid "DB error inserting hashtag: %s" msgstr "" -#: lib/mail.php:175 lib/mail.php:174 -#, php-format +#: classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "儲存使用者發生錯誤" + +#: classes/Notice.php:183 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "儲存使用者發生錯誤" + +#: classes/Notice.php:188 msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" +"Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format +#: classes/Notice.php:194 msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." msgstr "" -"現在%1$s在%2$s成為你的粉絲囉。\n" -"\n" -"\t%3$s\n" -"\n" -"\n" -"%4$s.\n" -"敬上。\n" -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." msgstr "" -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +#: classes/Notice.php:268 classes/Notice.php:293 +msgid "Problem saving notice." msgstr "" -#: lib/mail.php:598 lib/mail.php:600 +#: classes/Notice.php:1120 #, php-format -msgid "%s sent a notice to your attention" -msgstr "" +msgid "DB error inserting reply: %s" +msgstr "增加回覆時,資料庫發生錯誤: %s" -#: lib/mail.php:600 lib/mail.php:602 +#: classes/User.php:333 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" +msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" +#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109 +msgid "Profile" msgstr "" -#: lib/section.php:106 -msgid "More..." +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" msgstr "" -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." +#: lib/accountsettingsaction.php:112 +#, fuzzy +msgid "Upload an avatar" +msgstr "無法上傳個人圖像" + +#: lib/accountsettingsaction.php:115 +msgid "Change your password" msgstr "" -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." +#: lib/accountsettingsaction.php:118 +msgid "Change email handling" msgstr "" -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/accountsettingsaction.php:120 lib/groupnav.php:118 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "無此通知" + +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:124 +msgid "Other options" msgstr "" -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#: actions/showstream.php:202 +#: lib/action.php:144 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." +msgid "%s - %s" msgstr "" -#: actions/attachment.php:73 -#, fuzzy -msgid "No such attachment." -msgstr "無此文件" +#: lib/action.php:159 +msgid "Untitled page" +msgstr "" -#: actions/block.php:149 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "無法連結到伺服器:%s" +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "" -#: actions/block.php:150 -#, fuzzy -msgid "Block this user from this group" -msgstr "無此使用者" +#: lib/action.php:430 +msgid "Home" +msgstr "主頁" -#: actions/blockedfromgroup.php:90 -#, fuzzy, php-format -msgid "%s blocked profiles" -msgstr "無此通知" +#: lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" -#: actions/blockedfromgroup.php:93 -#, fuzzy, php-format -msgid "%s blocked profiles, page %d" -msgstr "%s與好友" +#: lib/action.php:432 +#, fuzzy +msgid "Account" +msgstr "關於" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." +#: lib/action.php:432 +msgid "Change your email, avatar, password, profile" msgstr "" -#: actions/blockedfromgroup.php:281 -#, fuzzy -msgid "Unblock user from group" -msgstr "無此使用者" +#: lib/action.php:435 +msgid "Connect" +msgstr "連結" -#: actions/conversation.php:99 +#: lib/action.php:435 #, fuzzy -msgid "Conversation" -msgstr "地點" +msgid "Connect to services" +msgstr "無法連結到伺服器:%s" -#: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy -msgid "Do not delete this notice" -msgstr "無此通知" +#: lib/action.php:439 lib/subgroupnav.php:105 +msgid "Invite" +msgstr "" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 +#: lib/action.php:440 lib/subgroupnav.php:106 #, php-format -msgid "Too many aliases! Maximum %d." +msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, fuzzy, php-format -msgid "Invalid alias: \"%s\"" -msgstr "個人首頁連結%s無效" - -#: actions/editgroup.php:227 actions/newgroup.php:177 -#: actions/apigroupcreate.php:321 actions/editgroup.php:228 -#: actions/newgroup.php:172 -#, fuzzy, php-format -msgid "Alias \"%s\" already in use. Try another one." -msgstr "此暱稱已有人使用。再試試看別的吧。" +#: lib/action.php:445 +msgid "Logout" +msgstr "登出" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." +#: lib/action.php:445 +msgid "Logout from the site" msgstr "" -#: actions/editgroup.php:259 actions/newgroup.php:215 -#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#: lib/action.php:450 #, fuzzy -msgid "Could not create aliases." -msgstr "無法存取個人圖像資料" +msgid "Create an account" +msgstr "新增帳號" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." +#: lib/action.php:453 +msgid "Login to the site" 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." +#: lib/action.php:456 lib/action.php:719 +msgid "Help" +msgstr "求救" + +#: lib/action.php:456 +#, fuzzy +msgid "Help me!" +msgstr "求救" + +#: lib/action.php:459 +msgid "Search" msgstr "" -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" +#: lib/action.php:459 +msgid "Search for people or text" msgstr "" -#: actions/file.php:34 +#: lib/action.php:480 #, fuzzy -msgid "No notice id" +msgid "Site notice" msgstr "新訊息" -#: actions/file.php:38 +#: lib/action.php:546 +msgid "Local views" +msgstr "" + +#: lib/action.php:612 #, fuzzy -msgid "No notice" +msgid "Page notice" msgstr "新訊息" -#: actions/file.php:42 -msgid "No attachments" +#: lib/action.php:714 +msgid "Secondary site navigation" msgstr "" -#: actions/file.php:51 -msgid "No uploaded attachments" +#: lib/action.php:721 +msgid "About" +msgstr "關於" + +#: lib/action.php:723 +msgid "FAQ" +msgstr "常見問題" + +#: lib/action.php:727 +msgid "TOS" msgstr "" -#: actions/finishopenidlogin.php:211 -#, fuzzy -msgid "Not a valid invitation code." -msgstr "此信箱無效" +#: lib/action.php:730 +msgid "Privacy" +msgstr "" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." +#: lib/action.php:732 +msgid "Source" msgstr "" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: lib/action.php:734 +msgid "Contact" +msgstr "好友名單" + +#: lib/action.php:736 +msgid "Badge" msgstr "" -#: actions/groupblock.php:95 -msgid "User is already blocked from group." +#: lib/action.php:764 +msgid "StatusNet software license" msgstr "" -#: actions/groupblock.php:100 -msgid "User is not a member of group." +#: lib/action.php:767 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " msgstr "" +"**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" +"部落格服務" -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -#, fuzzy -msgid "Block user from group" -msgstr "無此使用者" +#: lib/action.php:769 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "**%%site.name%%**是個微型部落格" -#: actions/groupblock.php:155 +#: lib/action.php:771 #, php-format msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "新訊息" + +#: lib/action.php:794 +msgid "All " msgstr "" -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." +#: lib/action.php:799 +msgid "license." msgstr "" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" +#: lib/action.php:1053 +msgid "Pagination" msgstr "" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +#: lib/action.php:1062 +msgid "After" msgstr "" -#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 -#: lib/designsettings.php:440 lib/designsettings.php:470 -#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 -#: lib/designsettings.php:461 lib/designsettings.php:434 -#: lib/designsettings.php:464 +#: lib/action.php:1070 #, fuzzy -msgid "Couldn't update your design." -msgstr "無法更新使用者" +msgid "Before" +msgstr "之前的內容»" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" +#: lib/action.php:1119 +msgid "There was a problem with your session token." msgstr "" -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." +#: lib/attachmentlist.php:87 +msgid "Attachments" msgstr "" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" +#: lib/attachmentlist.php:265 +msgid "Author" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" +#: lib/attachmentlist.php:278 +msgid "Provider" msgstr "" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" msgstr "" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy -msgid "No results." -msgstr "無結果" +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" msgstr "" -#: actions/groupsearch.php:85 +#: lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: lib/command.php:88 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" +msgid "Could not find a user with nickname %s" +msgstr "無法更新使用者" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" msgstr "" -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" msgstr "" -#: actions/invite.php:39 -msgid "Invites have been disabled." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" msgstr "" -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." +#: lib/command.php:168 lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" msgstr "" -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." +#: lib/command.php:190 +msgid "Notice marked as fave." msgstr "" -#: actions/makeadmin.php:95 +#: lib/command.php:315 #, php-format -msgid "%s is already an admin for group \"%s\"." +msgid "%1$s (%2$s)" msgstr "" -#: actions/makeadmin.php:132 +#: lib/command.php:318 #, php-format -msgid "Can't get membership record for %s in group %s" +msgid "Fullname: %s" msgstr "" -#: actions/makeadmin.php:145 +#: lib/command.php:321 #, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" +msgid "Location: %s" msgstr "" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97 -#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254 -#: lib/designsettings.php:283 +#: lib/command.php:324 #, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." +msgid "Homepage: %s" msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#: lib/command.php:327 #, php-format -msgid " Try using another %s format." +msgid "About: %s" msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format -msgid "%s is not a supported filetype on this server." +msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +#: lib/command.php:377 +msgid "Error sending direct message." msgstr "" -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" msgstr "" -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "儲存使用者發生錯誤" + +#: lib/command.php:495 +msgid "Specify the name of the user to subscribe to" msgstr "" -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." +#: lib/command.php:502 +#, php-format +msgid "Subscribed to %s" msgstr "" -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." +#: lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy -msgid "Couldn't save file." -msgstr "無法儲存個人資料" +#: lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." +#: lib/command.php:548 lib/command.php:571 +msgid "Command not yet implemented." msgstr "" -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" +#: lib/command.php:551 +msgid "Notification off." msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." +#: lib/command.php:553 +msgid "Can't turn off notification." msgstr "" -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." +#: lib/command.php:574 +msgid "Notification on." msgstr "" -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +#: lib/command.php:576 +msgid "Can't turn on notification." msgstr "" -#: actions/noticesearch.php:124 +#: lib/command.php:597 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "無法從 %s 建立OpenID" + +#: lib/command.php:602 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: actions/openidsettings.php:70 -#, php-format +#: lib/command.php:613 msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" msgstr "" -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "無確認碼" -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " msgstr "" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." msgstr "" -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#: lib/common.php:194 +msgid "Go to the installer." msgstr "" -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." +#: lib/connectsettingsaction.php:110 +msgid "IM" msgstr "" -#: actions/public.php:182 -msgid "Be the first to post!" +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" msgstr "" -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" msgstr "" -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." +#: lib/dberroraction.php:60 +msgid "Database error" msgstr "" -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +#: lib/designsettings.php:101 +msgid "Change background image" msgstr "" -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "無此通知" -#: actions/publictagcloud.php:75 -#, php-format +#: lib/designsettings.php:109 msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "" -#: actions/recoverpassword.php:152 -#, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "若忘記或遺失密碼,我們會寄新的密碼到你帳號中的信箱。" - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " +#: lib/designsettings.php:139 +msgid "On" msgstr "" -#: actions/recoverpassword.php:188 -msgid "Password recover" +#: lib/designsettings.php:155 +msgid "Off" msgstr "" -#: actions/register.php:86 actions/register.php:92 -#, fuzzy -msgid "Sorry, invalid invitation code." -msgstr "確認碼發生錯誤" - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." msgstr "" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." +#: lib/designsettings.php:161 +msgid "Tile background image" msgstr "" -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "更改密碼" -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." +#: lib/designsettings.php:178 +msgid "Background" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format -msgid "%s's favorite notices, page %d" -msgstr "無此通知" +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "連結" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -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." +#: lib/designsettings.php:204 +msgid "Sidebar" msgstr "" -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" +#: lib/designsettings.php:217 +msgid "Text" msgstr "" -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "登入" -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." +#: lib/designsettings.php:247 +msgid "Use defaults" msgstr "" -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" +#: lib/designsettings.php:248 +msgid "Restore default designs" msgstr "" -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" +#: lib/designsettings.php:254 +msgid "Reset back to default" msgstr "" -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" +#: lib/designsettings.php:257 +msgid "Save design" msgstr "" -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" +#: lib/designsettings.php:372 +msgid "Bad default color settings: " msgstr "" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, 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. " +#: lib/designsettings.php:468 +msgid "Design defaults restored." msgstr "" -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" msgstr "" -#: actions/shownotice.php:101 +#: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy -msgid "Not a local notice" -msgstr "無此使用者" - -#: actions/showstream.php:72 actions/showstream.php:73 -#, php-format -msgid " tagged %s" -msgstr "" +msgid "Favor this notice" +msgstr "無此通知" -#: actions/showstream.php:121 actions/showstream.php:122 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" +#: lib/favorform.php:140 +msgid "Favor" msgstr "" -#: actions/showstream.php:350 actions/showstream.php:444 -#: actions/showstream.php:191 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." +#: lib/feedlist.php:64 +msgid "Export data" msgstr "" -#: actions/showstream.php:355 actions/showstream.php:449 -#: actions/showstream.php:196 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" +#: lib/feed.php:85 +msgid "RSS 1.0" msgstr "" -#: actions/showstream.php:357 actions/showstream.php:451 -#: actions/showstream.php:198 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." +#: lib/feed.php:87 +msgid "RSS 2.0" msgstr "" -#: actions/showstream.php:393 actions/showstream.php:492 -#: actions/showstream.php:239 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +#: lib/feed.php:89 +msgid "Atom" msgstr "" -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" +#: lib/feed.php:91 +msgid "FOAF" msgstr "" -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" +#: lib/galleryaction.php:121 +msgid "Filter tags" msgstr "" -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" +#: lib/galleryaction.php:131 +msgid "All" msgstr "" -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +#: lib/galleryaction.php:139 +msgid "Select tag to filter" msgstr "" -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format -msgid "%s is not listening to anyone." -msgstr "現在%1$s在%2$s成為你的粉絲囉" - -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" +#: lib/galleryaction.php:140 +msgid "Tag" msgstr "" -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" msgstr "" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" +#: lib/galleryaction.php:143 +msgid "Go" msgstr "" -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 -#: actions/apifriendshipsshow.php:135 +#: lib/groupeditform.php:168 #, fuzzy -msgid "Could not determine source user." -msgstr "無法更新使用者" +msgid "Describe the group or topic" +msgstr "請在140個字以內描述你自己與你的興趣" -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "請在140個字以內描述你自己與你的興趣" -#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#: lib/groupeditform.php:172 #, fuzzy -msgid "Could not find target user." -msgstr "無法更新使用者" - -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s的狀態是%2$s" +msgid "Description" +msgstr "所有訂閱" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, fuzzy, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "&s的微型部落格" +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" msgstr "" -#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#: lib/groupnav.php:100 #, fuzzy -msgid "Reject this subscription" -msgstr "所有訂閱" +msgid "Blocked" +msgstr "無此使用者" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "" +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "無此使用者" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." +#: lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" msgstr "" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" +#: lib/groupnav.php:112 +#, fuzzy +msgid "Logo" +msgstr "登出" -#: actions/usergroups.php:153 +#: lib/groupnav.php:113 #, php-format -msgid "%s is not a member of any group." +msgid "Add or edit %s logo" msgstr "" -#: actions/usergroups.php:158 +#: lib/groupnav.php:119 #, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgid "Add or edit %s design" msgstr "" -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" msgstr "" -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" msgstr "" -#: classes/File.php:145 classes/File.php:154 +#: lib/grouptagcloudsection.php:56 #, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." +msgid "Tags in %s group's notices" msgstr "" -#: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy -msgid "Problem saving notice. Too long." -msgstr "儲存使用者發生錯誤" +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" -#: classes/User.php:319 classes/User.php:327 classes/User.php:334 -#: classes/User.php:333 +#: lib/imagefile.php:75 #, php-format -msgid "Welcome to %1$s, @%2$s!" +msgid "That file is too big. The maximum file size is %s." msgstr "" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" +#: lib/imagefile.php:80 +msgid "Partial upload." msgstr "" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy -msgid "Design your profile" -msgstr "無此通知" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." msgstr "" -#: lib/attachmentlist.php:87 -msgid "Attachments" +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." msgstr "" -#: lib/attachmentlist.php:265 -msgid "Author" +#: lib/imagefile.php:105 +msgid "Unsupported image file format." msgstr "" -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "無此通知" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" msgstr "" -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "新訊息" -#: lib/designsettings.php:101 -msgid "Change background image" +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "登入" + +#: lib/leaveform.php:114 +msgid "Leave" msgstr "" -#: lib/designsettings.php:105 +#: lib/logingroupnav.php:80 #, fuzzy -msgid "Upload file" -msgstr "無此通知" +msgid "Login with a username and password" +msgstr "使用者名稱或密碼無效" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" +#: lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "新增帳號" -#: lib/designsettings.php:139 -msgid "On" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/designsettings.php:155 -msgid "Off" +#: lib/mailbox.php:139 +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/designsettings.php:156 -msgid "Turn background image on or off." +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" msgstr "" -#: lib/designsettings.php:161 -msgid "Tile background image" +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "確認信箱" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" msgstr "" -#: lib/designsettings.php:170 -#, fuzzy -msgid "Change colours" -msgstr "更改密碼" +#: lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/designsettings.php:178 -msgid "Background" +#: lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" msgstr "" +"現在%1$s在%2$s成為你的粉絲囉。\n" +"\n" +"\t%3$s\n" +"\n" +"\n" +"%4$s.\n" +"敬上。\n" -#: lib/designsettings.php:191 -#, fuzzy -msgid "Content" -msgstr "連結" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "" +#: lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "地點" -#: lib/designsettings.php:230 -#, fuzzy -msgid "Links" -msgstr "登入" +#: lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "個人首頁" -#: lib/designsettings.php:247 -msgid "Use defaults" +#: lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" msgstr "" -#: lib/designsettings.php:248 -msgid "Restore default designs" +#: lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" msgstr "" -#: lib/designsettings.php:254 -msgid "Reset back to default" +#: lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" msgstr "" -#: lib/designsettings.php:257 -msgid "Save design" +#: lib/mail.php:412 +#, php-format +msgid "%s status" msgstr "" -#: lib/designsettings.php:378 lib/designsettings.php:369 -#: lib/designsettings.php:372 -msgid "Bad default color settings: " +#: lib/mail.php:438 +msgid "SMS confirmation" msgstr "" -#: lib/designsettings.php:474 lib/designsettings.php:465 -#: lib/designsettings.php:468 -msgid "Design defaults restored." +#: lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" msgstr "" -#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#: lib/mail.php:466 #, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" msgstr "" -#: lib/groupnav.php:100 -#, fuzzy -msgid "Blocked" -msgstr "無此使用者" - -#: lib/groupnav.php:101 -#, fuzzy, php-format -msgid "%s blocked users" -msgstr "無此使用者" +#: lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" -#: lib/groupnav.php:119 +#: lib/mail.php:513 #, php-format -msgid "Add or edit %s design" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Do not reply to this email. It will not get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" msgstr "" +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "現在%1$s在%2$s成為你的粉絲囉" + #: lib/mail.php:556 #, php-format msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" "The URL of your notice is:\n" "\n" @@ -6862,627 +4127,440 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:646 +#: lib/mail.php:611 #, php-format -msgid "Your Twitter bridge has been disabled." +msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:648 +#: lib/mail.php:613 #, php-format msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" +"The notice is here:\n" "\n" -"\t%2$s\n" +"\t%3$s\n" "\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %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 %1$s " -"Facebook application.\n" +"It reads:\n" "\n" -"Regards,\n" +"\t%4$s\n" "\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -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/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" msgstr "" -#: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy -msgid "in context" -msgstr "無內容" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "個人首頁位址錯誤" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." msgstr "" -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy -msgid "No such page" -msgstr "無此通知" - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." msgstr "" -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." msgstr "" -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy -msgid "Could not unfollow user: User not found." -msgstr "無法連結到伺服器:%s" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." msgstr "" -#: actions/apigroupcreate.php:261 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "自我介紹過長(共140個字元)" - -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." msgstr "" -#: actions/apigroupjoin.php:138 -#, fuzzy, php-format -msgid "Could not join user %s to group %s." -msgstr "無法連結到伺服器:%s" - -#: actions/apigroupleave.php:114 -#, fuzzy -msgid "You are not a member of this group." -msgstr "無法連結到伺服器:%s" - -#: actions/apigroupleave.php:124 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s." -msgstr "無法從 %s 建立OpenID" - -#: actions/apigrouplist.php:95 -#, fuzzy, php-format -msgid "%s's groups" -msgstr "無此通知" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" msgstr "" -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." msgstr "" -#: actions/apistatusesshow.php:138 +#: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy -msgid "Status deleted." -msgstr "更新個人圖像" - -#: actions/apistatusesupdate.php:132 -#: actions/apiaccountupdateprofileimage.php:99 -msgid "Unable to handle that much POST data!" -msgstr "" +msgid "Could not determine file's mime-type!" +msgstr "無法更新使用者" -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152 +#: lib/mediafile.php:270 #, php-format -msgid "That's too long. Max notice size is %d chars." +msgid " Try using another %s format." msgstr "" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#: actions/apistatusesupdate.php:216 +#: lib/mediafile.php:275 #, php-format -msgid "Max notice size is %d chars, including attachment URL." +msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" -#: actions/bookmarklet.php:50 -msgid "Post to " +#: lib/messageform.php:146 +msgid "To" msgstr "" -#: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format -msgid "description is too long (max %d chars)." -msgstr "自我介紹過長(共140個字元)" +#: lib/messageform.php:162 lib/noticeform.php:173 +#, fuzzy +msgid "Available characters" +msgstr "6個以上字元" -#: actions/favoritesrss.php:115 -#, fuzzy, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "&s的微型部落格" +#: lib/noticeform.php:145 +#, fuzzy +msgid "Send a notice" +msgstr "新訊息" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" msgstr "" -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." +#: lib/noticeform.php:180 +msgid "Attach" msgstr "" -#: actions/finishremotesubscribe.php:109 -#, fuzzy -msgid "Could not convert request token to access token." -msgstr "無法轉換請求標記以致無法存取標記" - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." +#: lib/noticeform.php:184 +msgid "Attach a file" msgstr "" -#: actions/getfile.php:75 +#: lib/noticelist.php:478 #, fuzzy -msgid "No such file." -msgstr "無此通知" +msgid "in context" +msgstr "無內容" -#: actions/getfile.php:79 -#, fuzzy -msgid "Cannot read file." -msgstr "無此通知" +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" -#: actions/grouprss.php:133 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "&s的微型部落格" +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "" -#: actions/imsettings.php:89 -#, fuzzy -msgid "IM is not available." -msgstr "個人首頁位址錯誤" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" -#: actions/login.php:259 actions/login.php:286 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." +#: lib/nudgeform.php:128 +msgid "Nudge" msgstr "" -#: actions/noticesearchrss.php:89 -#, fuzzy, php-format -msgid "Updates with \"%s\"" -msgstr "&s的微型部落格" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" -#: actions/noticesearchrss.php:91 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "所有符合 \"%s\"的更新" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "新的更人資料輸入錯誤" -#: actions/oembed.php:157 +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "個人圖像插入錯誤" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" + +#: lib/oauthstore.php:345 #, fuzzy -msgid "content type " -msgstr "連結" +msgid "Duplicate notice" +msgstr "新訊息" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "無法新增訂閱" -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +#: lib/personalgroupnav.php:99 +msgid "Personal" msgstr "" -#: actions/profilesettings.php:122 actions/register.php:454 -#: actions/register.php:460 -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "請在140個字以內描述你自己與你的興趣" +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" -#: actions/profilesettings.php:125 actions/register.php:457 -#: actions/register.php:463 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "請在140個字以內描述你自己與你的興趣" +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" -#: actions/profilesettings.php:221 actions/register.php:217 -#: actions/register.php:223 -#, fuzzy, php-format -msgid "Bio is too long (max %d chars)." -msgstr "自我介紹過長(共140個字元)" +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" -#: actions/register.php:336 actions/register.php:342 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +#: lib/personalgroupnav.php:124 +msgid "Inbox" msgstr "" -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" msgstr "" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." +#: lib/personalgroupnav.php:129 +msgid "Outbox" msgstr "" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "無法取得轉換標記" +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" -#: actions/replies.php:144 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "發送給%s好友的訂閱" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" -#: actions/replies.php:151 -#, fuzzy, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "發送給%s好友的訂閱" +#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "" -#: actions/replies.php:158 -#, fuzzy, php-format -msgid "Replies feed for %s (Atom)" -msgstr "發送給%s好友的訂閱" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "所有訂閱" -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "&s的微型部落格" +#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "" -#: actions/showfavorites.php:170 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "發送給%s好友的訂閱" +#: lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "所有訂閱" -#: actions/showfavorites.php:177 -#, fuzzy, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "發送給%s好友的訂閱" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" -#: actions/showfavorites.php:184 -#, fuzzy, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "發送給%s好友的訂閱" +#: lib/profileaction.php:182 +msgid "Member since" +msgstr "何時加入會員的呢?" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" +#: lib/profileaction.php:235 +msgid "All groups" msgstr "" -#: actions/showgroup.php:345 -#, fuzzy, php-format -msgid "FOAF for %s group" -msgstr "無此通知" +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "" -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "更新個人圖像" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" -#: actions/smssettings.php:91 -#, fuzzy -msgid "SMS is not available." -msgstr "個人首頁位址錯誤" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" -#: actions/tag.php:92 -#, fuzzy, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "發送給%s好友的訂閱" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +#: lib/publicgroupnav.php:92 +msgid "Popular" msgstr "" -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." +#: lib/searchaction.php:120 +msgid "Search site" msgstr "" -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" +#: lib/searchaction.php:162 +msgid "Search help" msgstr "" -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." +#: lib/searchgroupnav.php:80 +msgid "People" msgstr "" -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" msgstr "" -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." +#: lib/searchgroupnav.php:82 +#, fuzzy +msgid "Notice" +msgstr "新訊息" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" msgstr "" -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" msgstr "" -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." +#: lib/section.php:89 +msgid "Untitled section" msgstr "" -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." +#: lib/section.php:106 +msgid "More..." msgstr "" -#: actions/userauthorization.php:343 +#: lib/subgroupnav.php:83 #, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "無法讀取此%sURL的圖像" +msgid "People %s subscribes to" +msgstr "無此訂閱" -#: actions/userauthorization.php:348 +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "此帳號已註冊" + +#: lib/subgroupnav.php:99 #, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Groups %s is a member of" msgstr "" -#: lib/action.php:435 -#, fuzzy -msgid "Connect to services" -msgstr "無法連結到伺服器:%s" - -#: lib/action.php:785 -#, fuzzy -msgid "Site content license" -msgstr "新訊息" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" -#: lib/command.php:88 -#, php-format -msgid "Could not find a user with nickname %s" -msgstr "無法更新使用者" +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" +#: lib/subscriptionlist.php:126 +msgid "(none)" msgstr "" -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" +#: lib/subs.php:48 +msgid "Already subscribed!" msgstr "" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" +#: lib/subs.php:52 +msgid "User has blocked you." msgstr "" -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#: lib/subs.php:56 +msgid "Could not subscribe." msgstr "" -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" +#: lib/subs.php:75 +msgid "Could not subscribe other to you." msgstr "" -#: lib/command.php:439 -#, php-format -msgid "Reply to %s sent" +#: lib/subs.php:124 +msgid "Not subscribed!." msgstr "" -#: lib/command.php:441 -msgid "Error saving notice." -msgstr "儲存使用者發生錯誤" +#: lib/subs.php:136 +msgid "Couldn't delete subscription." +msgstr "無法刪除帳號" -#: lib/common.php:191 -#, fuzzy -msgid "No configuration file found. " -msgstr "無確認碼" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " +#: lib/topposterssection.php:74 +msgid "Top posters" msgstr "" -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" msgstr "" -#: lib/common.php:194 -msgid "Go to the installer." +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" msgstr "" -#: lib/galleryaction.php:139 -msgid "Select tag to filter" +#: lib/userprofile.php:116 +#, fuzzy +msgid "Edit Avatar" +msgstr "個人圖像" + +#: lib/userprofile.php:236 +msgid "User actions" msgstr "" -#: lib/groupeditform.php:168 +#: lib/userprofile.php:248 #, fuzzy -msgid "Describe the group or topic" -msgstr "請在140個字以內描述你自己與你的興趣" +msgid "Edit profile settings" +msgstr "線上即時通設定" -#: lib/groupeditform.php:170 -#, fuzzy, php-format -msgid "Describe the group or topic in %d characters" -msgstr "請在140個字以內描述你自己與你的興趣" +#: lib/userprofile.php:249 +msgid "Edit" +msgstr "" -#: lib/jabber.php:192 -#, fuzzy, php-format -msgid "notice id: %s" -msgstr "新訊息" +#: lib/userprofile.php:272 +msgid "Send a direct message to this user" +msgstr "" -#: lib/mail.php:554 -#, fuzzy, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "現在%1$s在%2$s成為你的粉絲囉" +#: lib/userprofile.php:273 +msgid "Message" +msgstr "" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" +#: lib/util.php:844 +msgid "a few seconds ago" msgstr "" -#: lib/mail.php:611 +#: lib/util.php:846 +msgid "about a minute ago" +msgstr "" + +#: lib/util.php:848 #, php-format -msgid "%s (@%s) sent a notice to your attention" +msgid "about %d minutes ago" msgstr "" -#: lib/mail.php:613 +#: lib/util.php:850 +msgid "about an hour ago" +msgstr "" + +#: lib/util.php:852 #, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" +msgid "about %d hours ago" msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" +#: lib/util.php:854 +msgid "about a day ago" msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" +#: lib/util.php:856 +#, php-format +msgid "about %d days ago" msgstr "" -#: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy -msgid "Could not determine file's mime-type!" -msgstr "無法更新使用者" +#: lib/util.php:858 +msgid "about a month ago" +msgstr "" -#: lib/oauthstore.php:345 -#, fuzzy -msgid "Duplicate notice" -msgstr "新訊息" +#: lib/util.php:860 +#, php-format +msgid "about %d months ago" +msgstr "" -#: actions/login.php:110 actions/login.php:120 -msgid "Invalid or expired token." +#: lib/util.php:862 +msgid "about a year ago" msgstr "" -#: lib/command.php:597 +#: lib/webcolor.php:82 #, fuzzy, php-format -msgid "Could not create login token for %s" -msgstr "無法從 %s 建立OpenID" +msgid "%s is not a valid color!" +msgstr "個人首頁位址錯誤" -#: lib/command.php:602 +#: lib/webcolor.php:123 #, php-format -msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %s." +#: scripts/maildaemon.php:48 +msgid "Could not parse message." msgstr "" -#: lib/command.php:613 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#: scripts/maildaemon.php:53 +msgid "Not a registered user." +msgstr "" + +#: scripts/maildaemon.php:57 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: scripts/maildaemon.php:61 +msgid "Sorry, no incoming email allowed." msgstr "" -- cgit v1.2.3-54-g00ecf From 2a0a363e1d846334bc37d46b5f6f42e64a5a96eb Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sun, 8 Nov 2009 23:06:25 +0000 Subject: Updated Realtime plugin to use the util's NoticeReply object --- plugins/Realtime/realtimeupdate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index e82b4dbfb..ca6ea891a 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -76,7 +76,7 @@ RealtimeUpdate = { $("#notices_primary .notices").prepend(noticeItem); $("#notices_primary .notice:first").css({display:"none"}); $("#notices_primary .notice:first").fadeIn(1000); - NoticeReply(); + SN.U.NoticeReply(); RealtimeUpdate._updatecounter += 1; document.title = '('+RealtimeUpdate._updatecounter+') ' + DT; -- cgit v1.2.3-54-g00ecf From f086dddf43a8e1593a615e77c2fdd605623acf49 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 8 Nov 2009 21:18:57 -0500 Subject: add a method to Theme class to list available themes --- lib/theme.php | 49 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/lib/theme.php b/lib/theme.php index e5fad2316..020ce1ac4 100644 --- a/lib/theme.php +++ b/lib/theme.php @@ -70,7 +70,7 @@ class Theme // Check to see if it's in the local dir - $localroot = Theme::localRoot(); + $localroot = self::localRoot(); $fulldir = $localroot.'/'.$name; @@ -82,7 +82,7 @@ class Theme // Check to see if it's in the distribution dir - $instroot = Theme::installRoot(); + $instroot = self::installRoot(); $fulldir = $instroot.'/'.$name; @@ -172,6 +172,51 @@ class Theme return $theme->getPath($relative); } + /** + * list available theme names + * + * @return array list of available theme names + */ + + static function listAvailable() + { + $local = self::subdirsOf(self::localRoot()); + $install = self::subdirsOf(self::installRoot()); + + $i = array_search('base', $install); + + unset($install[$i]); + + return array_merge($local, $install); + } + + /** + * Utility for getting subdirs of a directory + * + * @param string $dir full path to directory to check + * + * @return array relative filenames of subdirs, or empty array + */ + + protected static function subdirsOf($dir) + { + $subdirs = array(); + + if (is_dir($dir)) { + if ($dh = opendir($dir)) { + while (($filename = readdir($dh)) !== false) { + if ($filename != '..' && $filename !== '.' && + is_dir($dir.'/'.$filename)) { + $subdirs[] = $filename; + } + } + closedir($dh); + } + } + + return $subdirs; + } + /** * Local root dir for themes * -- cgit v1.2.3-54-g00ecf From ff81384ee35347b52360ef17e3537bd741a20568 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 9 Nov 2009 11:10:24 +0000 Subject: Fixed notice option alignment in IE --- theme/base/css/ie.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/theme/base/css/ie.css b/theme/base/css/ie.css index 84bc1b1d6..4e50aadbe 100644 --- a/theme/base/css/ie.css +++ b/theme/base/css/ie.css @@ -27,11 +27,8 @@ padding:0 4px; } .notice-options input.submit { font-size:0; -margin-top:3px; -height:16px; text-align:right; text-indent:0; -width:24px; } .notice div.entry-content .timestamp a { margin-right:4px; -- cgit v1.2.3-54-g00ecf From 2577c85a38f94612f29183b6a0a36f14d1c1f07d Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 9 Nov 2009 11:11:06 +0000 Subject: Added flag icon for UserFlag plugin --- plugins/UserFlag/flag.gif | Bin 0 -> 80 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 plugins/UserFlag/flag.gif diff --git a/plugins/UserFlag/flag.gif b/plugins/UserFlag/flag.gif new file mode 100644 index 000000000..68c8aee25 Binary files /dev/null and b/plugins/UserFlag/flag.gif differ -- cgit v1.2.3-54-g00ecf From 22310d17a4886d5382832caee43da0bcf7914419 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 9 Nov 2009 13:45:10 -0500 Subject: shorten flag notification and include a class --- plugins/UserFlag/UserFlagPlugin.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/UserFlag/UserFlagPlugin.php b/plugins/UserFlag/UserFlagPlugin.php index 2376bb859..fe4a74869 100644 --- a/plugins/UserFlag/UserFlagPlugin.php +++ b/plugins/UserFlag/UserFlagPlugin.php @@ -102,8 +102,7 @@ class UserFlagPlugin extends Plugin $action->elementStart('li', 'entity_flag'); if (User_flag_profile::exists($profile->id, $user->id)) { - $action->element('p', array(), - _('Flagged for review')); + $action->element('p', 'flagged', _('Flagged')); } else { $form = new FlagProfileForm($action, $profile, array('action' => 'showstream', -- cgit v1.2.3-54-g00ecf From 3be120571446880cb71a57845204b3213e6df67e Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Mon, 9 Nov 2009 17:43:37 -0500 Subject: Add a new event: CanUserChangeField --- EVENTS.txt | 4 ++++ actions/passwordsettings.php | 14 ++++++++++++++ lib/accountsettingsaction.php | 35 ++++++++++++++++++++--------------- plugins/Ldap/LdapPlugin.php | 11 +++++++++++ 4 files changed, 49 insertions(+), 15 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index 25a51516b..c3fe73134 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -489,6 +489,10 @@ ChangePassword: Handle a password change request - $newpassword: the desired new password - &$errormsg: set this to an error message if the password could not be changed. If the password was changed, leave this as false +CanUserChangeField: Determines if a user is allowed to change a specific profile field +- $nickname: nickname of the user who would like to know which of their profile fields are mutable +- $field: name of the field the user wants to change (nickname, fullname, password, avatar, etc) + UserDeleteRelated: Specify additional tables to delete entries from when deleting users - $user: User object - &$related: array of DB_DataObject class names to delete entries on matching user_id. diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php index 6658d279f..15539d4a0 100644 --- a/actions/passwordsettings.php +++ b/actions/passwordsettings.php @@ -58,6 +58,19 @@ class PasswordsettingsAction extends AccountSettingsAction return _('Change password'); } + function prepare($args){ + parent::prepare($args); + + $user = common_current_user(); + + Event::handle('CanUserChangeField', array($user->nickname, 'password')); + + if(! $fields['password']){ + //user is not allowed to change his password + $this->clientError(_('You are not allowed to change your password')); + } + } + /** * Instructions for use * @@ -86,6 +99,7 @@ class PasswordsettingsAction extends AccountSettingsAction function showContent() { $user = common_current_user(); + $this->elementStart('form', array('method' => 'POST', 'id' => 'form_password', 'class' => 'form_settings', diff --git a/lib/accountsettingsaction.php b/lib/accountsettingsaction.php index a004a3ed9..9865e1748 100644 --- a/lib/accountsettingsaction.php +++ b/lib/accountsettingsaction.php @@ -102,26 +102,31 @@ class AccountSettingsNav extends Widget $this->action->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartAccountSettingsNav', array(&$this->action))) { + $user = common_current_user(); - $menu = - array('profilesettings' => + $menu = array(); + $menu['profilesettings'] = array(_('Profile'), - _('Change your profile settings')), - 'avatarsettings' => - array(_('Avatar'), - _('Upload an avatar')), - 'passwordsettings' => - array(_('Password'), - _('Change your password')), - 'emailsettings' => + _('Change your profile settings')); + if(Event::handle('CanUserChangeField', array($user->nickname, 'avatar'))){ + $menu['avatarsettings'] = + array(_('Avatar'), + _('Upload an avatar')); + } + if(Event::handle('CanUserChangeField', array($user->nickname, 'password'))){ + $menu['passwordsettings'] = + array(_('Password'), + _('Change your password')); + } + $menu['emailsettings'] = array(_('Email'), - _('Change email handling')), - 'userdesignsettings' => + _('Change email handling')); + $menu['userdesignsettings'] = array(_('Design'), - _('Design your profile')), - 'othersettings' => + _('Design your profile')); + $menu['othersettings'] = array(_('Other'), - _('Other options'))); + _('Other options')); foreach ($menu as $menuaction => $menudesc) { $this->action->menuItem(common_local_url($menuaction), diff --git a/plugins/Ldap/LdapPlugin.php b/plugins/Ldap/LdapPlugin.php index 755562f54..3795ffd7f 100644 --- a/plugins/Ldap/LdapPlugin.php +++ b/plugins/Ldap/LdapPlugin.php @@ -102,4 +102,15 @@ class LdapPlugin extends Plugin //return false, indicating that the event has been handled return false; } + + function onCanUserChangeField($nickname, $field) + { + switch($field) + { + case 'password': + case 'nickname': + case 'email': + return false; + } + } } -- cgit v1.2.3-54-g00ecf From 223fee2ad1430e827830265c9fe97f4d025bb060 Mon Sep 17 00:00:00 2001 From: Brenda Wallace Date: Tue, 10 Nov 2009 15:53:07 +1300 Subject: just sent a http 200 for the check-fancy from install.php --- lib/common.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/common.php b/lib/common.php index 6aac46807..c473d9cdb 100644 --- a/lib/common.php +++ b/lib/common.php @@ -38,6 +38,8 @@ define('FOREIGN_NOTICE_SEND_REPLY', 4); define('FOREIGN_FRIEND_SEND', 1); define('FOREIGN_FRIEND_RECV', 2); +if ( $_REQUEST['p'] == 'check-fancy') { exit; } //exit with 200 response, if this is checking fancy from the installer + define_syslog_variables(); # append our extlib dir as the last-resort place to find libs -- cgit v1.2.3-54-g00ecf